text stringlengths 9 39.2M | dir stringlengths 26 295 | lang stringclasses 185
values | created_date timestamp[us] | updated_date timestamp[us] | repo_name stringlengths 1 97 | repo_full_name stringlengths 7 106 | star int64 1k 183k | len_tokens int64 1 13.8M |
|---|---|---|---|---|---|---|---|---|
```xml
<?xml version="1.0" encoding="UTF-8"?>
<!--
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
path_to_url
Unless required by applicable law or agreed to in writing,
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
specific language governing permissions and limitations
-->
<!DOCTYPE concept PUBLIC "-//OASIS//DTD DITA Concept//EN" "concept.dtd">
<concept rev="4.0 IMPALA-10091" id="refresh_updated_hms">
<title>REFRESH_UPDATED_HMS_PARTITIONS Query Option</title>
<titlealts audience="PDF">
<navtitle>REFRESH UPDATED HMS PARTITIONS</navtitle>
</titlealts>
<prolog>
<metadata>
<data name="Category" value="Impala"/>
<data name="Category" value="Impala Query Options"/>
<data name="Category" value="Querying"/>
<data name="Category" value="Developers"/>
<data name="Category" value="Administrators"/>
</metadata>
</prolog>
<conbody>
<p>
As the name implies the query option <codeph>REFRESH_UPDATED_HMS_PARTITIONS</codeph> is used
to refresh any updated HMS partitions.
</p>
<p>This option is disabled by default so that the performance is not compromised when refreshing a
table. However, for certain corner case scenarios refresh table command does not detect changed
partitions. In case of the default refresh, catalogd detects, adds any new partitions and removes
any partitions which are not present in HMS anymore. However, it does not update any partitions
that changed (eg. change of location). When this query option is enabled, the refresh table
command will detect certain changes to the partitions and update them accordingly. Currently,
catalogd will update the partitions if any of the following StorageDescriptor properties have
been modified. 1. Partition Location 2. Partition Fileformat. 3 SerdeInfo. 4. Partition schema
changes. 5. Partition bucketInfo.</p>
<p>
<b>Type:</b><codeph>BOOLEAN</codeph>; recognized values are 1 and 0, or true and false; any other
value will be interpreted as false.
</p>
<p>
<b>Default:</b><codeph>FALSE</codeph> (shown as 0 in output of SET statement).
</p>
<p><b>Added in:</b>
<keyword keyref="impala40"/></p>
</conbody>
</concept>
``` | /content/code_sandbox/docs/topics/impala_refresh_updated_hms.xml | xml | 2016-04-13T07:00:08 | 2024-08-16T10:10:44 | impala | apache/impala | 1,115 | 579 |
```xml
/*
* path_to_url
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
*/
export { ExpressAdapter } from './adapter/ExpressAdapter';
export {
SkillRequestSignatureVerifier,
TimestampVerifier,
Verifier
} from './verifier';
``` | /content/code_sandbox/ask-sdk-express-adapter/lib/index.ts | xml | 2016-06-24T06:26:05 | 2024-08-14T12:39:19 | alexa-skills-kit-sdk-for-nodejs | alexa/alexa-skills-kit-sdk-for-nodejs | 3,118 | 80 |
```xml
/* eslint-disable */
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run json-schema-to-typescript to regenerate this file.
*/
/**
* Measures update saml info successes and failures
*/
export interface WebCoreSSOSamlUpdateInfoTotal {
Value: number;
Labels: {
status: "success" | "failure" | "4xx" | "5xx";
};
}
``` | /content/code_sandbox/packages/metrics/types/web_core_sso_saml_update_info_total_v1.schema.d.ts | xml | 2016-06-08T11:16:51 | 2024-08-16T14:14:27 | WebClients | ProtonMail/WebClients | 4,300 | 105 |
```xml
interface WasmApi {
instance: {
exports: {
b64_output: {
value: number;
};
solve: () => number;
memory: {
buffer: Uint8Array;
};
};
};
}
self.onmessage = async function (event) {
const { b64Source } = event.data;
const decodeBase64 = (base64: string) => {
return atob(base64);
};
const decodeWasmBinary = (base64: string) => {
const text = decodeBase64(base64);
const binary = new Uint8Array(new ArrayBuffer(text.length));
for (let i = 0; i < text.length; i++) {
binary[i] = text.charCodeAt(i);
}
return binary;
};
const loadWasmModule = async (source: string) => {
const wasmBinary = decodeWasmBinary(source);
const result = await WebAssembly.instantiate(wasmBinary);
return result as typeof result & WasmApi;
};
const result = await loadWasmModule(b64Source);
const b64OutputPtr = result.instance.exports.b64_output.value;
const startTime = Date.now();
const b64OutputLen = result.instance.exports.solve();
const endTime = Date.now();
const duration = endTime - startTime;
const b64Output = new Uint8Array(result.instance.exports.memory.buffer, b64OutputPtr, b64OutputLen);
const b64 = new TextDecoder().decode(b64Output);
self.postMessage(b64 + `, ${duration}`);
};
``` | /content/code_sandbox/packages/shared/lib/pow/wasmWorker.ts | xml | 2016-06-08T11:16:51 | 2024-08-16T14:14:27 | WebClients | ProtonMail/WebClients | 4,300 | 333 |
```xml
function testArrayForEach() {
msg("testArrayFoEach");
let strs: string[] = [];
[1, 2, 3].forEach(x => strs.push("X" + x))
let r = "A"
for (let s of strs) {
r += s
}
assert(r == "AX1X2X3", "forEach")
}
testArrayForEach()
``` | /content/code_sandbox/tests/compile-test/lang-test0/241arrayforeach.ts | xml | 2016-01-24T19:35:52 | 2024-08-16T16:39:39 | pxt | microsoft/pxt | 2,069 | 87 |
```xml
/*
* one or more contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright ownership.
*/
const convertToQueryString = (params: Record<string, string>) => {
return new URLSearchParams(params).toString();
};
export {convertToQueryString};
``` | /content/code_sandbox/operate/client/e2e-playwright/utils/convertToQueryString.ts | xml | 2016-03-20T03:38:04 | 2024-08-16T19:59:58 | camunda | camunda/camunda | 3,172 | 59 |
```xml
<!--
~ contributor license agreements. See the NOTICE file distributed with
~ this work for additional information regarding copyright ownership.
~
~ path_to_url
~
~ Unless required by applicable law or agreed to in writing, software
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-->
<dataset>
<metadata>
<column name="host" />
<column name="user" />
<column name="default_role_host" />
<column name="default_role_user" />
</metadata>
</dataset>
``` | /content/code_sandbox/test/e2e/sql/src/test/resources/cases/dql/dataset/empty_storage_units/mysql/select_mysql_mysql_default_roles.xml | xml | 2016-01-18T12:49:26 | 2024-08-16T15:48:11 | shardingsphere | apache/shardingsphere | 19,707 | 122 |
```xml
/*
* This software is released under MIT license.
* The full license information can be found in LICENSE in the root directory of this project.
*/
import { TemplateResult, render } from 'lit';
export function createTestElement(template?: TemplateResult): Promise<HTMLElement> {
const element = document.createElement('div');
document.body.appendChild(element);
if (template) {
render(template, element);
}
return Promise.all(
Array.from(document.querySelectorAll(':not(:defined)')).map(el => customElements.whenDefined(el.tagName))
).then(() => element);
}
export function removeTestElement(element: HTMLElement) {
element.remove();
}
export function getComponentSlotContent(component: HTMLElement): { [name: string]: string } {
return Array.from(component.shadowRoot?.querySelectorAll('slot') as NodeListOf<HTMLSlotElement>).reduce(
(acc: { [name: string]: string }, slot: HTMLSlotElement) => {
const name = slot.name.length > 0 ? slot.name : 'default';
acc[name] = (slot.assignedNodes() as any[]).reduce((p, n) => {
let returnDom = n.outerHTML;
returnDom = n.outerHTML ? n.outerHTML : n.textContent.trim();
return p + (returnDom ? returnDom : '');
}, '');
return acc;
},
{}
);
}
function retry(
fn: any,
maxTries = 10,
promise?: Promise<any>,
promiseObject: { resolve: any; reject: any } = {
resolve: null,
reject: null,
}
) {
maxTries--;
promise =
promise ||
new Promise((resolve, reject) => {
promiseObject.resolve = resolve;
promiseObject.reject = reject;
});
fn()
.then((result: any) => {
promiseObject.resolve(result);
})
.catch(() => {
if (maxTries > 0) {
retry(fn, maxTries, promise, promiseObject);
} else {
promiseObject.reject('Max attempts reached');
}
});
return promise;
}
export function componentIsStable(component: any) {
return retry(
() =>
// eslint-disable-next-line no-async-promise-executor
new Promise(async (resolve, reject) => {
const stable = await component.updateComplete;
if (stable) {
resolve('success');
} else {
reject('error');
}
})
);
}
// Full set of mouse events, generated on click
export function emulatedClick(component: HTMLElement) {
const event1 = new MouseEvent('mousedown');
const event2 = new MouseEvent('mouseup');
const event3 = new MouseEvent('click');
component.dispatchEvent(event1);
component.dispatchEvent(event2);
component.dispatchEvent(event3);
}
/** helpful for capturing a single event in a async test rather than Jasmine `done()` */
export function onceEvent(element: HTMLElement | Document, event: string) {
return new Promise<any>(resolve => {
element.addEventListener(event, e => resolve(e));
});
}
``` | /content/code_sandbox/packages/core/src/test/utils.ts | xml | 2016-09-29T17:24:17 | 2024-08-11T17:06:15 | clarity | vmware-archive/clarity | 6,431 | 651 |
```xml
<page id="richSerp" layout="mainAndRight">
<section layout="row" placement="main">
<section layout="column" description="left main pane">
<section layout="row" max="5" description="Bar of images, from one of two possible sources">
<choice>
<source name="images"/>
<source name="flickr"/>
</choice>
</section>
<section max="1" source="local map video ticker weather" description="A single relevant graphically rich element"/>
<section blending="blend" max="10" source="web news" description="Various kinds of traditional search results"/>
</section>
<section layout="column" blending="group" source="answers blogs twitter" description="right main pane, ugc stuff, grouped by source"/>
</section>
<section layout="column" source="ads" placement="right"/>
</page>
``` | /content/code_sandbox/config-model/src/test/java/com/yahoo/vespa/model/container/search/test/pages/richSerp.xml | xml | 2016-06-03T20:54:20 | 2024-08-16T15:32:01 | vespa | vespa-engine/vespa | 5,524 | 197 |
```xml
/*
* Event's embeddable script
*/
import { generateIntegrationUrl, getStorage, setErxesProperty } from "../../widgetUtils";
// add iframe
const iframe = document.createElement("iframe");
iframe.src = generateIntegrationUrl("events");
iframe.style.display = "none";
document.body.appendChild(iframe);
// after iframe load send connection info
iframe.onload = async () => {
const contentWindow = iframe.contentWindow;
if (!contentWindow) {
return;
}
const sendMessage = (action: string, args: any) => {
contentWindow.postMessage(
{
fromPublisher: true,
action,
storage: getStorage(),
args
},
"*"
);
};
setErxesProperty("identifyCustomer", (args: any) => {
sendMessage("identifyCustomer", args);
});
setErxesProperty("updateCustomerProperties", (data: Array<{ name: string, value: any }>) => {
sendMessage("updateCustomerProperties", data);
});
setErxesProperty("sendEvent", (args: any) => {
sendMessage("sendEvent", args);
});
sendMessage("init", { url: window.location.href });
};
``` | /content/code_sandbox/widgets/client/events/widget/index.ts | xml | 2016-11-11T06:54:50 | 2024-08-16T10:26:06 | erxes | erxes/erxes | 3,479 | 255 |
```xml
<?xml version="1.0" encoding="UTF-8"?>
<feature
id="@FEATURE_ID@"
label="SpotBugs"
version="@FEATURE_VERSION@"
provider-name="SpotBugs Project"
plugin="@PLUGIN_ID@">
<description url="path_to_url">
SpotBugs is a program which uses static analysis to look for bugs in Java code, a spiritual successor of FindBugs.
</description>
<copyright>
(c) 2017, SpotBugs Project
(c) 2006-2011, University of Maryland
</copyright>
<license url="path_to_url">
path_to_url
</license>
<url>
<update label="SpotBugs update site" url="path_to_url"/>
</url>
<requires>
<import plugin="org.eclipse.core.resources"/>
<import plugin="org.eclipse.core.runtime" version="3.12.0" match="greaterOrEqual"/>
<import plugin="org.eclipse.jdt"/>
<import plugin="org.eclipse.jdt.core"/>
<import plugin="org.eclipse.jdt.launching"/>
<import plugin="org.eclipse.jdt.ui"/>
<import plugin="org.eclipse.jface.text"/>
<import plugin="org.eclipse.ui"/>
<import plugin="org.eclipse.ui.editors"/>
<import plugin="org.eclipse.ui.ide"/>
<import plugin="org.eclipse.ui.workbench.texteditor"/>
</requires>
<plugin
id="@PLUGIN_ID@"
download-size="5676"
install-size="5800"
version="@PLUGIN_VERSION@"/>
</feature>
``` | /content/code_sandbox/eclipsePlugin/plugin_feature.xml | xml | 2016-11-04T22:18:08 | 2024-08-15T14:30:47 | spotbugs | spotbugs/spotbugs | 3,428 | 344 |
```xml
import { c, msgid } from 'ttag';
import { useConfirmActionModal, useNotifications } from '@proton/components';
import { VERIFICATION_STATUS } from '@proton/crypto';
import { getIsConnectionIssue } from '@proton/shared/lib/api/helpers/apiErrorHelper';
import { isSafari, textToClipboard } from '@proton/shared/lib/helpers/browser';
import isTruthy from '@proton/utils/isTruthy';
import { sendErrorReport } from '../../utils/errorHandling';
import { ValidationError } from '../../utils/errorHandling/ValidationError';
import useDevicesActions from '../_devices/useDevicesActions';
import { useDownload } from '../_downloads';
import { useLinkActions, useLinksActions } from '../_links';
// import { usePhotos } from '../_photos';
import { useShareActions, useShareUrl } from '../_shares';
import useUploadFile from '../_uploads/UploadProvider/useUploadFile';
import { TransferConflictStrategy } from '../_uploads/interface';
import { useErrorHandler } from '../_utils';
import { LinkInfo } from './interface';
import useListNotifications from './useListNotifications';
/**
* useActions provides actions over links and its results is reported back
* to user using notifications.
*
* {@return {confirmModal}} Only needed for deletePermanently/emptyTrash/stopSharingLinks
*/
export default function useActions() {
const { showErrorNotification } = useErrorHandler();
const [confirmModal, showConfirmModal] = useConfirmActionModal();
const { createNotification } = useNotifications();
const {
createMovedItemsNotifications,
createTrashedItemsNotifications,
createRestoredItemsNotifications,
createDeletedItemsNotifications,
createDeletedSharedLinksNotifications,
} = useListNotifications();
const { checkFirstBlockSignature } = useDownload();
const { initFileUpload } = useUploadFile();
const link = useLinkActions();
const links = useLinksActions();
const shareUrl = useShareUrl();
const shareActions = useShareActions();
const devicesActions = useDevicesActions();
// const { removePhotosFromCache } = usePhotos();
const createFolder = async (
abortSignal: AbortSignal,
shareId: string,
parentLinkId: string,
name: string
): Promise<string> => {
return link
.createFolder(abortSignal, shareId, parentLinkId, name)
.then((id: string) => {
createNotification({
text: <span className="text-pre-wrap">{c('Notification').t`"${name}" created successfully`}</span>,
});
return id;
})
.catch((e) => {
showErrorNotification(
e,
<span className="text-pre-wrap">{c('Notification').t`"${name}" failed to be created`}</span>
);
throw e;
});
};
const createFile = async (shareId: string, parentLinkId: string, name: string) => {
const file = new File([], name, { type: 'text/plain' });
const controls = initFileUpload(
shareId,
parentLinkId,
file,
async () => {
throw new ValidationError(c('Error').t`"${name}" already exists`);
},
// Logging is not useful for single file creation.
() => {}
);
await controls
.start()
.then(() => {
createNotification({
text: <span className="text-pre-wrap">{c('Notification').t`"${name}" created successfully`}</span>,
});
})
.catch((e) => {
showErrorNotification(
e,
<span className="text-pre-wrap">{c('Notification').t`"${name}" failed to be created`}</span>
);
throw e;
});
};
const saveFile = async (
shareId: string,
parentLinkId: string,
name: string,
mimeType: string,
content: Uint8Array[]
) => {
// saveFile is using file upload using name with replace strategy as
// default. That's not the best way - better would be to use link ID
// and also verify revision ID that file was not touched in meantime
// by other client. But this is enough for first version to play with
// the feature and see what all needs to be changed and implemented.
const file = new File(content, name, { type: mimeType });
const controls = initFileUpload(
shareId,
parentLinkId,
file,
async () => TransferConflictStrategy.Replace,
// Logging is not useful for single file updates.
() => {}
);
await controls
.start()
.then(() => {
createNotification({
text: <span className="text-pre-wrap">{c('Notification').t`"${name}" saved successfully`}</span>,
});
})
.catch((e) => {
showErrorNotification(
e,
<span className="text-pre-wrap">{c('Notification').t`"${name}" failed to be saved`}</span>
);
throw e;
});
};
const renameLink = async (abortSignal: AbortSignal, shareId: string, linkId: string, newName: string) => {
// translator: ${newName} is for a folder or file name.
const successNotificationText = c('Notification').t`"${newName}" renamed successfully`;
// translator: ${newName} is for a folder or file name.
const failNotificationText = c('Notification').t`"${newName}" failed to be renamed`;
return link
.renameLink(abortSignal, shareId, linkId, newName)
.then(() => {
createNotification({
text: <span className="text-pre-wrap">{successNotificationText}</span>,
});
})
.catch((e) => {
showErrorNotification(e, <span className="text-pre-wrap">{failNotificationText}</span>);
throw e;
});
};
const checkLinkSignatures = async (abortSignal: AbortSignal, shareId: string, linkId: string) => {
const [metaSignatureIssues, blockSignatureIssue] = await Promise.all([
link.checkLinkMetaSignatures(abortSignal, shareId, linkId),
// To avoid the need to download the whole file we assume that
// either all blocks fail, or none, at least in most cases. So it
// should be enough to check only the first block. During download
// we check every single block, so user is still protected.
checkFirstBlockSignature(abortSignal, shareId, linkId),
]).catch((e) => {
// Only network error can be thrown here to indicate the signature
// couldn't be checked and user should try again. Any other case
// such as a very bad data should be represented as missing
// signature (technically the signature is not there - some other
// malformed data is).
if (getIsConnectionIssue(e)) {
throw e;
}
sendErrorReport(e);
return [
{
passphrase: VERIFICATION_STATUS.NOT_SIGNED,
name: VERIFICATION_STATUS.NOT_SIGNED,
xattrs: VERIFICATION_STATUS.NOT_SIGNED,
},
{
contentKeyPacket: VERIFICATION_STATUS.NOT_SIGNED,
blocks: VERIFICATION_STATUS.NOT_SIGNED,
thumbnail: VERIFICATION_STATUS.NOT_SIGNED,
},
];
});
if (!metaSignatureIssues && !blockSignatureIssue) {
return;
}
return {
...metaSignatureIssues,
...blockSignatureIssue,
};
};
const moveLinks = async (
abortSignal: AbortSignal,
{
shareId,
linksToMove,
newParentLinkId,
newShareId,
}: {
shareId: string;
linksToMove: LinkInfo[];
newParentLinkId: string;
newShareId?: string;
}
) => {
if (!linksToMove.length) {
return;
}
const linkIds = linksToMove.map(({ linkId }) => linkId);
const result = await links.moveLinks(abortSignal, {
shareId,
linkIds,
newParentLinkId,
newShareId,
silence: true,
});
// This is a bit ugly, but the photo linkId cache is not connected
// very well to the rest of our state.
// removePhotosFromCache(result.successes);
const undoAction = async () => {
const linkIdsPerParentId = Object.entries(result.originalParentIds).reduce(
(acc, [linkId, originalParentId]) => {
(acc[originalParentId] ||= []).push(linkId);
return acc;
},
{} as { [parentLinkId: string]: string[] }
);
const undoResult = aggregateResults(
await Promise.all(
Object.entries(linkIdsPerParentId).map(async ([parentLinkId, toMoveBackIds]) => {
return links.moveLinks(abortSignal, {
shareId,
linkIds: toMoveBackIds,
newParentLinkId: parentLinkId,
newShareId,
silence: true,
});
})
)
);
createMovedItemsNotifications(linksToMove, undoResult.successes, undoResult.failures);
};
createMovedItemsNotifications(linksToMove, result.successes, result.failures, undoAction);
};
const trashLinks = async (abortSignal: AbortSignal, linksToTrash: LinkInfo[]) => {
if (!linksToTrash.length) {
return;
}
const result = await links.trashLinks(
abortSignal,
linksToTrash.map(({ linkId, rootShareId, parentLinkId }) => ({
linkId,
shareId: rootShareId,
parentLinkId,
}))
);
// This is a bit ugly, but the photo linkId cache is not connected
// very well to the rest of our state.
// removePhotosFromCache(result.successes);
const undoAction = async () => {
const linksToUndo = result.successes
.map((linkId) => linksToTrash.find((link) => link.linkId === linkId))
.filter(isTruthy)
.map((link) => ({ linkId: link.linkId, shareId: link.rootShareId }));
const undoResult = await links.restoreLinks(abortSignal, linksToUndo);
createRestoredItemsNotifications(linksToTrash, undoResult.successes, undoResult.failures);
};
createTrashedItemsNotifications(linksToTrash, result.successes, result.failures, undoAction);
};
const restoreLinks = async (abortSignal: AbortSignal, linksToRestore: LinkInfo[]) => {
if (!linksToRestore.length) {
return;
}
const result = await links.restoreLinks(
abortSignal,
linksToRestore.map(({ linkId, rootShareId }) => ({ linkId, shareId: rootShareId }))
);
const undoAction = async () => {
const linksToTrash = result.successes
.map((linkId) => linksToRestore.find((link) => link.linkId === linkId))
.filter(isTruthy);
await trashLinks(abortSignal, linksToTrash);
};
createRestoredItemsNotifications(linksToRestore, result.successes, result.failures, undoAction);
};
const deletePermanently = async (abortSignal: AbortSignal, linksToDelete: LinkInfo[]) => {
if (linksToDelete.length === 0) {
return;
}
const itemName = linksToDelete[0].name;
const title = c('Title').t`Delete permanently`;
const confirm = c('Action').t`Delete permanently`;
const message =
linksToDelete.length === 1 && itemName
? c('Info').t`Are you sure you want to permanently delete "${itemName}" from trash?`
: c('Info').t`Are you sure you want to permanently delete selected items from trash?`;
void showConfirmModal({
title,
submitText: confirm,
message,
onSubmit: async () => {
const result = await links.deleteTrashedLinks(
abortSignal,
linksToDelete.map(({ linkId, rootShareId }) => ({ linkId, shareId: rootShareId }))
);
createDeletedItemsNotifications(linksToDelete, result.successes, result.failures);
},
});
};
const emptyTrash = async (abortSignal: AbortSignal) => {
const title = c('Title').t`Empty trash`;
const confirm = c('Action').t`Empty trash`;
const message = c('Info').t`Are you sure you want to empty trash and permanently delete all the items?`;
void showConfirmModal({
title,
submitText: confirm,
message,
onSubmit: async () => {
await links
.emptyTrash(abortSignal)
.then(() => {
const notificationText = c('Notification')
.t`All items will soon be permanently deleted from trash`;
createNotification({ text: notificationText });
})
.catch((err: any) => {
showErrorNotification(err, c('Notification').t`Trash failed to be emptied`);
});
},
});
};
// TODO: This can support multiple links in the future
const stopSharing = (shareId: string) => {
void showConfirmModal({
title: c('Title').t`Stop sharing?`,
submitText: c('Title').t`Stop sharing`,
message: c('Info').t`This action will delete the link and revoke access for all users.`,
onSubmit: () =>
shareActions
.deleteShare(shareId, { force: true })
.then(() => {
createNotification({
text: c('Notification').t`You stopped sharing this item`,
});
})
.catch(() => {
createNotification({
type: 'error',
text: c('Notification').t`Stopping to share this item has failed`,
});
}),
});
};
const stopSharingLinks = (abortSignal: AbortSignal, linksToStopSharing: LinkInfo[]) => {
if (!linksToStopSharing.length) {
return;
}
void showConfirmModal({
title: c('Title').t`Stop sharing`,
submitText: c('Title').t`Stop sharing`,
message: c('Info').ngettext(
msgid`This will delete the link and remove access to your file or folder for anyone with the link.`,
`This will delete the links and remove access to your files or folders for anyone with the links.`,
linksToStopSharing.length
),
onSubmit: async () => {
const result = await shareUrl.deleteShareUrls(
abortSignal,
linksToStopSharing.map(({ linkId, rootShareId }) => ({ linkId, shareId: rootShareId }))
);
createDeletedSharedLinksNotifications(linksToStopSharing, result.successes, result.failures);
},
});
};
// Safari does not allow copy to clipboard outside of the event
// (e.g., click). No await or anything does not do the trick.
// Clipboard API also doesn't work. Therefore we cannot have this
// feature on Safari at this moment.
const copyShareLinkToClipboard = isSafari()
? undefined
: async (abortSignal: AbortSignal, shareId: string, linkId: string) => {
return shareUrl
.loadShareUrlLink(abortSignal, shareId, linkId)
.then((url) => {
if (url) {
textToClipboard(url);
createNotification({
text: c('Info').t`Link copied to clipboard`,
});
}
})
.catch((err: any) => {
showErrorNotification(err, c('Notification').t`Cannot load link`);
});
};
const removeDevice = (deviceId: string, abortSignal: AbortSignal) => {
return devicesActions
.remove(deviceId, abortSignal)
.then(() => {
const notificationText = c('Notification').t`Device removed`;
createNotification({ text: notificationText });
})
.catch((err) => {
showErrorNotification(err, c('Notification').t`Device failed to be removed`);
sendErrorReport(err);
});
};
const renameDevice = async (
params: { shareId: string; linkId: string; deviceId: string; newName: string; haveLegacyName: boolean },
abortSignal?: AbortSignal
) => {
await Promise.all([
await link.renameLink(new AbortController().signal, params.shareId, params.linkId, params.newName),
await devicesActions.rename(params, abortSignal),
])
.then(() => {
const notificationText = c('Notification').t`Device renamed`;
createNotification({ text: notificationText });
})
.catch((err) => {
showErrorNotification(err, c('Notification').t`Device failed to be renamed`);
sendErrorReport(err);
});
};
return {
createFolder,
createFile,
saveFile,
renameLink,
checkLinkSignatures,
moveLinks,
trashLinks,
restoreLinks,
deletePermanently,
emptyTrash,
stopSharing,
stopSharingLinks,
copyShareLinkToClipboard,
removeDevice,
renameDevice,
confirmModal,
};
}
function aggregateResults(results: { successes: string[]; failures: { [linkId: string]: any } }[]) {
return results.reduce(
(acc, val) => {
return {
successes: [...acc.successes, ...val.successes],
failures: { ...acc.failures, ...val.failures },
};
},
{ successes: [], failures: {} }
);
}
``` | /content/code_sandbox/packages/drive-store/store/_actions/useActions.tsx | xml | 2016-06-08T11:16:51 | 2024-08-16T14:14:27 | WebClients | ProtonMail/WebClients | 4,300 | 3,796 |
```xml
import { ElementUIComponent } from './component'
/** Responsive column props */
export interface ResponsiveColumnProperties {
/** Number of column the grid spans */
span: number,
/** Number of spacing on the left side of the grid */
offset: number
}
/** Responsive column property */
export type ResponsiveColumn = number | ResponsiveColumnProperties
/** Colunm Layout Component */
export declare class ElCol extends ElementUIComponent {
/** Number of column the grid spans */
span: number
/** Number of spacing on the left side of the grid */
offset: number
/** Number of columns that grid moves to the right */
push: number
/** Number of columns that grid moves to the left */
pull: number
/** <768px Responsive columns or column props object */
xs: ResponsiveColumn
/** 768px Responsive columns or column props object */
sm: ResponsiveColumn
/** 992px Responsive columns or column props object */
md: ResponsiveColumn
/** 1200px Responsive columns or column props object */
lg: ResponsiveColumn
/** 1920px Responsive columns or column props object */
xl: ResponsiveColumn
/** custom element tag */
tag: string
}
``` | /content/code_sandbox/types/col.d.ts | xml | 2016-09-03T06:19:26 | 2024-08-16T02:26:18 | element | ElemeFE/element | 54,066 | 258 |
```xml
/// <reference types="react" />
import { ParamListBase, StackNavigationState } from '@react-navigation/native';
import { NativeStackNavigationEventMap, NativeStackNavigationOptions } from '@react-navigation/native-stack';
export declare const Stack: import("react").ForwardRefExoticComponent<Omit<Omit<import("@react-navigation/native").DefaultRouterOptions<string> & {
id?: string | undefined;
children: import("react").ReactNode;
screenListeners?: Partial<{
transitionStart: import("@react-navigation/native").EventListenerCallback<NativeStackNavigationEventMap & import("@react-navigation/native").EventMapCore<StackNavigationState<ParamListBase>>, "transitionStart">;
transitionEnd: import("@react-navigation/native").EventListenerCallback<NativeStackNavigationEventMap & import("@react-navigation/native").EventMapCore<StackNavigationState<ParamListBase>>, "transitionEnd">;
focus: import("@react-navigation/native").EventListenerCallback<NativeStackNavigationEventMap & import("@react-navigation/native").EventMapCore<StackNavigationState<ParamListBase>>, "focus">;
blur: import("@react-navigation/native").EventListenerCallback<NativeStackNavigationEventMap & import("@react-navigation/native").EventMapCore<StackNavigationState<ParamListBase>>, "blur">;
state: import("@react-navigation/native").EventListenerCallback<NativeStackNavigationEventMap & import("@react-navigation/native").EventMapCore<StackNavigationState<ParamListBase>>, "state">;
beforeRemove: import("@react-navigation/native").EventListenerCallback<NativeStackNavigationEventMap & import("@react-navigation/native").EventMapCore<StackNavigationState<ParamListBase>>, "beforeRemove">;
}> | ((props: {
route: import("@react-navigation/native").RouteProp<ParamListBase, string>;
navigation: any;
}) => Partial<{
transitionStart: import("@react-navigation/native").EventListenerCallback<NativeStackNavigationEventMap & import("@react-navigation/native").EventMapCore<StackNavigationState<ParamListBase>>, "transitionStart">;
transitionEnd: import("@react-navigation/native").EventListenerCallback<NativeStackNavigationEventMap & import("@react-navigation/native").EventMapCore<StackNavigationState<ParamListBase>>, "transitionEnd">;
focus: import("@react-navigation/native").EventListenerCallback<NativeStackNavigationEventMap & import("@react-navigation/native").EventMapCore<StackNavigationState<ParamListBase>>, "focus">;
blur: import("@react-navigation/native").EventListenerCallback<NativeStackNavigationEventMap & import("@react-navigation/native").EventMapCore<StackNavigationState<ParamListBase>>, "blur">;
state: import("@react-navigation/native").EventListenerCallback<NativeStackNavigationEventMap & import("@react-navigation/native").EventMapCore<StackNavigationState<ParamListBase>>, "state">;
beforeRemove: import("@react-navigation/native").EventListenerCallback<NativeStackNavigationEventMap & import("@react-navigation/native").EventMapCore<StackNavigationState<ParamListBase>>, "beforeRemove">;
}>) | undefined;
screenOptions?: NativeStackNavigationOptions | ((props: {
route: import("@react-navigation/native").RouteProp<ParamListBase, string>;
navigation: any;
}) => NativeStackNavigationOptions) | undefined;
} & import("@react-navigation/native").StackRouterOptions, "initialRouteName" | "children" | "id" | "screenListeners" | "screenOptions"> & import("@react-navigation/native").DefaultRouterOptions<string> & {
id?: string | undefined;
children: import("react").ReactNode;
screenListeners?: Partial<{
transitionStart: import("@react-navigation/native").EventListenerCallback<NativeStackNavigationEventMap & import("@react-navigation/native").EventMapCore<StackNavigationState<ParamListBase>>, "transitionStart">;
transitionEnd: import("@react-navigation/native").EventListenerCallback<NativeStackNavigationEventMap & import("@react-navigation/native").EventMapCore<StackNavigationState<ParamListBase>>, "transitionEnd">;
focus: import("@react-navigation/native").EventListenerCallback<NativeStackNavigationEventMap & import("@react-navigation/native").EventMapCore<StackNavigationState<ParamListBase>>, "focus">;
blur: import("@react-navigation/native").EventListenerCallback<NativeStackNavigationEventMap & import("@react-navigation/native").EventMapCore<StackNavigationState<ParamListBase>>, "blur">;
state: import("@react-navigation/native").EventListenerCallback<NativeStackNavigationEventMap & import("@react-navigation/native").EventMapCore<StackNavigationState<ParamListBase>>, "state">;
beforeRemove: import("@react-navigation/native").EventListenerCallback<NativeStackNavigationEventMap & import("@react-navigation/native").EventMapCore<StackNavigationState<ParamListBase>>, "beforeRemove">;
}> | ((props: {
route: import("@react-navigation/native").RouteProp<ParamListBase, string>;
navigation: any;
}) => Partial<{
transitionStart: import("@react-navigation/native").EventListenerCallback<NativeStackNavigationEventMap & import("@react-navigation/native").EventMapCore<StackNavigationState<ParamListBase>>, "transitionStart">;
transitionEnd: import("@react-navigation/native").EventListenerCallback<NativeStackNavigationEventMap & import("@react-navigation/native").EventMapCore<StackNavigationState<ParamListBase>>, "transitionEnd">;
focus: import("@react-navigation/native").EventListenerCallback<NativeStackNavigationEventMap & import("@react-navigation/native").EventMapCore<StackNavigationState<ParamListBase>>, "focus">;
blur: import("@react-navigation/native").EventListenerCallback<NativeStackNavigationEventMap & import("@react-navigation/native").EventMapCore<StackNavigationState<ParamListBase>>, "blur">;
state: import("@react-navigation/native").EventListenerCallback<NativeStackNavigationEventMap & import("@react-navigation/native").EventMapCore<StackNavigationState<ParamListBase>>, "state">;
beforeRemove: import("@react-navigation/native").EventListenerCallback<NativeStackNavigationEventMap & import("@react-navigation/native").EventMapCore<StackNavigationState<ParamListBase>>, "beforeRemove">;
}>) | undefined;
screenOptions?: NativeStackNavigationOptions | ((props: {
route: import("@react-navigation/native").RouteProp<ParamListBase, string>;
navigation: any;
}) => NativeStackNavigationOptions) | undefined;
}, "children"> & Partial<Pick<Omit<import("@react-navigation/native").DefaultRouterOptions<string> & {
id?: string | undefined;
children: import("react").ReactNode;
screenListeners?: Partial<{
transitionStart: import("@react-navigation/native").EventListenerCallback<NativeStackNavigationEventMap & import("@react-navigation/native").EventMapCore<StackNavigationState<ParamListBase>>, "transitionStart">;
transitionEnd: import("@react-navigation/native").EventListenerCallback<NativeStackNavigationEventMap & import("@react-navigation/native").EventMapCore<StackNavigationState<ParamListBase>>, "transitionEnd">;
focus: import("@react-navigation/native").EventListenerCallback<NativeStackNavigationEventMap & import("@react-navigation/native").EventMapCore<StackNavigationState<ParamListBase>>, "focus">;
blur: import("@react-navigation/native").EventListenerCallback<NativeStackNavigationEventMap & import("@react-navigation/native").EventMapCore<StackNavigationState<ParamListBase>>, "blur">;
state: import("@react-navigation/native").EventListenerCallback<NativeStackNavigationEventMap & import("@react-navigation/native").EventMapCore<StackNavigationState<ParamListBase>>, "state">;
beforeRemove: import("@react-navigation/native").EventListenerCallback<NativeStackNavigationEventMap & import("@react-navigation/native").EventMapCore<StackNavigationState<ParamListBase>>, "beforeRemove">;
}> | ((props: {
route: import("@react-navigation/native").RouteProp<ParamListBase, string>;
navigation: any;
}) => Partial<{
transitionStart: import("@react-navigation/native").EventListenerCallback<NativeStackNavigationEventMap & import("@react-navigation/native").EventMapCore<StackNavigationState<ParamListBase>>, "transitionStart">;
transitionEnd: import("@react-navigation/native").EventListenerCallback<NativeStackNavigationEventMap & import("@react-navigation/native").EventMapCore<StackNavigationState<ParamListBase>>, "transitionEnd">;
focus: import("@react-navigation/native").EventListenerCallback<NativeStackNavigationEventMap & import("@react-navigation/native").EventMapCore<StackNavigationState<ParamListBase>>, "focus">;
blur: import("@react-navigation/native").EventListenerCallback<NativeStackNavigationEventMap & import("@react-navigation/native").EventMapCore<StackNavigationState<ParamListBase>>, "blur">;
state: import("@react-navigation/native").EventListenerCallback<NativeStackNavigationEventMap & import("@react-navigation/native").EventMapCore<StackNavigationState<ParamListBase>>, "state">;
beforeRemove: import("@react-navigation/native").EventListenerCallback<NativeStackNavigationEventMap & import("@react-navigation/native").EventMapCore<StackNavigationState<ParamListBase>>, "beforeRemove">;
}>) | undefined;
screenOptions?: NativeStackNavigationOptions | ((props: {
route: import("@react-navigation/native").RouteProp<ParamListBase, string>;
navigation: any;
}) => NativeStackNavigationOptions) | undefined;
} & import("@react-navigation/native").StackRouterOptions, "initialRouteName" | "children" | "id" | "screenListeners" | "screenOptions"> & import("@react-navigation/native").DefaultRouterOptions<string> & {
id?: string | undefined;
children: import("react").ReactNode;
screenListeners?: Partial<{
transitionStart: import("@react-navigation/native").EventListenerCallback<NativeStackNavigationEventMap & import("@react-navigation/native").EventMapCore<StackNavigationState<ParamListBase>>, "transitionStart">;
transitionEnd: import("@react-navigation/native").EventListenerCallback<NativeStackNavigationEventMap & import("@react-navigation/native").EventMapCore<StackNavigationState<ParamListBase>>, "transitionEnd">;
focus: import("@react-navigation/native").EventListenerCallback<NativeStackNavigationEventMap & import("@react-navigation/native").EventMapCore<StackNavigationState<ParamListBase>>, "focus">;
blur: import("@react-navigation/native").EventListenerCallback<NativeStackNavigationEventMap & import("@react-navigation/native").EventMapCore<StackNavigationState<ParamListBase>>, "blur">;
state: import("@react-navigation/native").EventListenerCallback<NativeStackNavigationEventMap & import("@react-navigation/native").EventMapCore<StackNavigationState<ParamListBase>>, "state">;
beforeRemove: import("@react-navigation/native").EventListenerCallback<NativeStackNavigationEventMap & import("@react-navigation/native").EventMapCore<StackNavigationState<ParamListBase>>, "beforeRemove">;
}> | ((props: {
route: import("@react-navigation/native").RouteProp<ParamListBase, string>;
navigation: any;
}) => Partial<{
transitionStart: import("@react-navigation/native").EventListenerCallback<NativeStackNavigationEventMap & import("@react-navigation/native").EventMapCore<StackNavigationState<ParamListBase>>, "transitionStart">;
transitionEnd: import("@react-navigation/native").EventListenerCallback<NativeStackNavigationEventMap & import("@react-navigation/native").EventMapCore<StackNavigationState<ParamListBase>>, "transitionEnd">;
focus: import("@react-navigation/native").EventListenerCallback<NativeStackNavigationEventMap & import("@react-navigation/native").EventMapCore<StackNavigationState<ParamListBase>>, "focus">;
blur: import("@react-navigation/native").EventListenerCallback<NativeStackNavigationEventMap & import("@react-navigation/native").EventMapCore<StackNavigationState<ParamListBase>>, "blur">;
state: import("@react-navigation/native").EventListenerCallback<NativeStackNavigationEventMap & import("@react-navigation/native").EventMapCore<StackNavigationState<ParamListBase>>, "state">;
beforeRemove: import("@react-navigation/native").EventListenerCallback<NativeStackNavigationEventMap & import("@react-navigation/native").EventMapCore<StackNavigationState<ParamListBase>>, "beforeRemove">;
}>) | undefined;
screenOptions?: NativeStackNavigationOptions | ((props: {
route: import("@react-navigation/native").RouteProp<ParamListBase, string>;
navigation: any;
}) => NativeStackNavigationOptions) | undefined;
}, "children">> & import("react").RefAttributes<unknown>> & {
Screen: (props: import("../useScreens").ScreenProps<NativeStackNavigationOptions, StackNavigationState<ParamListBase>, NativeStackNavigationEventMap>) => null;
};
export default Stack;
//# sourceMappingURL=Stack.d.ts.map
``` | /content/code_sandbox/packages/expo-router/build/layouts/Stack.d.ts | xml | 2016-08-15T17:14:25 | 2024-08-16T19:54:44 | expo | expo/expo | 32,004 | 2,676 |
```xml
<?xml version="1.0" encoding="UTF-8"?>
<!--
path_to_url
Unless required by applicable law or agreed to in writing, software
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-->
<resources xmlns:android="path_to_url"
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="bsp_done_label" msgid="7007948707597430919">" "</string>
<string name="bsp_hour_picker_description" msgid="7586639618712934060">" "</string>
<string name="bsp_minute_picker_description" msgid="6024811202872705251">" "</string>
<string name="bsp_select_hours" msgid="7651068754188418859">" "</string>
<string name="bsp_select_minutes" msgid="8327182090226828481">" "</string>
<string name="bsp_day_picker_description" msgid="3968620852217927702">" "</string>
<string name="bsp_year_picker_description" msgid="6963340404644587098">" "</string>
<string name="bsp_select_day" msgid="3973338219107019769">" "</string>
<string name="bsp_select_year" msgid="2603330600102539372">" "</string>
<string name="bsp_item_is_selected" msgid="2674929164900463786">"<xliff:g id="ITEM">%1$s</xliff:g> "</string>
<string name="bsp_deleted_key" msgid="6908431551612331381">"<xliff:g id="KEY">%1$s</xliff:g> "</string>
</resources>
``` | /content/code_sandbox/bottomsheetpickers/src/main/res/values-ne-rNP/strings.xml | xml | 2016-10-06T01:20:05 | 2024-08-05T10:12:07 | BottomSheetPickers | philliphsu/BottomSheetPickers | 1,101 | 381 |
```xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "path_to_url">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleDisplayName</key>
<string>Boost Note</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
<key>CFBundleShortVersionString</key>
<string>$(MARKETING_VERSION)</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
<key>LSApplicationCategoryType</key>
<string></string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<false/>
</dict>
<key>UIApplicationSceneManifest</key>
<dict>
<key>UIApplicationSupportsMultipleScenes</key>
<false/>
<key>UISceneConfigurations</key>
<dict>
<key>UIWindowSceneSessionRoleApplication</key>
<array>
<dict>
<key>UISceneConfigurationName</key>
<string>Default Configuration</string>
<key>UISceneDelegateClassName</key>
<string>$(PRODUCT_MODULE_NAME).SceneDelegate</string>
<key>UISceneStoryboardFile</key>
<string>Main</string>
</dict>
</array>
</dict>
</dict>
<key>UIApplicationSupportsIndirectInputEvents</key>
<true/>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>UIMainStoryboardFile</key>
<string>Main</string>
<key>UIRequiredDeviceCapabilities</key>
<array>
<string>armv7</string>
</array>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
</dict>
</plist>
``` | /content/code_sandbox/ios/BoostNoteMobile/BoostNoteMobile/Info.plist | xml | 2016-11-19T14:30:34 | 2024-08-16T03:13:45 | BoostNote-App | BoostIO/BoostNote-App | 3,745 | 673 |
```xml
// Composables
import { makeBorderProps, useBorder } from '../border'
// Utilities
import { describe, expect, it } from '@jest/globals'
import { mount } from '@vue/test-utils'
// Types
import type { BorderProps } from '../border'
describe('border.ts', () => {
it('should create border props', () => {
const wrapper = mount({
props: makeBorderProps(),
template: '<div/>',
}, {
propsData: { border: true },
})
expect(wrapper.props().border).toBeDefined()
})
it.each([
// Invalid or empty
[{}, []],
[{ border: null }, []],
[{ border: 1 }, []],
// Border only
[{ border: true }, ['foo--border']],
[{ border: '' }, ['foo--border']],
// Border with 0 or false
[{ border: '0' }, ['border-0']],
[{ border: 0 }, ['border-0']],
// Border with a word
[{ border: 't' }, ['border-t']],
[{ border: 't opacity-50' }, ['border-t', 'border-opacity-50']],
[{ border: 'e-xl primary' }, ['border-e-xl', 'border-primary']],
] as BorderProps[])('should have the correct class using %s', (props: BorderProps, expected: any) => {
const { borderClasses } = useBorder(props as BorderProps, 'foo')
expect(borderClasses.value).toEqual(expected)
})
})
``` | /content/code_sandbox/packages/vuetify/src/composables/__tests__/border.spec.ts | xml | 2016-09-12T00:39:35 | 2024-08-16T20:06:39 | vuetify | vuetifyjs/vuetify | 39,539 | 331 |
```xml
import React, { useRef, useState } from 'react';
import Wrapper from '@erxes/ui/src/layout/components/Wrapper';
import DataWithLoader from '@erxes/ui/src/components/DataWithLoader';
import Pagination from '@erxes/ui/src/components/pagination/Pagination';
import FormControl from '@erxes/ui/src/components/form/Control';
import Icon from '@erxes/ui/src/components/Icon';
import { Alert, router } from '@erxes/ui/src/utils';
import {
FilterContainer,
FlexItem,
FlexRow,
InputBar
} from '@erxes/ui-settings/src/styles';
import Sidebar from '../containers/Sidebar';
import {
Templates,
TemplateBox,
TemplateTitle,
TemplateHeader,
TemplateActions,
TemplateDescription,
Categories,
CategoryItem,
RightDrawerContainer,
ImportInput,
ImportLabel
} from '@erxes/ui-template/src/styles';
import { Transition } from '@headlessui/react';
import Form from '@erxes/ui-template/src/containers/Form';
import DropdownToggle from '@erxes/ui/src/components/DropdownToggle';
import Dropdown from '@erxes/ui/src/components/Dropdown';
import xss from 'xss';
import { getEnv } from '@erxes/ui/src/utils/index';
import queryString from 'query-string';
import { includesAny } from '@erxes/ui-template/src/utils';
import { ITemplate } from '@erxes/ui-template/src/types';
type Props = {
location: any;
navigate: any;
queryParams?: any;
templates: ITemplate[];
totalCount: number;
loading: boolean;
removeTemplate: (id: string) => void;
useTemplate: (template: ITemplate) => void;
refetch: () => void;
};
const List = (props: Props) => {
const {
queryParams,
location,
navigate,
templates,
totalCount,
loading,
removeTemplate,
useTemplate,
refetch
} = props;
const timerRef = useRef<number | null>(null);
const [toggleSidebar, setToggleSidebar] = useState<boolean>(false);
const [toggleDrawer, setToggleDrawer] = useState<boolean>(false);
const [searchValue, setSearchValue] = useState<string>(
queryParams.searchValue || ''
);
const [template, setTemplate] = useState<ITemplate | null>(null);
const [mode, setMode] = useState<string>('view');
const isActive = (categoryId: string) => {
const { categoryIds } = queryParams;
if (Array.isArray(categoryIds)) {
return categoryIds.includes(categoryId);
}
return queryParams.categoryIds === categoryId;
};
const closeDrawer = () => {
setToggleDrawer(false);
setTemplate(null);
};
const handleEdit = (currentTemplate: ITemplate) => {
setMode('edit');
setTemplate(currentTemplate);
setToggleDrawer(true);
};
const handleSearch = (e) => {
if (timerRef.current) {
clearTimeout(timerRef.current);
}
const inputValue = e.target.value;
setSearchValue(inputValue);
timerRef.current = window.setTimeout(() => {
router.removeParams(navigate, location, 'page');
router.setParams(navigate, location, { searchValue: inputValue });
}, 500);
};
const handleClick = (currentTemplate: ITemplate) => {
if (!currentTemplate) {
return;
}
const isCurrentTemplateSelected: boolean =
(template || ({} as any))._id === currentTemplate._id;
if (!isCurrentTemplateSelected) {
setTemplate(currentTemplate);
}
setMode('view');
setToggleDrawer(isCurrentTemplateSelected ? !toggleDrawer : true);
};
const handleCategoryClick = (e: any, categoryId: string) => {
const { categoryIds } = queryParams;
e.stopPropagation();
router.removeParams(navigate, location, 'page');
if (Array.isArray(categoryIds) && categoryIds.includes(categoryId)) {
const index = categoryIds.indexOf(categoryId);
index > -1 && categoryIds.splice(index, 1);
return router.setParams(navigate, location, { categoryIds });
}
if (Array.isArray(categoryIds) && !categoryIds.includes(categoryId)) {
return router.setParams(navigate, location, {
categoryIds: [...categoryIds, categoryId]
});
}
if (categoryId === categoryIds) {
return router.removeParams(navigate, location, 'categoryIds');
}
if (categoryId !== categoryIds) {
return router.setParams(navigate, location, {
categoryIds: [categoryIds, categoryId]
});
}
router.setParams(navigate, location, { categoryIds: categoryId });
};
const handleUse = (currentTemplate: ITemplate) => {
if (!currentTemplate) {
return;
}
useTemplate(currentTemplate);
};
const handleInput = ({ target }) => {
const file = target.files[0];
const { REACT_APP_API_URL } = getEnv();
const fileInfo = { name: file.name, size: file.size, type: file.type };
if (fileInfo.size > 15 * 1024 * 1024) {
Alert.warning(
`Your file ${fileInfo.name} size is too large. Upload files less than 15MB.`
);
return;
}
const reader = new FileReader();
reader.onload = () => {
const fileContent = reader?.result?.toString() ?? '';
try {
const jsonData = JSON.parse(fileContent);
fetch(`${REACT_APP_API_URL}/pl:template/file-import`, {
method: 'POST',
body: JSON.stringify(jsonData),
headers: {
'Content-Type': 'application/json'
}
})
.then((response) => response.json())
.then((data) => {
if (data.success) {
refetch();
Alert.success('Uploaded successfully');
} else {
Alert.error('Upload failed');
}
})
.catch((err) => {
Alert.error(`Upload failed: ${err.message}`);
});
} catch (error) {
Alert.error('Failed to parse JSON file');
}
};
reader.onerror = () => {
Alert.error('Failed to read the file');
};
reader.readAsText(file);
};
const handleExport = (currentTemplate: ITemplate) => {
const { REACT_APP_API_URL } = getEnv();
const stringified = queryString.stringify({
_id: currentTemplate._id
});
window.open(`${REACT_APP_API_URL}/pl:template/file-export?${stringified}`);
};
const renderHeader = () => {
const { contentType } = queryParams;
const filterTitle = (contentType || '')?.split(':')?.[1];
const breadcrumb = [{ title: 'Templates' }];
return (
<Wrapper.Header
title={'Templates'}
breadcrumb={breadcrumb}
queryParams={queryParams}
filterTitle={filterTitle}
/>
);
};
const renderActions = (template: ITemplate) => {
return (
<TemplateActions>
<Dropdown
as={DropdownToggle}
toggleComponent={<Icon icon="ellipsis-v" />}
>
<li>
<a onClick={() => handleUse(template)}>
<Icon icon="repeat" /> Use
</a>
</li>
<li>
<a onClick={() => handleExport(template)}>
<Icon icon="upload-6" /> Export
</a>
</li>
<li>
<a onClick={() => handleEdit(template)}>
<Icon icon="edit" /> Edit
</a>
</li>
<li>
<a onClick={() => removeTemplate(template?._id)}>
<Icon icon="trash" /> Remove
</a>
</li>
</Dropdown>
</TemplateActions>
);
};
const renderActionBar = () => {
const actionBarLeft = (
<Icon
icon="subject"
onClick={() => setToggleSidebar(!toggleSidebar)}
style={{ cursor: 'pointer' }}
/>
);
const actionBarRight = (
<FilterContainer>
<FlexRow>
<ImportInput
id="import"
type="file"
onChange={handleInput}
multiple={false}
accept="application/JSON"
/>
<ImportLabel htmlFor="import">
<Icon icon="import" size={21} />
</ImportLabel>
<InputBar type="searchBar">
<Icon icon="search-1" size={20} />
<FlexItem>
<FormControl
placeholder={'Search'}
name="searchValue"
onChange={handleSearch}
value={searchValue}
autoFocus={true}
/>
</FlexItem>
</InputBar>
</FlexRow>
</FilterContainer>
);
return <Wrapper.ActionBar left={actionBarLeft} right={actionBarRight} />;
};
const renderSidebar = () => {
return (
<Sidebar
queryParams={queryParams}
location={location}
navigate={navigate}
toggleSidebar={toggleSidebar}
/>
);
};
const renderCategories = (template: ITemplate) => {
const { categoryIds } = queryParams;
const { categories } = template;
const displayedCategories = categories.slice(0, 3);
const hasMoreCategories = categories.length > 3;
const remainingCategoryIds = categories
.filter((category) => !displayedCategories.includes(category))
.map((category) => category._id);
const isMoreActive = includesAny(remainingCategoryIds, categoryIds);
return (
<Categories>
{displayedCategories.map((category) => (
<CategoryItem
key={category._id}
isActive={isActive(category._id)}
onClick={(e) => handleCategoryClick(e, category._id)}
>
{category.name}
</CategoryItem>
))}
{hasMoreCategories && (
<CategoryItem
key="more"
isActive={isMoreActive}
onClick={() => handleClick(template)}
>
...
</CategoryItem>
)}
</Categories>
);
};
const renderTemplate = (template: ITemplate) => {
return (
<TemplateBox key={template._id} onClick={() => handleClick(template)}>
<div>
<TemplateHeader>
<TemplateTitle>{template?.name}</TemplateTitle>
{renderActions(template)}
</TemplateHeader>
<TemplateDescription
limit={3}
dangerouslySetInnerHTML={{ __html: xss(template?.description) }}
/>
</div>
{renderCategories(template)}
</TemplateBox>
);
};
const renderTemplates = () => {
return (
<Templates isSidebarOpen={toggleSidebar}>
{(templates || []).map(renderTemplate)}
</Templates>
);
};
const renderContent = () => {
return (
<DataWithLoader
data={renderTemplates()}
loading={loading}
count={totalCount}
emptyText={'There is no template'}
emptyImage="/images/actions/8.svg"
/>
);
};
return (
<>
<Wrapper
hasBorder={true}
header={renderHeader()}
actionBar={renderActionBar()}
leftSidebar={renderSidebar()}
content={renderContent()}
footer={<Pagination count={totalCount || 0} />}
/>
<Transition
show={toggleDrawer}
className="slide-in-right"
enter="transition duration-300"
>
<RightDrawerContainer>
<Form mode={mode} template={template} closeDrawer={closeDrawer} />
</RightDrawerContainer>
</Transition>
</>
);
};
export default List;
``` | /content/code_sandbox/packages/plugin-template-ui/src/components/List.tsx | xml | 2016-11-11T06:54:50 | 2024-08-16T10:26:06 | erxes | erxes/erxes | 3,479 | 2,505 |
```xml
<?xml version="1.0" encoding="US-ASCII"?>
<!DOCTYPE rfc SYSTEM "rfc2629.dtd" [
<!ENTITY rfc4627 SYSTEM "path_to_url">
<!ENTITY rfc3986 SYSTEM "path_to_url">
<!ENTITY rfc2119 SYSTEM "path_to_url">
<!ENTITY rfc4287 SYSTEM "path_to_url">
<!ENTITY rfc2616 SYSTEM "path_to_url">
<!ENTITY rfc3339 SYSTEM "path_to_url">
<!ENTITY rfc2045 SYSTEM "path_to_url">
<!ENTITY rfc5226 SYSTEM "path_to_url">
<!ENTITY iddiscovery SYSTEM "path_to_url">
<!ENTITY uritemplate SYSTEM "path_to_url">
<!ENTITY linkheader SYSTEM "path_to_url">
<!ENTITY html401 SYSTEM "path_to_url">
<!ENTITY css21 SYSTEM "path_to_url">
]>
<?rfc toc="yes"?>
<?rfc symrefs="yes"?>
<?rfc compact="yes"?>
<?rfc subcompact="no"?>
<?rfc strict="no"?>
<?rfc rfcedstyle="yes"?>
<rfc category="info" docName="draft-zyp-json-schema-04" ipr="trust200902">
<front>
<title abbrev="JSON Schema Media Type">A JSON Media Type for Describing the Structure and Meaning of JSON Documents</title>
<author fullname="Kris Zyp" initials="K" role="editor" surname="Zyp">
<organization>SitePen (USA)</organization>
<address>
<postal>
<street>530 Lytton Avenue</street>
<city>Palo Alto, CA 94301</city>
<country>USA</country>
</postal>
<phone>+1 650 968 8787</phone>
<email>kris@sitepen.com</email>
</address>
</author>
<author fullname="Gary Court" initials="G" surname="Court">
<address>
<postal>
<street></street>
<city>Calgary, AB</city>
<country>Canada</country>
</postal>
<email>gary.court@gmail.com</email>
</address>
</author>
<date year="2011" />
<workgroup>Internet Engineering Task Force</workgroup>
<keyword>JSON</keyword>
<keyword>Schema</keyword>
<keyword>JavaScript</keyword>
<keyword>Object</keyword>
<keyword>Notation</keyword>
<keyword>Hyper Schema</keyword>
<keyword>Hypermedia</keyword>
<abstract>
<t>
JSON (JavaScript Object Notation) Schema defines the media type "application/schema+json",
a JSON based format for defining the structure of JSON data. JSON Schema provides a contract for what JSON
data is required for a given application and how to interact with it. JSON
Schema is intended to define validation, documentation, hyperlink
navigation, and interaction control of JSON data.
</t>
</abstract>
</front>
<middle>
<section title="Introduction">
<t>
JSON (JavaScript Object Notation) Schema is a JSON media type for defining
the structure of JSON data. JSON Schema provides a contract for what JSON
data is required for a given application and how to interact with it. JSON
Schema is intended to define validation, documentation, hyperlink
navigation, and interaction control of JSON data.
</t>
</section>
<section title="Conventions and Terminology">
<t>
<!-- The text in this section has been copied from the official boilerplate,
and should not be modified.-->
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD",
"SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be
interpreted as described in <xref target="RFC2119">RFC 2119</xref>.
</t>
<t>
The terms "JSON", "JSON text", "JSON value", "member", "element", "object",
"array", "number", "string", "boolean", "true", "false", and "null" in this
document are to be interpreted as defined in <xref target="RFC4627">RFC 4627</xref>.
</t>
<t>
This specification also uses the following defined terms:
<list style="hanging">
<t hangText="schema">A JSON Schema object.</t>
<t hangText="instance">Equivalent to "JSON value" as defined in <xref target="RFC4627">RFC 4627</xref>.</t>
<t hangText="property">Equivalent to "member" as defined in <xref target="RFC4627">RFC 4627</xref>.</t>
<t hangText="item">Equivalent to "element" as defined in <xref target="RFC4627">RFC 4627</xref>.</t>
<t hangText="attribute">A property of a JSON Schema object.</t>
</list>
</t>
</section>
<section title="Overview">
<t>
JSON Schema defines the media type "application/schema+json" for
describing the structure of JSON text. JSON Schemas are also written in JSON and includes facilities
for describing the structure of JSON in terms of
allowable values, descriptions, and interpreting relations with other resources.
</t>
<t>
This document is organized into several separate definitions. The first
definition is the core schema specification. This definition is primary
concerned with describing a JSON structure and specifying valid elements
in the structure. The second definition is the Hyper Schema specification
which is intended to define elements in a structure that can be interpreted as
hyperlinks.
Hyper Schema builds on JSON Schema to describe the hyperlink structure of
JSON values. This allows user agents to be able to successfully navigate
documents containing JSON based on their schemas.
</t>
<t>
Cumulatively JSON Schema acts as meta-JSON that can be used to define the
required type and constraints on JSON values, as well as define the meaning
of the JSON values for the purpose of describing a resource and determining
hyperlinks within the representation.
</t>
<figure>
<preamble>An example JSON Schema that describes products might look like:</preamble>
<artwork>
<![CDATA[
{
"title": "Product",
"properties": {
"id": {
"title": "Product Identifier",
"type": "number"
},
"name": {
"title": "Product Name",
"type": "string"
},
"price": {
"type": "number",
"minimum": 0
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required" : ["id", "name", "price"],
"links": [{
"rel": "full",
"href": "{id}"
}, {
"rel": "comments",
"href": "comments/?id={id}"
}]
}
]]>
</artwork>
<postamble>
This schema defines the properties of the instance,
the required properties (id, name, and price), as well as an optional
property (tags). This also defines the link relations of the instance.
</postamble>
</figure>
<section title="Design Considerations">
<t>
The JSON Schema media type does not attempt to dictate the structure of JSON
values that contain data, but rather provides a separate format
for flexibly communicating how a JSON value should be
interpreted and validated, such that user agents can properly understand
acceptable structures and extrapolate hyperlink information
from the JSON. It is acknowledged that JSON values come
in a variety of structures, and JSON is unique in that the structure
of stored data structures often prescribes a non-ambiguous definite
JSON representation. Attempting to force a specific structure is generally
not viable, and therefore JSON Schema allows for a great flexibility
in the structure of the JSON data that it describes.
</t>
<t>
This specification is protocol agnostic.
The underlying protocol (such as HTTP) should sufficiently define the
semantics of the client-server interface, the retrieval of resource
representations linked to by JSON representations, and modification of
those resources. The goal of this
format is to sufficiently describe JSON structures such that one can
utilize existing information available in existing JSON
representations from a large variety of services that leverage a representational state transfer
architecture using existing protocols.
</t>
</section>
</section>
<section title="Schema/Instance Association">
<t>
JSON values are correlated to their schema by the "describedby"
relation, where the schema is the target of the relation.
JSON values MUST be of the "application/json" media type or
any other subtype. Consequently, dictating how a JSON value should
specify the relation to the schema is beyond the normative scope
of this document since this document specifically defines the JSON
Schema media type, and no other. It is RECOMMNENDED that JSON values
specify their schema so that user agents can interpret the instance
and retain the self-descriptive characteristics. This avoides the need for out-of-band information about
instance data. Two approaches are recommended for declaring the
relation to the schema that describes the meaning of a JSON instance's (or collection
of instances) structure. A MIME type parameter named
"profile" or a relation of "describedby" (which could be specified by a Link header) may be used:
<figure>
<artwork>
<![CDATA[
Content-Type: application/my-media-type+json;
profile=path_to_url
]]>
</artwork>
</figure>
or if the content is being transferred by a protocol (such as HTTP) that
provides headers, a Link header can be used:
<figure>
<artwork>
<![CDATA[
Link: <path_to_url rel="describedby"
]]>
</artwork>
</figure>
Instances MAY specify multiple schemas, to indicate all the schemas that
are applicable to the data, and the data SHOULD be valid by all the schemas.
The instance data MAY have multiple schemas
that it is described by (the instance data SHOULD be valid for those schemas).
Or if the document is a collection of instances, the collection MAY contain
instances from different schemas. The mechanism for referencing a schema is
determined by the media type of the instance (if it provides a method for
referencing schemas).
</t>
<section title="Self-Descriptive Schema">
<t>
JSON Schemas can themselves be described using JSON Schemas.
A self-describing JSON Schema for the core JSON Schema can
be found at <eref target="path_to_url">path_to_url for the latest version or
<eref target="path_to_url">path_to_url for the draft-04 version. The hyper schema
self-description can be found at <eref target="path_to_url">path_to_url
or <eref target="path_to_url">path_to_url All schemas
used within a protocol with a media type specified SHOULD include a MIME parameter that refers to the self-descriptive
hyper schema or another schema that extends this hyper schema:
<figure>
<artwork>
<![CDATA[
Content-Type: application/json;
profile=path_to_url
]]>
</artwork>
</figure>
</t>
</section>
</section>
<section title="Core Schema Definition">
<t>
A JSON Schema is a JSON object that defines various attributes
(including usage and valid values) of a JSON value. JSON
Schema has recursive capabilities; there are a number of elements
in the structure that allow for nested JSON Schemas.
</t>
<figure>
<preamble>An example JSON Schema could look like:</preamble>
<artwork>
<![CDATA[
{
"description": "A person",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"age": {
"type": "number",
"divisibleBy": 1,
"minimum": 0,
"maximum": 125
}
}
}
]]>
</artwork>
</figure>
<t>
A JSON Schema object MAY have any of the following optional properties:
</t>
<!-- TODO: Break attributes up into type sections -->
<!-- TODO: Add examples for (almost) every attribute -->
<section title="type" anchor="type">
<t>
This attribute defines what the primitive type or the schema of the instance MUST be in order to validate.
This attribute can take one of two forms:
<list style="hanging">
<t hangText="Simple Types">
A string indicating a primitive or simple type. The string MUST be one of the following values:
<list style="hanging">
<t hangText="object">Instance MUST be an object.</t>
<t hangText="array">Instance MUST be an array.</t>
<t hangText="string">Instance MUST be a string.</t>
<t hangText="number">Instance MUST be a number, including floating point numbers.</t>
<t hangText="boolean">Instance MUST be the JSON literal "true" or "false".</t>
<t hangText="null">Instance MUST be the JSON literal "null". Note that without this type, null values are not allowed.</t>
<t hangText="any">Instance MAY be of any type, including null.</t>
</list>
</t>
<t hangText="Union Types">
An array of one or more simple or schema types.
The instance value is valid if it is of the same type as one of the simple types, or valid by one of the schemas, in the array.
</t>
</list>
If this attribute is not specified, then all value types are accepted.
</t>
<figure>
<preamble>For example, a schema that defines if an instance can be a string or a number would be:</preamble>
<artwork>
<![CDATA[
{
"type": ["string", "number"]
}
]]></artwork>
</figure>
</section>
<section title="properties" anchor="properties">
<t>
This attribute is an object with properties that specify the schemas for the properties of the instance object.
In this attribute's object, each property value MUST be a schema.
When the instance value is an object, the value of the instance's properties MUST be valid according to the schemas with the same property names specified in this attribute.
Objects are unordered, so therefore the order of the instance properties or attribute properties MUST NOT determine validation success.
</t>
</section>
<section title="patternProperties" anchor="patternProperties">
<t>
This attribute is an object that defines the schema for a set of property names of an object instance.
The name of each property of this attribute's object is a regular expression pattern in the ECMA 262/Perl 5 format, while the value is a schema.
If the pattern matches the name of a property on the instance object, the value of the instance's property MUST be valid against the pattern name's schema value.
</t>
</section>
<section title="additionalProperties" anchor="additionalProperties">
<t>This attribute specifies how any instance property that is not explicitly defined by either the <xref target="properties">"properties"</xref> or <xref target="patternProperties">"patternProperties"</xref> attributes (hereafter referred to as "additional properties") is handled. If specified, the value MUST be a schema or a boolean.</t>
<t>If a schema is provided, then all additional properties MUST be valid according to the schema.</t>
<t>If false is provided, then no additional properties are allowed.</t>
<t>The default value is an empty schema, which allows any value for additional properties.</t>
</section>
<section title="items" anchor="items">
<t>This attribute provides the allowed items in an array instance. If specified, this attribute MUST be a schema or an array of schemas.</t>
<t>When this attribute value is a schema and the instance value is an array, then all the items in the array MUST be valid according to the schema.</t>
<t>When this attribute value is an array of schemas and the instance value is an array, each position in the instance array MUST be valid according to the schema in the corresponding position for this array. This called tuple typing. When tuple typing is used, additional items are allowed, disallowed, or constrained by the <xref target="additionalItems">"additionalItems"</xref> attribute the same way as <xref target="additionalProperties">"additionalProperties"</xref> for objects is.</t>
</section>
<section title="additionalItems" anchor="additionalItems">
<t>This attribute specifies how any item in the array instance that is not explicitly defined by <xref target="items">"items"</xref> (hereafter referred to as "additional items") is handled. If specified, the value MUST be a schema or a boolean.</t>
<t>If a schema is provided:
<list>
<t>If the <xref target="items">"items"</xref> attribute is unspecified, then all items in the array instance must be valid against this schema.</t>
<t>If the <xref target="items">"items"</xref> attribute is a schema, then this attribute is ignored.</t>
<t>If the <xref target="items">"items"</xref> attribute is an array (during tuple typing), then any additional items MUST be valid against this schema.</t>
</list>
</t>
<t>If false is provided, then any additional items in the array are not allowed.</t>
<t>The default value is an empty schema, which allows any value for additional items.</t>
</section>
<section title="required" anchor="required">
<t>This attribute is an array of strings that defines all the property names that must exist on the object instance.</t>
</section>
<section title="dependencies" anchor="dependencies">
<t>This attribute is an object that specifies the requirements of a property on an object instance. If an object instance has a property with the same name as a property in this attribute's object, then the instance must be valid against the attribute's property value (hereafter referred to as the "dependency value").</t>
<t>
The dependency value can take one of two forms:
<list style="hanging">
<t hangText="Simple Dependency">
If the dependency value is a string, then the instance object MUST have a property with the same name as the dependency value.
If the dependency value is an array of strings, then the instance object MUST have a property with the same name as each string in the dependency value's array.
</t>
<t hangText="Schema Dependency">
If the dependency value is a schema, then the instance object MUST be valid against the schema.
</t>
</list>
</t>
</section>
<section title="minimum" anchor="minimum">
<t>This attribute defines the minimum value of the instance property when the type of the instance value is a number.</t>
</section>
<section title="maximum" anchor="maximum">
<t>This attribute defines the maximum value of the instance property when the type of the instance value is a number.</t>
</section>
<section title="exclusiveMinimum" anchor="exclusiveMinimum">
<t>This attribute indicates if the value of the instance (if the instance is a number) can not equal the number defined by the "minimum" attribute. This is false by default, meaning the instance value can be greater then or equal to the minimum value.</t>
</section>
<section title="exclusiveMaximum" anchor="exclusiveMaximum">
<t>This attribute indicates if the value of the instance (if the instance is a number) can not equal the number defined by the "maximum" attribute. This is false by default, meaning the instance value can be less then or equal to the maximum value.</t>
</section>
<section title="minItems" anchor="minItems">
<t>This attribute defines the minimum number of values in an array when the array is the instance value.</t>
</section>
<section title="maxItems" anchor="maxItems">
<t>This attribute defines the maximum number of values in an array when the array is the instance value.</t>
</section>
<section title="minProperties" anchor="minProperties">
<t>This attribute defines the minimum number of properties required on an object instance.</t>
</section>
<section title="maxProperties" anchor="maxProperties">
<t>This attribute defines the maximum number of properties the object instance can have.</t>
</section>
<section title="uniqueItems" anchor="uniqueItems">
<t>This attribute indicates that all items in an array instance MUST be unique (contains no two identical values).</t>
<t>
Two instance are consider equal if they are both of the same type and:
<list>
<t>are null; or</t>
<t>are booleans/numbers/strings and have the same value; or</t>
<t>are arrays, contains the same number of items, and each item in the array is equal to the item at the corresponding index in the other array; or</t>
<t>are objects, contains the same property names, and each property in the object is equal to the corresponding property in the other object.</t>
</list>
</t>
</section>
<section title="pattern" anchor="pattern">
<t>When the instance value is a string, this provides a regular expression that a string instance MUST match in order to be valid. Regular expressions SHOULD follow the regular expression specification from ECMA 262/Perl 5</t>
</section>
<section title="minLength" anchor="minLength">
<t>When the instance value is a string, this defines the minimum length of the string.</t>
</section>
<section title="maxLength" anchor="maxLength">
<t>When the instance value is a string, this defines the maximum length of the string.</t>
</section>
<section title="enum" anchor="enum">
<t>This provides an enumeration of all possible values that are valid for the instance property. This MUST be an array, and each item in the array represents a possible value for the instance value. If this attribute is defined, the instance value MUST be one of the values in the array in order for the schema to be valid. Comparison of enum values uses the same algorithm as defined in <xref target="uniqueItems">"uniqueItems"</xref>.</t>
</section>
<section title="default" anchor="default">
<t>This attribute defines the default value of the instance when the instance is undefined.</t>
</section>
<section title="title" anchor="title">
<t>This attribute is a string that provides a short description of the instance property.</t>
</section>
<section title="description" anchor="description">
<t>This attribute is a string that provides a full description of the of purpose the instance property.</t>
</section>
<section title="divisibleBy" anchor="divisibleBy">
<t>This attribute defines what value the number instance must be divisible by with no remainder (the result of the division must be an integer.) The value of this attribute SHOULD NOT be 0.</t>
</section>
<section title="disallow" anchor="disallow">
<t>This attribute takes the same values as the "type" attribute, however if the instance matches the type or if this value is an array and the instance matches any type or schema in the array, then this instance is not valid.</t>
</section>
<section title="extends" anchor="extends">
<t>The value of this property MUST be another schema which will provide a base schema which the current schema will inherit from. The inheritance rules are such that any instance that is valid according to the current schema MUST be valid according to the referenced schema. This MAY also be an array, in which case, the instance MUST be valid for all the schemas in the array. A schema that extends another schema MAY define additional attributes, constrain existing attributes, or add other constraints.</t>
<t>
Conceptually, the behavior of extends can be seen as validating an
instance against all constraints in the extending schema as well as
the extended schema(s). More optimized implementations that merge
schemas are possible, but are not required. Some examples of using "extends":
<figure>
<artwork>
<![CDATA[
{
"description": "An adult",
"properties": {
"age": {
"minimum": 21
}
},
"extends": {"$ref": "person"}
}
]]>
</artwork>
</figure>
<figure>
<artwork>
<![CDATA[
{
"description": "Extended schema",
"properties": {
"deprecated": {
"type": "boolean"
}
},
"extends": {"$ref": "path_to_url"}
}
]]>
</artwork>
</figure>
</t>
</section>
<section title="id" anchor="id">
<t>
This attribute defines the current URI of this schema (this attribute is
effectively a "self" link). This URI MAY be relative or absolute. If
the URI is relative it is resolved against the current URI of the parent
schema it is contained in. If this schema is not contained in any
parent schema, the current URI of the parent schema is held to be the
URI under which this schema was addressed. If id is missing, the current URI of a schema is
defined to be that of the parent schema. The current URI of the schema
is also used to construct relative references such as for $ref.
</t>
</section>
<section title="$ref" anchor="ref">
<t>
This attribute defines a URI of a schema that contains the full representation of this schema.
When a validator encounters this attribute, it SHOULD replace the current schema with the schema referenced by the value's URI (if known and available) and re-validate the instance.
This URI MAY be relative or absolute, and relative URIs SHOULD be resolved against the URI of the current schema.
</t>
</section>
<section title="$schema" anchor="schema">
<t>
This attribute defines a URI of a JSON Schema that is the schema of the current schema.
When this attribute is defined, a validator SHOULD use the schema referenced by the value's URI (if known and available) when resolving <xref target="hyper-schema">Hyper Schema</xref><xref target="links">links</xref>.
</t>
<t>
A validator MAY use this attribute's value to determine which version of JSON Schema the current schema is written in, and provide the appropriate validation features and behavior.
Therefore, it is RECOMMENDED that all schema authors include this attribute in their schemas to prevent conflicts with future JSON Schema specification changes.
</t>
</section>
</section>
<section title="Hyper Schema" anchor="hyper-schema">
<t>
The following attributes are specified in addition to those
attributes that already provided by the core schema with the specific
purpose of informing user agents of relations between resources based
on JSON data. Just as with JSON
schema attributes, all the attributes in hyper schemas are optional.
Therefore, an empty object is a valid (non-informative) schema, and
essentially describes plain JSON (no constraints on the structures).
Addition of attributes provides additive information for user agents.
</t>
<section title="links" anchor="links">
<t>
The value of the links property MUST be an array, where each item
in the array is a link description object which describes the link
relations of the instances.
</t>
<!-- TODO: Needs more clarification and examples -->
<section title="Link Description Object">
<t>
A link description object is used to describe link relations. In
the context of a schema, it defines the link relations of the
instances of the schema, and can be parameterized by the instance
values. The link description format can be used without JSON Schema,
and use of this format can
be declared by referencing the normative link description
schema as the the schema for the data structure that uses the
links. The URI of the normative link description schema is:
<eref target="path_to_url">path_to_url (latest version) or
<eref target="path_to_url">path_to_url (draft-04 version).
</t>
<section title="href" anchor="href">
<t>
The value of the "href" link description property
indicates the target URI of the related resource. The value
of the instance property SHOULD be resolved as a URI-Reference per <xref target="RFC3986">RFC 3986</xref>
and MAY be a relative URI. The base URI to be used for relative resolution
SHOULD be the URI used to retrieve the instance object (not the schema)
when used within a schema. Also, when links are used within a schema, the URI
SHOULD be parametrized by the property values of the instance
object, if property values exist for the corresponding variables
in the template (otherwise they MAY be provided from alternate sources, like user input).
</t>
<t>
Instance property values SHOULD be substituted into the URIs where
matching braces ('{', '}') are found surrounding zero or more characters,
creating an expanded URI. Instance property value substitutions are resolved
by using the text between the braces to denote the property name
from the instance to get the value to substitute.
<figure>
<preamble>For example, if an href value is defined:</preamble>
<artwork>
<![CDATA[
path_to_url{id}
]]>
</artwork>
<postamble>Then it would be resolved by replace the value of the "id" property value from the instance object.</postamble>
</figure>
<figure>
<preamble>If the value of the "id" property was "45", the expanded URI would be:</preamble>
<artwork>
<![CDATA[
path_to_url
]]>
</artwork>
</figure>
If matching braces are found with the string "@" (no quotes) between the braces, then the
actual instance value SHOULD be used to replace the braces, rather than a property value.
This should only be used in situations where the instance is a scalar (string,
boolean, or number), and not for objects or arrays.
</t>
</section>
<section title="rel">
<t>
The value of the "rel" property indicates the name of the
relation to the target resource. The relation to the target SHOULD be interpreted as specifically from the instance object that the schema (or sub-schema) applies to, not just the top level resource that contains the object within its hierarchy. If a resource JSON representation contains a sub object with a property interpreted as a link, that sub-object holds the relation with the target. A relation to target from the top level resource MUST be indicated with the schema describing the top level JSON representation.
</t>
<t>
Relationship definitions SHOULD NOT be media type dependent, and users are encouraged to utilize existing accepted relation definitions, including those in existing relation registries (see <xref target="RFC4287">RFC 4287</xref>). However, we define these relations here for clarity of normative interpretation within the context of JSON hyper schema defined relations:
<list style="hanging">
<t hangText="self">
If the relation value is "self", when this property is encountered in
the instance object, the object represents a resource and the instance object is
treated as a full representation of the target resource identified by
the specified URI.
</t>
<t hangText="full">
This indicates that the target of the link is the full representation for the instance object. The object that contains this link possibly may not be the full representation.
</t>
<t hangText="describedby">
This indicates the target of the link is the schema for the instance object. This MAY be used to specifically denote the schemas of objects within a JSON object hierarchy, facilitating polymorphic type data structures.
</t>
<t hangText="root">
This relation indicates that the target of the link
SHOULD be treated as the root or the body of the representation for the
purposes of user agent interaction or fragment resolution. All other
properties of the instance objects can be regarded as meta-data
descriptions for the data.
</t>
</list>
</t>
<t>
The following relations are applicable for schemas (the schema as the "from" resource in the relation):
<list style="hanging">
<t hangText="instances">This indicates the target resource that represents collection of instances of a schema.</t>
<t hangText="create">This indicates a target to use for creating new instances of a schema. This link definition SHOULD be a submission link with a non-safe method (like POST).</t>
</list>
</t>
<t>
<figure>
<preamble>For example, if a schema is defined:</preamble>
<artwork>
<![CDATA[
{
"links": [{
"rel": "self",
"href": "{id}"
}, {
"rel": "up",
"href": "{upId}"
}, {
"rel": "children",
"href": "?upId={id}"
}]
}
]]>
</artwork>
</figure>
<figure>
<preamble>And if a collection of instance resource's JSON representation was retrieved:</preamble>
<artwork>
<![CDATA[
GET /Resource/
[{
"id": "thing",
"upId": "parent"
}, {
"id": "thing2",
"upId": "parent"
}]
]]>
</artwork>
</figure>
This would indicate that for the first item in the collection, its own
(self) URI would resolve to "/Resource/thing" and the first item's "up"
relation SHOULD be resolved to the resource at "/Resource/parent".
The "children" collection would be located at "/Resource/?upId=thing".
</t>
</section>
<section title="template">
<t>This property value is a string that defines the templating language used in the <xref target="href">"href"</xref> attribute. If no templating language is defined, then the default <xref target="href">Link Description Object templating langauge</xref> is used.</t>
</section>
<section title="targetSchema">
<t>This property value is a schema that defines the expected structure of the JSON representation of the target of the link.</t>
</section>
<section title="Submission Link Properties">
<t>
The following properties also apply to link definition objects, and
provide functionality analogous to HTML forms, in providing a
means for submitting extra (often user supplied) information to send to a server.
</t>
<section title="method">
<t>
This attribute defines which method can be used to access the target resource.
In an HTTP environment, this would be "GET" or "POST" (other HTTP methods
such as "PUT" and "DELETE" have semantics that are clearly implied by
accessed resources, and do not need to be defined here).
This defaults to "GET".
</t>
</section>
<section title="enctype">
<t>
If present, this property indicates a query media type format that the server
supports for querying or posting to the collection of instances at the target
resource. The query can be
suffixed to the target URI to query the collection with
property-based constraints on the resources that SHOULD be returned from
the server or used to post data to the resource (depending on the method).
<figure>
<preamble>For example, with the following schema:</preamble>
<artwork>
<![CDATA[
{
"links": [{
"enctype": "application/x-www-form-urlencoded",
"method": "GET",
"href": "/Product/",
"properties": {
"name": {
"description": "name of the product"
}
}
}]
}
]]>
</artwork>
<postamble>This indicates that the client can query the server for instances that have a specific name.</postamble>
</figure>
<figure>
<preamble>For example:</preamble>
<artwork>
<![CDATA[
/Product/?name=Slinky
]]>
</artwork>
</figure>
If no enctype or method is specified, only the single URI specified by
the href property is defined. If the method is POST, "application/json" is
the default media type.
</t>
</section>
<section title="schema">
<t>
This attribute contains a schema which defines the acceptable structure of the submitted
request (for a GET request, this schema would define the properties for the query string
and for a POST request, this would define the body).
</t>
</section>
</section>
</section>
</section>
<section title="fragmentResolution">
<t>
This property indicates the fragment resolution protocol to use for
resolving fragment identifiers in URIs within the instance
representations. This applies to the instance object URIs and all
children of the instance object's URIs. The default fragment resolution
protocol is "json-pointer", which is defined below. Other fragment
resolution protocols MAY be used, but are not defined in this document.
</t>
<t>
The fragment identifier is based on <xref target="RFC3986">RFC 3986, Sec 5</xref>, and defines the
mechanism for resolving references to entities within a document.
</t>
<section title="json-pointer fragment resolution">
<t>The "json-pointer" fragment resolution protocol uses a <xref target="json-pointer">JSON Pointer</xref> to resolve fragment identifiers in URIs within instance representations.</t>
</section>
</section>
<!-- TODO: Remove this? -->
<section title="readonly">
<t>This attribute indicates that the instance value SHOULD NOT be changed. Attempts by a user agent to modify the value of this property are expected to be rejected by a server.</t>
</section>
<section title="contentEncoding">
<t>If the instance property value is a string, this attribute defines that the string SHOULD be interpreted as binary data and decoded using the encoding named by this schema property. <xref target="RFC2045">RFC 2045, Sec 6.1</xref> lists the possible values for this property.</t>
</section>
<section title="pathStart">
<t>
This attribute is a URI that defines what the instance's URI MUST start with in order to validate.
The value of the "pathStart" attribute MUST be resolved as per <xref target="RFC3986">RFC 3986, Sec 5</xref>,
and is relative to the instance's URI.
</t>
<t>
When multiple schemas have been referenced for an instance, the user agent
can determine if this schema is applicable for a particular instance by
determining if the URI of the instance begins with the the value of the "pathStart"
attribute. If the URI of the instance does not start with this URI,
or if another schema specifies a starting URI that is longer and also matches the
instance, this schema SHOULD NOT be applied to the instance. Any schema
that does not have a pathStart attribute SHOULD be considered applicable
to all the instances for which it is referenced.
</t>
</section>
<section title="mediaType">
<t>This attribute defines the media type of the instance representations that this schema is defining.</t>
</section>
</section>
<section title="Security Considerations">
<t>
This specification is a sub-type of the JSON format, and
consequently the security considerations are generally the same as <xref target="RFC4627">RFC 4627</xref>.
However, an additional issue is that when link relation of "self"
is used to denote a full representation of an object, the user agent
SHOULD NOT consider the representation to be the authoritative representation
of the resource denoted by the target URI if the target URI is not
equivalent to or a sub-path of the the URI used to request the resource
representation which contains the target URI with the "self" link.
<figure>
<preamble>For example, if a hyper schema was defined:</preamble>
<artwork>
<![CDATA[
{
"links": [{
"rel": "self",
"href": "{id}"
}]
}
]]>
</artwork>
</figure>
<figure>
<preamble>And a resource was requested from somesite.com:</preamble>
<artwork>
<![CDATA[
GET /foo/
]]>
</artwork>
</figure>
<figure>
<preamble>With a response of:</preamble>
<artwork>
<![CDATA[
Content-Type: application/json; profile=/schema-for-this-data
[{
"id": "bar",
"name": "This representation can be safely treated \
as authoritative "
}, {
"id": "/baz",
"name": "This representation should not be treated as \
authoritative the user agent should make request the resource\
from '/baz' to ensure it has the authoritative representation"
}, {
"id": "path_to_url",
"name": "This representation\
should also not be treated as authoritative and the target\
resource representation should be retrieved for the\
authoritative representation"
}]
]]>
</artwork>
</figure>
</t>
</section>
<section title="IANA Considerations">
<t>The proposed MIME media type for JSON Schema is "application/schema+json".</t>
<t>Type name: application</t>
<t>Subtype name: schema+json</t>
<t>Required parameters: profile</t>
<t>
The value of the profile parameter SHOULD be a URI (relative or absolute) that
refers to the schema used to define the structure of this structure (the
meta-schema). Normally the value would be path_to_url
but it is allowable to use other schemas that extend the hyper schema's meta-
schema.
</t>
<t>Optional parameters: pretty</t>
<t>The value of the pretty parameter MAY be true or false to indicate if additional whitespace has been included to make the JSON representation easier to read.</t>
<section title="Registry of Link Relations">
<t>
This registry is maintained by IANA per <xref target="RFC4287">RFC 4287</xref> and this specification adds
four values: "full", "create", "instances", "root". New
assignments are subject to IESG Approval, as outlined in <xref target="RFC5226">RFC 5226</xref>.
Requests should be made by email to IANA, which will then forward the
request to the IESG, requesting approval.
</t>
</section>
</section>
</middle>
<back>
<!-- References Section -->
<references title="Normative References">
&rfc2045;
&rfc2119;
&rfc3339;
&rfc3986;
&rfc4287;
<reference anchor="json-pointer" target="path_to_url">
<front>
<title>JSON Pointer</title>
<author initials="P." surname="Bryan">
<organization>ForgeRock US, Inc.</organization>
</author>
<author initials="K." surname="Zyp">
<organization>SitePen (USA)</organization>
</author>
<date year="2011" month="October" />
</front>
</reference>
</references>
<references title="Informative References">
&rfc2616;
&rfc4627;
&rfc5226;
&iddiscovery;
&uritemplate;
&linkheader;
&html401;
&css21;
</references>
<section title="Change Log">
<t>
<list style="hanging">
<t hangText="draft-04">
<list style="symbols">
<t>Changed "required" attribute to an array of strings.</t>
<t>Removed "format" attribute.</t>
<t>Added "minProperties" and "maxProperties" attributes.</t>
<t>Replaced "slash-delimited" fragment resolution with "json-pointer".</t>
<t>Added "template" LDO attribute.</t>
<t>Removed irrelevant "Open Issues" section.</t>
<t>Merged Conventions and Terminology sections.</t>
<t>Defined terms used in specification.</t>
<t>Removed "integer" type in favor of {"type":"number", "divisibleBy":1}.</t>
<t>Restricted "type" to only the core JSON types.</t>
<t>Improved wording of many sections.</t>
</list>
</t>
<t hangText="draft-03">
<list style="symbols">
<t>Added example and verbiage to "extends" attribute.</t>
<t>Defined slash-delimited to use a leading slash.</t>
<t>Made "root" a relation instead of an attribute.</t>
<t>Removed address values, and MIME media type from format to reduce confusion (mediaType already exists, so it can be used for MIME types).</t>
<t>Added more explanation of nullability.</t>
<t>Removed "alternate" attribute.</t>
<t>Upper cased many normative usages of must, may, and should.</t>
<t>Replaced the link submission "properties" attribute to "schema" attribute.</t>
<t>Replaced "optional" attribute with "required" attribute.</t>
<t>Replaced "maximumCanEqual" attribute with "exclusiveMaximum" attribute.</t>
<t>Replaced "minimumCanEqual" attribute with "exclusiveMinimum" attribute.</t>
<t>Replaced "requires" attribute with "dependencies" attribute.</t>
<t>Moved "contentEncoding" attribute to hyper schema.</t>
<t>Added "additionalItems" attribute.</t>
<t>Added "id" attribute.</t>
<t>Switched self-referencing variable substitution from "-this" to "@" to align with reserved characters in URI template.</t>
<t>Added "patternProperties" attribute.</t>
<t>Schema URIs are now namespace versioned.</t>
<t>Added "$ref" and "$schema" attributes.</t>
</list>
</t>
<t hangText="draft-02">
<list style="symbols">
<t>Replaced "maxDecimal" attribute with "divisibleBy" attribute.</t>
<t>Added slash-delimited fragment resolution protocol and made it the default.</t>
<t>Added language about using links outside of schemas by referencing its normative URI.</t>
<t>Added "uniqueItems" attribute.</t>
<t>Added "targetSchema" attribute to link description object.</t>
</list>
</t>
<t hangText="draft-01">
<list style="symbols">
<t>Fixed category and updates from template.</t>
</list>
</t>
<t hangText="draft-00">
<list style="symbols">
<t>Initial draft.</t>
</list>
</t>
</list>
</t>
</section>
</back>
</rfc>
``` | /content/code_sandbox/APIs/movie_search_app/node_modules/request/node_modules/http-signature/node_modules/jsprim/node_modules/json-schema/draft-zyp-json-schema-04.xml | xml | 2016-11-28T19:37:42 | 2024-07-21T20:32:49 | webdevbootcamp | nax3t/webdevbootcamp | 1,802 | 11,249 |
```xml
/*
*
*
* path_to_url
*
* Unless required by applicable law or agreed to in writing, software
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
import { assert } from "chai";
import { mount } from "enzyme";
import * as React from "react";
import * as ReactDOM from "react-dom";
import { TextArea } from "../../src";
describe("<TextArea>", () => {
let containerElement: HTMLElement | undefined;
beforeEach(() => {
containerElement = document.createElement("div");
containerElement.setAttribute("style", "width: 1000px; height: 1000px;");
document.body.appendChild(containerElement);
});
afterEach(() => {
ReactDOM.unmountComponentAtNode(containerElement!);
containerElement!.remove();
});
it("No manual resizes when autoResize enabled", () => {
const wrapper = mount(<TextArea autoResize={true} />, { attachTo: containerElement });
const textarea = wrapper.find("textarea");
textarea.simulate("change", { target: { scrollHeight: 500 } });
assert.notEqual(textarea.getDOMNode<HTMLElement>().style.height, "500px");
});
it("resizes with large initial input when autoResize enabled", () => {
const initialValue = `Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Aenean finibus eget enim non accumsan.
Nunc lobortis luctus magna eleifend consectetur.
Suspendisse ut semper sem, quis efficitur felis.
Praesent suscipit nunc non semper tempor.
Sed eros sapien, semper sed imperdiet sed,
dictum eget purus. Donec porta accumsan pretium.
Fusce at felis mattis, tincidunt erat non, varius erat.`;
const wrapper = mount(<TextArea value={initialValue} autoResize={true} />, { attachTo: containerElement });
const textarea = wrapper.find("textarea");
const scrollHeightInPixels = `${textarea.getDOMNode<HTMLElement>().scrollHeight}px`;
assert.equal(textarea.getDOMNode<HTMLElement>().style.height, scrollHeightInPixels);
});
it("resizes with long text input when autoResize enabled", () => {
const initialValue = "A";
const nextValue = `Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Aenean finibus eget enim non accumsan.
Nunc lobortis luctus magna eleifend consectetur.
Suspendisse ut semper sem, quis efficitur felis.
Praesent suscipit nunc non semper tempor.
Sed eros sapien, semper sed imperdiet sed,
dictum eget purus. Donec porta accumsan pretium.
Fusce at felis mattis, tincidunt erat non, varius erat.`;
const wrapper = mount(<TextArea value={initialValue} autoResize={true} />, { attachTo: containerElement });
const textarea = wrapper.find("textarea");
const scrollHeightInPixelsBefore = `${textarea.getDOMNode<HTMLElement>().scrollHeight}px`;
wrapper.setProps({ value: nextValue }).update();
const scrollHeightInPixelsAfter = `${textarea.getDOMNode<HTMLElement>().scrollHeight}px`;
assert.notEqual(scrollHeightInPixelsBefore, scrollHeightInPixelsAfter);
});
// HACKHACK: skipped test, see path_to_url
// Note that growVertically is deprecated as of 28/07/2023
it.skip("can resize automatically", () => {
const wrapper = mount(<TextArea growVertically={true} />, { attachTo: containerElement });
const textarea = wrapper.find("textarea");
textarea.simulate("change", { target: { scrollHeight: 500 } });
assert.equal(textarea.getDOMNode<HTMLElement>().style.height, "500px");
});
it("doesn't resize by default", () => {
const wrapper = mount(<TextArea />, { attachTo: containerElement });
const textarea = wrapper.find("textarea");
textarea.simulate("change", {
target: {
scrollHeight: textarea.getDOMNode().scrollHeight,
},
});
assert.equal(textarea.getDOMNode<HTMLElement>().style.height, "");
});
it("doesn't clobber user-supplied styles", () => {
const wrapper = mount(<TextArea autoResize={true} style={{ marginTop: 10 }} />, {
attachTo: containerElement,
});
const textarea = wrapper.find("textarea");
textarea.simulate("change", { target: { scrollHeight: 500 } });
assert.equal(textarea.getDOMNode<HTMLElement>().style.marginTop, "10px");
});
// HACKHACK: skipped test, see path_to_url
// Note that growVertically is deprecated as of 28/07/2023
it.skip("can fit large initial content", () => {
const initialValue = `Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Aenean finibus eget enim non accumsan.
Nunc lobortis luctus magna eleifend consectetur.
Suspendisse ut semper sem, quis efficitur felis.
Praesent suscipit nunc non semper tempor.
Sed eros sapien, semper sed imperdiet sed,
dictum eget purus. Donec porta accumsan pretium.
Fusce at felis mattis, tincidunt erat non, varius erat.`;
const wrapper = mount(<TextArea growVertically={true} value={initialValue} style={{ marginTop: 10 }} />, {
attachTo: containerElement,
});
const textarea = wrapper.find("textarea");
const scrollHeightInPixels = `${textarea.getDOMNode<HTMLElement>().scrollHeight}px`;
assert.equal(textarea.getDOMNode<HTMLElement>().style.height, scrollHeightInPixels);
});
it("updates on ref change", () => {
let textArea: HTMLTextAreaElement | null = null;
let textAreaNew: HTMLTextAreaElement | null = null;
let callCount = 0;
let newCallCount = 0;
const textAreaRefCallback = (ref: HTMLTextAreaElement | null) => {
callCount += 1;
textArea = ref;
};
const textAreaNewRefCallback = (ref: HTMLTextAreaElement | null) => {
newCallCount += 1;
textAreaNew = ref;
};
const textAreawrapper = mount(<TextArea inputRef={textAreaRefCallback} />, { attachTo: containerElement });
assert.instanceOf(textArea, HTMLTextAreaElement);
assert.strictEqual(callCount, 1);
textAreawrapper.setProps({ inputRef: textAreaNewRefCallback });
textAreawrapper.update();
assert.strictEqual(callCount, 2);
assert.isNull(textArea);
assert.strictEqual(newCallCount, 1);
assert.instanceOf(textAreaNew, HTMLTextAreaElement);
});
it("accepts object refs created with React.createRef and updates on change", () => {
const textAreaRef = React.createRef<HTMLTextAreaElement>();
const textAreaNewRef = React.createRef<HTMLTextAreaElement>();
const textAreawrapper = mount(<TextArea inputRef={textAreaRef} />, { attachTo: containerElement });
assert.instanceOf(textAreaRef.current, HTMLTextAreaElement);
textAreawrapper.setProps({ inputRef: textAreaNewRef });
assert.isNull(textAreaRef.current);
assert.instanceOf(textAreaNewRef.current, HTMLTextAreaElement);
});
// HACKHACK: skipped test, see path_to_url
// Note that growVertically is deprecated as of 28/07/2023
it.skip("resizes when props change if growVertically is true", () => {
const initialText = "A";
const longText = "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA";
const wrapper = mount(<TextArea growVertically={true} value={initialText} />, { attachTo: containerElement });
const initialHeight = wrapper.find("textarea").getDOMNode<HTMLElement>().style.height;
wrapper.setProps({ value: longText }).update();
const newHeight = wrapper.find("textarea").getDOMNode<HTMLElement>().style.height;
assert.notEqual(newHeight, initialHeight);
});
});
``` | /content/code_sandbox/packages/core/test/forms/textAreaTests.tsx | xml | 2016-10-25T21:17:50 | 2024-08-16T15:14:48 | blueprint | palantir/blueprint | 20,593 | 1,766 |
```xml
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="path_to_url">
<Import Project="..\packages\Microsoft.Windows.CppWinRT.2.0.220531.1\build\native\Microsoft.Windows.CppWinRT.props" Condition="Exists('..\packages\Microsoft.Windows.CppWinRT.2.0.220531.1\build\native\Microsoft.Windows.CppWinRT.props')" />
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<VCProjectVersion>16.0</VCProjectVersion>
<Keyword>Win32Proj</Keyword>
<ProjectGuid>{dfed4b7e-d04c-442b-bb48-5b6068a6b31b}</ProjectGuid>
<RootNamespace>common</RootNamespace>
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v143</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v143</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>Utility</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v143</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>Utility</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v143</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings">
</ImportGroup>
<ImportGroup Label="Shared">
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<IncludePath>..\deps\json\include;..\deps\spdlog\include;..\deps\SFML\include;..\deps\imgui;..\deps\WinReg;..\deps\ValveFileVDF;$(IncludePath)</IncludePath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<IncludePath>..\deps\json\include;..\deps\spdlog\include;..\deps\SFML\include;..\deps\imgui;..\deps\WinReg;..\deps\ValveFileVDF;$(IncludePath)</IncludePath>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<SDLCheck>true</SDLCheck>
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<ConformanceMode>true</ConformanceMode>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<SDLCheck>true</SDLCheck>
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<ConformanceMode>true</ConformanceMode>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
<GenerateDebugInformation>true</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<SDLCheck>true</SDLCheck>
<PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<ConformanceMode>true</ConformanceMode>
<LanguageStandard>stdcpp20</LanguageStandard>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<SDLCheck>true</SDLCheck>
<PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<ConformanceMode>true</ConformanceMode>
<LanguageStandard>stdcpp20</LanguageStandard>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
<GenerateDebugInformation>true</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClInclude Include="HidHide.h" />
<ClInclude Include="nlohmann_json_wstring.h" />
<ClInclude Include="Settings.h" />
<ClInclude Include="steam_util.h" />
<ClInclude Include="UnhookUtil.h" />
<ClInclude Include="util.h" />
</ItemGroup>
<ItemGroup>
<ClCompile Include="HidHide.cpp" />
<ClCompile Include="UnhookUtil.cpp" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
<Import Project="..\packages\Microsoft.Windows.CppWinRT.2.0.220531.1\build\native\Microsoft.Windows.CppWinRT.targets" Condition="Exists('..\packages\Microsoft.Windows.CppWinRT.2.0.220531.1\build\native\Microsoft.Windows.CppWinRT.targets')" />
</ImportGroup>
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
<PropertyGroup>
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see path_to_url The missing file is {0}.</ErrorText>
</PropertyGroup>
<Error Condition="!Exists('..\packages\Microsoft.Windows.CppWinRT.2.0.220531.1\build\native\Microsoft.Windows.CppWinRT.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.Windows.CppWinRT.2.0.220531.1\build\native\Microsoft.Windows.CppWinRT.props'))" />
<Error Condition="!Exists('..\packages\Microsoft.Windows.CppWinRT.2.0.220531.1\build\native\Microsoft.Windows.CppWinRT.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.Windows.CppWinRT.2.0.220531.1\build\native\Microsoft.Windows.CppWinRT.targets'))" />
</Target>
</Project>
``` | /content/code_sandbox/common/common.vcxproj | xml | 2016-11-18T00:46:26 | 2024-08-12T19:26:08 | GlosSI | Alia5/GlosSI | 1,642 | 2,245 |
```xml
export { TooltipWithChildren } from './TooltipWithChildren';
export type { Position } from './TooltipWithChildren';
``` | /content/code_sandbox/app/react/components/Tip/TooltipWithChildren/index.ts | xml | 2016-05-19T20:15:28 | 2024-08-16T19:15:14 | portainer | portainer/portainer | 30,083 | 24 |
```xml
<shapes name="mxGraph.signs.transportation">
<shape name="4 Wheeler" h="71.31" w="98.88" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.5" y="0" perimeter="0" name="N"/>
<constraint x="0.5" y="0.735" perimeter="0" name="S"/>
<constraint x="0.05" y="0.365" perimeter="0" name="W"/>
<constraint x="0.975" y="0.42" perimeter="0" name="E"/>
<constraint x="0.06" y="0.95" perimeter="0" name="SW"/>
<constraint x="0.79" y="0.07" perimeter="0" name="NE"/>
<constraint x="0.95" y="0.95" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="78.21" y="17.59"/>
<line x="78.21" y="5.04"/>
<line x="77.08" y="5.04"/>
<curve x1="73.68" y1="5.04" x2="70.94" y2="7.85" x3="70.94" y3="11.31"/>
<curve x1="70.94" y1="14.78" x2="73.68" y2="17.58" x3="77.08" y3="17.58"/>
<line x="78.21" y="17.58"/>
<close/>
<move x="68.95" y="14.73"/>
<line x="63.59" y="3.77"/>
<curve x1="62.4" y1="1.52" x2="60.1" y2="0" x3="57.4" y3="0"/>
<line x="44.95" y="0"/>
<curve x1="43.78" y1="0" x2="42.85" y2="0.96" x3="42.85" y3="2.16"/>
<curve x1="42.85" y1="3.34" x2="43.78" y2="4.3" x3="44.95" y3="4.3"/>
<line x="57.4" y="4.29"/>
<curve x1="58.41" y1="4.29" x2="59.53" y2="4.99" x3="59.97" y3="5.97"/>
<line x="63.39" y="12.96"/>
<line x="68.95" y="14.73"/>
<close/>
<move x="93.68" y="26.46"/>
<curve x1="95.3" y1="26.93" x2="96.49" y2="28.47" x3="96.49" y3="30.27"/>
<line x="87.43" y="30.28"/>
<curve x1="75.5" y1="30.28" x2="65.81" y2="40.2" x3="65.81" y3="52.4"/>
<line x="36.29" y="52.4"/>
<curve x1="36.29" y1="42.59" x2="30.05" y2="34.29" x3="21.43" y3="31.38"/>
<line x="5.16" y="25.9"/>
<line x="7.86" y="21.69"/>
<curve x1="8.81" y1="20.22" x2="10.46" y2="19.25" x3="12.33" y3="19.25"/>
<curve x1="12.75" y1="19.25" x2="13.14" y2="19.29" x3="13.49" y3="19.36"/>
<line x="49.73" y="30.85"/>
<curve x1="50.18" y1="30.99" x2="50.63" y2="31.07" x3="51.13" y3="31.07"/>
<curve x1="52.77" y1="31.07" x2="54.19" y2="30.22" x3="55.05" y3="28.92"/>
<line x="63.28" y="16.75"/>
<line x="93.68" y="26.46"/>
<close/>
<move x="84.15" y="61.88"/>
<curve x1="87.21" y1="61.88" x2="89.67" y2="59.34" x3="89.67" y3="56.25"/>
<curve x1="89.67" y1="53.12" x2="87.21" y2="50.6" x3="84.15" y3="50.6"/>
<curve x1="81.13" y1="50.6" x2="78.67" y2="53.11" x3="78.67" y3="56.25"/>
<curve x1="78.67" y1="59.34" x2="81.13" y2="61.88" x3="84.15" y3="61.88"/>
<move x="69.41" y="56.24"/>
<curve x1="69.41" y1="47.9" x2="76.01" y2="41.17" x3="84.15" y3="41.17"/>
<curve x1="92.28" y1="41.17" x2="98.88" y2="47.9" x3="98.88" y3="56.24"/>
<curve x1="98.88" y1="64.56" x2="92.28" y2="71.31" x3="84.15" y3="71.31"/>
<curve x1="76.02" y1="71.31" x2="69.41" y2="64.56" x3="69.41" y3="56.24"/>
<move x="16.25" y="60.83"/>
<curve x1="19.58" y1="60.83" x2="22.3" y2="58.07" x3="22.3" y3="54.65"/>
<curve x1="22.3" y1="51.22" x2="19.58" y2="48.45" x3="16.25" y3="48.45"/>
<curve x1="12.89" y1="48.45" x2="10.19" y2="51.22" x3="10.19" y3="54.65"/>
<curve x1="10.19" y1="58.07" x2="12.89" y2="60.83" x3="16.25" y3="60.83"/>
<move x="0" y="54.63"/>
<curve x1="0" y1="45.5" x2="7.25" y2="38.07" x3="16.21" y3="38.07"/>
<curve x1="25.18" y1="38.07" x2="32.41" y2="45.5" x3="32.41" y3="54.63"/>
<curve x1="32.41" y1="63.78" x2="25.18" y2="71.22" x3="16.21" y3="71.22"/>
<curve x1="7.26" y1="71.22" x2="0" y2="63.79" x3="0" y3="54.63"/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Airbag" h="96.45" w="103.27" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.5" y="0.03" perimeter="0" name="N"/>
<constraint x="0.25" y="0.5" perimeter="0" name="W"/>
<constraint x="0.735" y="0.5" perimeter="0" name="E"/>
<constraint x="0.225" y="0.1" perimeter="0" name="NW"/>
<constraint x="0.09" y="0.955" perimeter="0" name="SW"/>
<constraint x="0.985" y="0.19" perimeter="0" name="NE"/>
<constraint x="0.73" y="0.95" perimeter="0" name="SE"/>
</connections>
<foreground>
<path>
<move x="47.71" y="52.71"/>
<curve x1="55.83" y1="65.12" x2="63.94" y2="77.53" x3="72.06" y3="89.93"/>
<curve x1="74.59" y1="93.79" x2="80.74" y2="90.17" x3="78.19" y3="86.28"/>
<curve x1="70.08" y1="73.87" x2="61.96" y2="61.46" x3="53.84" y3="49.05"/>
<curve x1="51.32" y1="45.19" x2="45.16" y2="48.81" x3="47.71" y3="52.71"/>
<line x="47.71" y="52.71"/>
<close/>
</path>
<fillstroke/>
<ellipse x="63.95" y="6.65" w="18.94" h="18.94"/>
<fillstroke/>
<ellipse x="19.67" y="0" w="43.28" h="43.28"/>
<fillstroke/>
<path>
<move x="97.08" y="16.45"/>
<curve x1="90.69" y1="20.61" x2="84.83" y2="24.43" x3="78.45" y3="28.59"/>
<curve x1="79.16" y1="30.11" x2="79.37" y2="32.44" x3="79.2" y3="35.26"/>
<curve x1="86.33" y1="30.61" x2="92.94" y2="26.31" x3="100.07" y3="21.67"/>
<curve x1="103.27" y1="19.57" x2="100.31" y2="14.34" x3="97.08" y3="16.45"/>
<close/>
</path>
<fillstroke/>
<path>
<move x="45.98" y="52.36"/>
<curve x1="39.92" y1="50.85" x2="36.72" y2="50.05" x3="29.8" y3="48.33"/>
<curve x1="26.94" y1="47.62" x2="23.98" y2="48.77" x3="22.45" y3="51.38"/>
<curve x1="16.4" y1="61.72" x2="10.36" y2="72.07" x3="4.31" y3="82.41"/>
<curve x1="0" y1="89.78" x2="11.26" y2="96.45" x3="15.55" y3="89.11"/>
<curve x1="20.76" y1="80.19" x2="25.98" y2="71.26" x3="31.2" y3="62.34"/>
<curve x1="38.57" y1="64.18" x2="49.2" y2="69.89" x3="57.79" y3="70.36"/>
<curve x1="53.92" y1="64.44" x2="49.85" y2="58.28" x3="45.98" y3="52.36"/>
<close/>
</path>
<fillstroke/>
<path>
<move x="67.13" y="66.84"/>
<curve x1="75.47" y1="58.35" x2="82.56" y2="28.38" x3="74.9" y3="27.29"/>
<curve x1="65.79" y1="25.99" x2="58.73" y2="37.88" x3="54.23" y3="47.19"/>
<curve x1="58.41" y1="53.58" x2="62.95" y2="60.45" x3="67.13" y3="66.84"/>
<close/>
</path>
<fillstroke/>
</foreground>
</shape>
<shape name="Airplane 1" h="35.1" w="99.81" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.5" y="0.27" perimeter="0" name="N"/>
<constraint x="0.5" y="0.79" perimeter="0" name="S"/>
<constraint x="0.03" y="0.54" perimeter="0" name="W"/>
<constraint x="0.81" y="0.5" perimeter="0" name="E"/>
<constraint x="0.08" y="0.9" perimeter="0" name="SW"/>
<constraint x="0.995" y="0.18" perimeter="0" name="NE"/>
</connections>
<background>
<path>
<move x="99.04" y="5.72"/>
<curve x1="98.33" y1="3.11" x2="91.73" y2="2.89" x3="89.08" y3="3.78"/>
<curve x1="79.43" y1="7.02" x2="69.77" y2="10.26" x3="60.12" y3="13.5"/>
<line x="26.61" y="0"/>
<line x="23.07" y="3.8"/>
<line x="37.41" y="21.18"/>
<curve x1="28.17" y1="24.4" x2="11.24" y2="30.36" x3="8.16" y3="31.39"/>
<curve x1="5.51" y1="32.28" x2="25.25" y2="35.1" x3="29.78" y3="34.35"/>
<curve x1="29.78" y1="34.35" x2="64.55" y2="22.91" x3="79.93" y3="17.75"/>
<curve x1="83.88" y1="16.42" x2="87.84" y2="15.1" x3="91.79" y3="13.77"/>
<curve x1="94.43" y1="12.87" x2="99.81" y2="8.55" x3="99.04" y3="5.72"/>
<close/>
<move x="2.69" y="19.03"/>
<line x="0" y="21.53"/>
<line x="7.12" y="29.92"/>
<line x="17.45" y="26.25"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Airplane 2" h="57.29" w="102.18" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.395" y="0" perimeter="0" name="N"/>
<constraint x="0.5" y="0.86" perimeter="0" name="S"/>
<constraint x="0.14" y="0.5" perimeter="0" name="W"/>
<constraint x="0.565" y="0.5" perimeter="0" name="E"/>
<constraint x="0.02" y="0.02" perimeter="0" name="NW"/>
<constraint x="0.97" y="0.97" perimeter="0" name="SE"/>
</connections>
<foreground>
<path>
<move x="101.09" y="54.01"/>
<curve x1="102.18" y1="51.2" x2="96.44" y2="46.55" x3="93.48" y3="45.55"/>
<curve x1="82.71" y1="41.93" x2="71.95" y2="38.31" x3="61.19" y3="34.69"/>
<line x="40.22" y="0"/>
<line x="34.54" y="1.01"/>
<line x="35.83" y="26.22"/>
<curve x1="25.44" y1="22.86" x2="6.38" y2="16.75" x3="2.95" y3="15.6"/>
<curve x1="0" y1="14.61" x2="15.75" y2="30.46" x3="20.29" y3="32.84"/>
<curve x1="20.29" y1="32.84" x2="58.91" y2="46.09" x3="76.06" y3="51.85"/>
<curve x1="80.47" y1="53.33" x2="84.87" y2="54.82" x3="89.28" y3="56.3"/>
<curve x1="92.24" y1="57.29" x2="99.9" y2="57.06" x3="101.09" y3="54.01"/>
<close/>
</path>
<fillstroke/>
<path>
<move x="6.25" y="0.86"/>
<line x="2.2" y="1.28"/>
<line x="3" y="13.58"/>
<line x="14.65" y="17.27"/>
<close/>
</path>
<fillstroke/>
<ellipse x="49.75" y="45.6" w="3.78" h="3.78"/>
<fillstroke/>
<ellipse x="44.4" y="43.69" w="3.78" h="3.78"/>
<fillstroke/>
</foreground>
</shape>
<shape name="Airplane 3" h="98.87" w="97.96" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.5" y="0" perimeter="0" name="N"/>
<constraint x="0.5" y="0.92" perimeter="0" name="S"/>
<constraint x="0.235" y="0.5" perimeter="0" name="W"/>
<constraint x="0.765" y="0.5" perimeter="0" name="E"/>
<constraint x="0" y="0.78" perimeter="0" name="SW"/>
<constraint x="1" y="0.78" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="50.91" y="0.87"/>
<curve x1="50.43" y1="0.32" x2="49.72" y2="0" x3="48.98" y3="0"/>
<curve x1="48.24" y1="0" x2="47.53" y2="0.32" x3="47.04" y3="0.88"/>
<curve x1="44.34" y1="3.99" x2="42.85" y2="7.95" x3="42.85" y3="12.05"/>
<line x="42.85" y="34.3"/>
<line x="0" y="67.59"/>
<line x="0" y="77.68"/>
<line x="42.86" y="61.54"/>
<line x="42.86" y="76.67"/>
<curve x1="42.86" y1="78.08" x2="43.21" y2="79.46" x3="43.88" y3="80.71"/>
<line x="28.57" y="90.8"/>
<line x="28.57" y="98.87"/>
<line x="48.98" y="90.8"/>
<line x="69.38" y="98.87"/>
<line x="69.38" y="90.8"/>
<line x="54.08" y="80.71"/>
<curve x1="54.75" y1="79.47" x2="55.1" y2="78.08" x3="55.1" y3="76.67"/>
<line x="55.1" y="61.54"/>
<line x="97.96" y="77.68"/>
<line x="97.96" y="67.59"/>
<line x="55.1" y="34.3"/>
<line x="55.1" y="12.05"/>
<curve x1="55.1" y1="7.95" x2="53.61" y2="3.98" x3="50.91" y3="0.87"/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Airplane 4" h="98.83" w="91.61" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.5" y="0" perimeter="0" name="N"/>
<constraint x="0.5" y="1" perimeter="0" name="S"/>
<constraint x="0.18" y="0.5" perimeter="0" name="W"/>
<constraint x="0.82" y="0.5" perimeter="0" name="E"/>
<constraint x="0" y="0.73" perimeter="0" name="SW"/>
<constraint x="1" y="0.73" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="52.03" y="33.07"/>
<line x="52.03" y="14.48"/>
<line x="46.78" y="0.7"/>
<line x="45.8" y="0"/>
<line x="45.8" y="0"/>
<line x="45.8" y="0"/>
<line x="44.83" y="0.7"/>
<line x="39.57" y="14.48"/>
<line x="39.57" y="33.07"/>
<line x="0" y="61.78"/>
<line x="0" y="72.12"/>
<line x="24.98" y="57.66"/>
<line x="39.57" y="57.66"/>
<line x="43.32" y="82.35"/>
<line x="29.15" y="88.51"/>
<line x="29.15" y="94.71"/>
<line x="44.56" y="90.59"/>
<line x="45.8" y="98.83"/>
<line x="45.8" y="98.83"/>
<line x="45.8" y="98.83"/>
<line x="47.04" y="90.59"/>
<line x="62.45" y="94.71"/>
<line x="62.45" y="88.51"/>
<line x="48.29" y="82.35"/>
<line x="52.03" y="57.66"/>
<line x="66.62" y="57.66"/>
<line x="91.61" y="72.12"/>
<line x="91.61" y="61.78"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Airplane 5" h="98.96" w="95.15" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.5" y="0" perimeter="0" name="N"/>
<constraint x="0.5" y="0.96" perimeter="0" name="S"/>
<constraint x="0.17" y="0.5" perimeter="0" name="W"/>
<constraint x="0.83" y="0.5" perimeter="0" name="E"/>
<constraint x="0" y="0.7" perimeter="0" name="SW"/>
<constraint x="1" y="0.7" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="51.72" y="83.92"/>
<curve x1="54.44" y1="67.4" x2="54.98" y2="48.42" x3="54.98" y3="48.42"/>
<line x="95.15" y="69.54"/>
<line x="93.41" y="62.04"/>
<line x="55.2" y="30.16"/>
<curve x1="54.01" y1="8.68" x2="51.29" y2="2.26" x3="51.29" y3="2.26"/>
<curve x1="50.19" y1="0" x2="47.6" y2="0.11" x3="47.6" y3="0.11"/>
<line x="47.58" y="0.11"/>
<line x="47.56" y="0.11"/>
<curve x1="47.56" y1="0.11" x2="44.96" y2="0" x3="43.87" y3="2.26"/>
<curve x1="43.87" y1="2.26" x2="41.15" y2="8.69" x3="39.96" y3="30.16"/>
<line x="1.74" y="62.05"/>
<line x="0" y="69.54"/>
<line x="40.17" y="48.42"/>
<curve x1="40.17" y1="48.42" x2="40.72" y2="67.41" x3="43.43" y3="83.92"/>
<curve x1="43.43" y1="83.92" x2="31.45" y2="94.66" x3="31.67" y3="95.41"/>
<line x="31.67" y="98.42"/>
<curve x1="31.67" y1="98.42" x2="32.21" y2="98.96" x3="34.07" y3="98.63"/>
<line x="44.51" y="95.09"/>
<curve x1="44.51" y1="95.09" x2="46.49" y2="94.66" x3="47.58" y3="94.77"/>
<curve x1="48.68" y1="94.65" x2="50.65" y2="95.09" x3="50.65" y3="95.09"/>
<line x="61.08" y="98.63"/>
<curve x1="62.94" y1="98.96" x2="63.48" y2="98.42" x3="63.48" y3="98.42"/>
<line x="63.48" y="95.41"/>
<curve x1="63.71" y1="94.66" x2="51.72" y2="83.92" x3="51.72" y3="83.92"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Airplane 6" h="101.12" w="97.24" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.5" y="0.02" perimeter="0" name="N"/>
<constraint x="0.5" y="0.955" perimeter="0" name="S"/>
<constraint x="0.225" y="0.5" perimeter="0" name="W"/>
<constraint x="0.775" y="0.5" perimeter="0" name="E"/>
<constraint x="0" y="0.75" perimeter="0" name="SW"/>
<constraint x="1" y="0.75" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="42.73" y="7.34"/>
<curve x1="42.74" y1="0" x2="53.87" y2="0" x3="53.88" y3="7.55"/>
<line x="53.88" y="38.28"/>
<line x="97.24" y="64.2"/>
<line x="97.24" y="75.53"/>
<line x="54.09" y="61.45"/>
<line x="54.09" y="84.42"/>
<line x="64.04" y="92.18"/>
<line x="64.04" y="101.12"/>
<line x="48.67" y="96.41"/>
<line x="33.25" y="101.12"/>
<line x="33.25" y="92.17"/>
<line x="43.15" y="84.41"/>
<line x="43.15" y="61.45"/>
<line x="0" y="75.51"/>
<line x="0" y="64.19"/>
<line x="42.73" y="38.27"/>
<line x="42.73" y="7.34"/>
<line x="42.73" y="7.34"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Airplane 7" h="44.36" w="100.29" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.5" y="0.255" perimeter="0" name="N"/>
<constraint x="0.39" y="1" perimeter="0" name="S"/>
<constraint x="0.02" y="0.5" perimeter="0" name="W"/>
<constraint x="0.63" y="0.5" perimeter="0" name="E"/>
<constraint x="0.23" y="0.25" perimeter="0" name="NW"/>
<constraint x="0.97" y="0.02" perimeter="0" name="NE"/>
</connections>
<background>
<path>
<move x="15.76" y="14.29"/>
<line x="23.41" y="11.06"/>
<line x="58.18" y="11.55"/>
<line x="81.26" y="2.54"/>
<line x="81.26" y="2.54"/>
<curve x1="82.82" y1="1.89" x2="84.19" y2="1.41" x3="85.44" y3="1.05"/>
<curve x1="86.69" y1="0.69" x2="87.27" y2="0.48" x3="88.72" y3="0.38"/>
<curve x1="90.14" y1="0.25" x2="92.33" y2="0" x3="93.99" y3="0.28"/>
<curve x1="95.61" y1="0.5" x2="97.58" y2="1.02" x3="98.49" y3="1.95"/>
<curve x1="99.41" y1="2.91" x2="100.29" y2="4.46" x3="99.33" y3="5.92"/>
<curve x1="98.29" y1="7.31" x2="98.41" y2="7.81" x3="92.46" y3="10.37"/>
<curve x1="86.44" y1="12.94" x2="77.05" y2="16.44" x3="63.74" y3="21.14"/>
<line x="63.74" y="21.14"/>
<line x="51.19" y="39.85"/>
<line x="39.33" y="44.36"/>
<line x="46.8" y="27.12"/>
<line x="28.99" y="32.6"/>
<line x="28.99" y="32.6"/>
<curve x1="22.56" y1="30.79" x2="17.2" y2="28.99" x3="12.61" y3="27.21"/>
<curve x1="8" y1="25.4" x2="3.42" y2="23.41" x3="1.69" y3="21.92"/>
<curve x1="0" y1="20.44" x2="1.4" y2="18.95" x3="2.46" y3="18.4"/>
<curve x1="3.51" y1="17.84" x2="3.77" y2="17.73" x3="7.92" y3="18.61"/>
<curve x1="12.09" y1="19.45" x2="18.4" y2="21.08" x3="27.17" y3="23.5"/>
<line x="27.17" y="23.5"/>
<line x="38.75" y="19.58"/>
<line x="38.75" y="19.58"/>
<curve x1="31.08" y1="17.83" x2="23.42" y2="16.06" x3="15.76" y3="14.29"/>
<line x="15.76" y="14.29"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Ambulance" h="68.39" w="99.26" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.59" y="0" perimeter="0" name="N"/>
<constraint x="0.5" y="0.86" perimeter="0" name="S"/>
<constraint x="0" y="0.5" perimeter="0" name="W"/>
<constraint x="0.95" y="0.5" perimeter="0" name="E"/>
<constraint x="0.02" y="0.15" perimeter="0" name="NW"/>
<constraint x="0.22" y="1" perimeter="0" name="SW"/>
<constraint x="0.81" y="0.15" perimeter="0" name="NE"/>
<constraint x="0.76" y="1" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="51.95" y="7.46"/>
<line x="51.95" y="5.43"/>
<line x="54.57" y="5.43"/>
<line x="54.57" y="4.14"/>
<curve x1="54.57" y1="1.85" x2="56.54" y2="0" x3="58.98" y3="0"/>
<curve x1="61.42" y1="0" x2="63.39" y2="1.85" x3="63.39" y3="4.14"/>
<line x="63.39" y="5.43"/>
<line x="65.96" y="5.43"/>
<line x="65.96" y="7.46"/>
<line x="51.95" y="7.46"/>
<close/>
<move x="75.08" y="49.4"/>
<curve x1="69.91" y1="49.4" x2="65.71" y2="53.65" x3="65.71" y3="58.89"/>
<curve x1="65.71" y1="64.13" x2="69.9" y2="68.39" x3="75.08" y3="68.39"/>
<curve x1="80.25" y1="68.39" x2="84.44" y2="64.14" x3="84.44" y3="58.89"/>
<curve x1="84.44" y1="53.65" x2="80.25" y2="49.4" x3="75.08" y3="49.4"/>
<close/>
<move x="75.08" y="63.44"/>
<curve x1="72.6" y1="63.44" x2="70.6" y2="61.41" x3="70.6" y3="58.9"/>
<curve x1="70.6" y1="56.39" x2="72.61" y2="54.36" x3="75.08" y3="54.36"/>
<curve x1="77.55" y1="54.36" x2="79.56" y2="56.39" x3="79.56" y3="58.9"/>
<curve x1="79.56" y1="61.41" x2="77.55" y2="63.44" x3="75.08" y3="63.44"/>
<close/>
<move x="21.45" y="49.31"/>
<curve x1="16.28" y1="49.31" x2="12.08" y2="53.56" x3="12.08" y3="58.8"/>
<curve x1="12.08" y1="64.04" x2="16.27" y2="68.29" x3="21.45" y3="68.29"/>
<curve x1="26.62" y1="68.29" x2="30.82" y2="64.04" x3="30.82" y3="58.8"/>
<curve x1="30.81" y1="53.56" x2="26.62" y2="49.31" x3="21.45" y3="49.31"/>
<close/>
<move x="21.47" y="63.36"/>
<curve x1="19" y1="63.36" x2="16.99" y2="61.33" x3="16.99" y3="58.82"/>
<curve x1="16.99" y1="56.31" x2="19" y2="54.28" x3="21.47" y3="54.28"/>
<curve x1="23.94" y1="54.28" x2="25.95" y2="56.31" x3="25.95" y3="58.82"/>
<curve x1="25.95" y1="61.33" x2="23.94" y2="63.36" x3="21.47" y3="63.36"/>
<close/>
<move x="90.8" y="31.9"/>
<curve x1="93.6" y1="32.45" x2="95.27" y2="33.68" x3="96.54" y3="40.67"/>
<line x="98.54" y="53.3"/>
<curve x1="99.26" y1="57.41" x2="96.97" y2="58.91" x3="94.11" y3="58.91"/>
<line x="87.24" y="58.91"/>
<curve x1="87.24" y1="52.1" x2="81.8" y2="46.56" x3="75.08" y3="46.56"/>
<curve x1="68.36" y1="46.56" x2="62.91" y2="52.1" x3="62.91" y3="58.91"/>
<line x="33.58" y="58.91"/>
<curve x1="33.58" y1="52.1" x2="28.13" y2="46.56" x3="21.41" y3="46.56"/>
<curve x1="14.69" y1="46.56" x2="9.24" y2="52.1" x3="9.24" y3="58.91"/>
<line x="3.56" y="58.91"/>
<curve x1="1.56" y1="58.91" x2="0" y2="57.38" x3="0" y3="55.39"/>
<line x="0" y="13.87"/>
<curve x1="0" y1="11.61" x2="1.76" y2="9.79" x3="3.92" y3="9.79"/>
<line x="67.22" y="9.79"/>
<line x="77.56" y="9.79"/>
<curve x1="80.36" y1="9.79" x2="82.4" y2="11.2" x3="83.42" y3="13.67"/>
<line x="90.8" y="31.9"/>
<close/>
<move x="66.26" y="14.02"/>
<line x="66.26" y="31.27"/>
<line x="85.94" y="31.27"/>
<line x="79.04" y="14.02"/>
<line x="66.26" y="14.02"/>
<close/>
<move x="48.65" y="29.05"/>
<line x="48.65" y="18.47"/>
<line x="38.21" y="18.47"/>
<line x="38.21" y="29.05"/>
<line x="27.76" y="29.05"/>
<line x="27.76" y="39.64"/>
<line x="38.21" y="39.64"/>
<line x="38.21" y="50.22"/>
<line x="48.65" y="50.22"/>
<line x="48.65" y="39.64"/>
<line x="59.09" y="39.64"/>
<line x="59.09" y="29.05"/>
<line x="48.65" y="29.05"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Anchor 1" h="98.66" w="92.2" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.5" y="0" perimeter="0" name="N"/>
<constraint x="0.5" y="1" perimeter="0" name="S"/>
<constraint x="0.06" y="0.47" perimeter="0" name="W"/>
<constraint x="0.94" y="0.47" perimeter="0" name="E"/>
<constraint x="0.16" y="0.84" perimeter="0" name="SW"/>
<constraint x="0.84" y="0.84" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="46.34" y="19.19"/>
<curve x1="43.24" y1="19.19" x2="40.7" y2="16.68" x3="40.7" y3="13.6"/>
<curve x1="40.7" y1="10.5" x2="43.24" y2="8" x3="46.34" y3="8"/>
<curve x1="49.48" y1="8" x2="52.01" y2="10.49" x3="52.01" y3="13.6"/>
<curve x1="52.01" y1="16.68" x2="49.49" y2="19.19" x3="46.34" y3="19.19"/>
<close/>
<move x="92.1" y="68.12"/>
<line x="89.08" y="49.56"/>
<curve x1="88.73" y1="47.83" x2="87.19" y2="46.5" x3="85.36" y3="46.5"/>
<curve x1="84.25" y1="46.5" x2="83.26" y2="46.97" x3="82.54" y3="47.72"/>
<line x="68.64" y="60.6"/>
<curve x1="68.41" y1="60.79" x2="68.19" y2="61.01" x3="67.99" y3="61.29"/>
<curve x1="66.68" y1="63.05" x2="67.06" y2="65.54" x3="68.84" y3="66.85"/>
<curve x1="69.18" y1="67.1" x2="69.55" y2="67.26" x3="69.92" y3="67.41"/>
<line x="73.41" y="68.56"/>
<curve x1="70.04" y1="77.94" x2="61.82" y2="85.07" x3="51.73" y3="87.05"/>
<line x="51.75" y="26.13"/>
<curve x1="56.7" y1="24.05" x2="60.12" y2="19.22" x3="60.12" y3="13.61"/>
<curve x1="60.13" y1="6.08" x2="53.97" y2="0" x3="46.34" y3="0"/>
<curve x1="38.75" y1="0" x2="32.56" y2="6.08" x3="32.56" y3="13.61"/>
<curve x1="32.56" y1="19.22" x2="36.1" y2="24.05" x3="41.03" y3="26.13"/>
<line x="41.05" y="87.14"/>
<curve x1="30.74" y1="85.31" x2="22.2" y2="78.11" x3="18.75" y3="68.56"/>
<line x="22.27" y="67.41"/>
<curve x1="22.64" y1="67.26" x2="23.02" y2="67.1" x3="23.36" y3="66.85"/>
<curve x1="25.14" y1="65.54" x2="25.54" y2="63.05" x3="24.2" y3="61.29"/>
<curve x1="24" y1="61.02" x2="23.8" y2="60.8" x3="23.56" y3="60.6"/>
<line x="9.65" y="47.73"/>
<curve x1="8.96" y1="46.98" x2="7.95" y2="46.51" x3="6.85" y3="46.51"/>
<curve x1="5" y1="46.51" x2="3.44" y2="47.83" x3="3.11" y3="49.56"/>
<line x="0.09" y="68.12"/>
<curve x1="0.02" y1="68.41" x2="0" y2="68.73" x3="0" y3="69.05"/>
<curve x1="0" y1="71.25" x2="1.8" y2="73.03" x3="4.03" y3="73.03"/>
<curve x1="4.45" y1="73.03" x2="4.85" y2="72.98" x3="5.22" y3="72.86"/>
<line x="8.49" y="71.81"/>
<curve x1="13.68" y1="87.39" x2="28.56" y2="98.66" x3="46.1" y3="98.66"/>
<curve x1="63.64" y1="98.66" x2="78.52" y2="87.38" x3="83.71" y3="71.78"/>
<line x="86.97" y="72.85"/>
<curve x1="87.34" y1="72.98" x2="87.74" y2="73.02" x3="88.16" y3="73.02"/>
<curve x1="90.39" y1="73.02" x2="92.2" y2="71.24" x3="92.2" y3="69.04"/>
<curve x1="92.2" y1="68.73" x2="92.17" y2="68.41" x3="92.1" y3="68.12"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Anchor 2" h="98.67" w="94.9" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.5" y="0" perimeter="0" name="N"/>
<constraint x="0.5" y="1" perimeter="0" name="S"/>
<constraint x="0.055" y="0.53" perimeter="0" name="W"/>
<constraint x="0.945" y="0.53" perimeter="0" name="E"/>
<constraint x="0.12" y="0.27" perimeter="0" name="NW"/>
<constraint x="0.88" y="0.27" perimeter="0" name="NE"/>
<constraint x="0.2" y="0.84" perimeter="0" name="SW"/>
<constraint x="0.8" y="0.84" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="47.46" y="0"/>
<curve x1="41.07" y1="0" x2="35.88" y2="4.94" x3="35.88" y3="11.05"/>
<curve x1="35.88" y1="15.54" x2="38.7" y2="19.42" x3="42.72" y3="21.14"/>
<line x="42.6" y="26.86"/>
<line x="11.54" y="26.86"/>
<line x="11.54" y="32.91"/>
<line x="42.47" y="32.91"/>
<line x="41.53" y="76.79"/>
<curve x1="41.51" y1="77.68" x2="41.54" y2="86.59" x3="29.13" y3="80.43"/>
<curve x1="16.68" y1="74.25" x2="23.72" y2="67.25" x3="24.55" y3="67.04"/>
<curve x1="17.24" y1="64.82" x2="10.61" y2="58.64" x3="5.25" y3="52.3"/>
<curve x1="0" y1="63.61" x2="9.41" y2="75.67" x3="9.86" y3="77.39"/>
<curve x1="10.99" y1="76.2" x2="12.68" y2="76.39" x3="13.71" y3="76.55"/>
<curve x1="26.39" y1="95.62" x2="43" y2="93.34" x3="47.46" y3="98.67"/>
<curve x1="51.92" y1="93.34" x2="68.52" y2="95.62" x3="81.19" y3="76.56"/>
<curve x1="82.23" y1="76.39" x2="83.91" y2="76.2" x3="85.04" y3="77.4"/>
<curve x1="85.49" y1="75.68" x2="94.9" y2="63.61" x3="89.65" y3="52.31"/>
<curve x1="84.3" y1="58.65" x2="77.67" y2="64.83" x3="70.35" y3="67.05"/>
<curve x1="71.19" y1="67.26" x2="78.22" y2="74.26" x3="65.77" y3="80.44"/>
<curve x1="53.36" y1="86.6" x2="53.38" y2="77.69" x3="53.36" y3="76.8"/>
<line x="52.42" y="32.92"/>
<line x="83.35" y="32.92"/>
<line x="83.35" y="26.87"/>
<line x="52.29" y="26.87"/>
<line x="52.17" y="21.15"/>
<curve x1="56.2" y1="19.42" x2="59.02" y2="15.55" x3="59.02" y3="11.06"/>
<curve x1="59.02" y1="4.94" x2="53.84" y2="0" x3="47.46" y3="0"/>
<close/>
<move x="47.46" y="7.01"/>
<curve x1="49.72" y1="7.01" x2="51.56" y2="8.82" x3="51.56" y3="11.05"/>
<curve x1="51.56" y1="13.28" x2="49.73" y2="15.09" x3="47.46" y3="15.09"/>
<curve x1="45.19" y1="15.09" x2="43.35" y2="13.28" x3="43.35" y3="11.05"/>
<curve x1="43.35" y1="8.82" x2="45.2" y2="7.01" x3="47.46" y3="7.01"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Anchor 3" h="98.95" w="99" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.5" y="0" perimeter="0" name="N"/>
<constraint x="0.5" y="1" perimeter="0" name="S"/>
<constraint x="0" y="0.585" perimeter="0" name="W"/>
<constraint x="0.995" y="0.585" perimeter="0" name="E"/>
<constraint x="0.2" y="0.91" perimeter="0" name="SW"/>
<constraint x="0.8" y="0.91" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="98.54" y="57.67"/>
<line x="80.4" y="65.31"/>
<line x="86.4" y="69.02"/>
<curve x1="80.37" y1="80.49" x2="68.12" y2="88.73" x3="53.58" y3="90.24"/>
<line x="53.58" y="28.78"/>
<curve x1="60.07" y1="27" x2="64.92" y2="21.55" x3="64.92" y3="14.79"/>
<curve x1="64.92" y1="6.66" x2="58.02" y2="0.06" x3="49.5" y3="0"/>
<curve x1="40.98" y1="0.07" x2="34.08" y2="6.66" x3="34.08" y3="14.79"/>
<curve x1="34.08" y1="21.55" x2="38.93" y2="27.01" x3="45.42" y3="28.78"/>
<line x="45.42" y="90.25"/>
<curve x1="30.88" y1="88.74" x2="18.63" y2="80.5" x3="12.6" y3="69.03"/>
<line x="18.6" y="65.32"/>
<line x="0.46" y="57.67"/>
<line x="0" y="76.79"/>
<line x="5.55" y="73.36"/>
<curve x1="13.41" y1="88.23" x2="30.09" y2="98.6" x3="49.5" y3="98.95"/>
<curve x1="68.91" y1="98.6" x2="85.59" y2="88.23" x3="93.45" y3="73.36"/>
<line x="99" y="76.79"/>
<line x="98.54" y="57.67"/>
<close/>
<move x="42.73" y="14.79"/>
<curve x1="42.73" y1="11.2" x2="45.75" y2="8.3" x3="49.5" y3="8.24"/>
<curve x1="53.25" y1="8.3" x2="56.27" y2="11.2" x3="56.27" y3="14.79"/>
<curve x1="56.27" y1="18.37" x2="53.25" y2="21.29" x3="49.5" y3="21.35"/>
<curve x1="45.75" y1="21.28" x2="42.73" y2="18.37" x3="42.73" y3="14.79"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Anchor 4" h="98.71" w="98.88" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.5" y="0" perimeter="0" name="N"/>
<constraint x="0.5" y="1" perimeter="0" name="S"/>
<constraint x="0" y="0.7" perimeter="0" name="W"/>
<constraint x="1" y="0.7" perimeter="0" name="E"/>
<constraint x="0.21" y="0.275" perimeter="0" name="NW"/>
<constraint x="0.79" y="0.275" perimeter="0" name="NE"/>
</connections>
<background>
<path>
<move x="46.41" y="0"/>
<line x="52.46" y="0"/>
<line x="52.46" y="27.15"/>
<line x="78.29" y="27.15"/>
<line x="78.29" y="36.2"/>
<line x="52.47" y="36.2"/>
<line x="52.47" y="83.91"/>
<curve x1="64.58" y1="83.91" x2="77.9" y2="77.33" x3="85.97" y3="69.1"/>
<line x="98.88" y="69.1"/>
<curve x1="86.77" y1="81.44" x2="68.61" y2="92.54" x3="52.47" y3="98.71"/>
<line x="46.42" y="98.71"/>
<curve x1="30.27" y1="92.54" x2="12.11" y2="81.44" x3="0" y3="69.1"/>
<line x="12.91" y="69.1"/>
<curve x1="20.98" y1="77.33" x2="34.3" y2="83.91" x3="46.41" y3="83.91"/>
<line x="46.41" y="36.19"/>
<line x="20.58" y="36.19"/>
<line x="20.58" y="27.14"/>
<line x="46.41" y="27.14"/>
<line x="46.41" y="0"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Bicycler" h="98.51" w="95.02" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.5" y="0" perimeter="0" name="N"/>
<constraint x="0.555" y="0.945" perimeter="0" name="S"/>
<constraint x="0.34" y="0.42" perimeter="0" name="W"/>
<constraint x="0.75" y="0.42" perimeter="0" name="E"/>
<constraint x="0.19" y="1" perimeter="0" name="SW"/>
<constraint x="0.81" y="1" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="54.03" y="6.37"/>
<curve x1="54.03" y1="9.89" x2="51.22" y2="12.74" x3="47.75" y3="12.74"/>
<curve x1="44.28" y1="12.74" x2="41.47" y2="9.89" x3="41.47" y3="6.37"/>
<curve x1="41.47" y1="2.86" x2="44.29" y2="0" x3="47.75" y3="0"/>
<curve x1="51.21" y1="0" x2="54.03" y2="2.86" x3="54.03" y3="6.37"/>
<close/>
<move x="76.86" y="64.53"/>
<curve x1="76.78" y1="64.53" x2="76.7" y2="64.53" x3="76.63" y3="64.53"/>
<curve x1="73.84" y1="64.56" x2="71.2" y2="65.19" x3="68.85" y3="66.27"/>
<line x="65.8" y="61.59"/>
<line x="71.36" y="41.89"/>
<line x="54.93" y="11.09"/>
<line x="47.47" y="14.45"/>
<line x="31.45" y="43.05"/>
<curve x1="28.65" y1="43.63" x2="28.1" y2="44.66" x3="27.22" y3="46.72"/>
<curve x1="27.11" y1="46.99" x2="24.68" y2="55.01" x3="21.72" y3="64.86"/>
<curve x1="20.57" y1="64.65" x2="19.39" y2="64.53" x3="18.18" y3="64.53"/>
<curve x1="18.1" y1="64.53" x2="18.02" y2="64.53" x3="17.95" y3="64.53"/>
<curve x1="8.02" y1="64.65" x2="0" y2="72.21" x3="0" y3="81.52"/>
<curve x1="0" y1="90.89" x2="8.14" y2="98.5" x3="18.17" y3="98.5"/>
<curve x1="28.2" y1="98.5" x2="36.34" y2="90.89" x3="36.34" y3="81.51"/>
<curve x1="36.34" y1="74.19" x2="31.38" y2="67.95" x3="24.44" y3="65.56"/>
<curve x1="24.82" y1="64.28" x2="25.21" y2="63.01" x3="25.58" y3="61.76"/>
<line x="46.71" y="79.18"/>
<curve x1="46.34" y1="79.88" x2="46.12" y2="80.67" x3="46.12" y3="81.5"/>
<curve x1="46.12" y1="84.39" x2="48.62" y2="86.73" x3="51.71" y3="86.73"/>
<curve x1="54.28" y1="86.73" x2="56.44" y2="85.1" x3="57.1" y3="82.89"/>
<line x="58.77" y="82.89"/>
<curve x1="58.87" y1="84.07" x2="59.11" y2="85.23" x3="59.46" y3="86.33"/>
<line x="52.37" y="90.91"/>
<line x="52.61" y="93.09"/>
<line x="62.36" y="91.76"/>
<curve x1="65.68" y1="95.86" x2="70.93" y2="98.51" x3="76.85" y3="98.51"/>
<curve x1="86.88" y1="98.51" x2="95.02" y2="90.9" x3="95.02" y3="81.52"/>
<curve x1="95.02" y1="72.14" x2="86.88" y2="64.53" x3="76.86" y3="64.53"/>
<close/>
<move x="33.54" y="81.52"/>
<curve x1="33.54" y1="89.46" x2="26.65" y2="95.89" x3="18.17" y3="95.89"/>
<curve x1="9.69" y1="95.89" x2="2.8" y2="89.45" x3="2.8" y3="81.52"/>
<curve x1="2.8" y1="73.65" x2="9.58" y2="67.25" x3="17.97" y3="67.15"/>
<curve x1="18.04" y1="67.15" x2="18.1" y2="67.15" x3="18.17" y3="67.15"/>
<curve x1="19.12" y1="67.15" x2="20.05" y2="67.23" x3="20.95" y3="67.39"/>
<curve x1="19.81" y1="71.18" x2="18.62" y2="75.15" x3="17.46" y3="79"/>
<curve x1="16.26" y1="79.29" x2="15.37" y2="80.31" x3="15.37" y3="81.52"/>
<curve x1="15.37" y1="82.96" x2="16.62" y2="84.13" x3="18.17" y3="84.13"/>
<curve x1="19.72" y1="84.13" x2="20.96" y2="82.96" x3="20.96" y3="81.52"/>
<curve x1="20.96" y1="80.82" x2="20.66" y2="80.18" x3="20.18" y3="79.71"/>
<curve x1="21.13" y1="76.53" x2="22.39" y2="72.37" x3="23.67" y3="68.1"/>
<curve x1="29.44" y1="70.17" x2="33.54" y2="75.4" x3="33.54" y3="81.52"/>
<close/>
<move x="29.82" y="47.75"/>
<curve x1="30.51" y1="46.14" x2="30.55" y2="46.05" x3="32.06" y3="45.75"/>
<curve x1="32.67" y1="45.72" x2="36.4" y2="45.74" x3="38.93" y3="45.76"/>
<line x="38.96" y="42.99"/>
<curve x1="38.54" y1="42.99" x2="38.14" y2="42.98" x3="37.77" y3="42.98"/>
<line x="47.88" y="28.41"/>
<line x="55.26" y="39.9"/>
<line x="38.95" y="53.08"/>
<line x="28.2" y="53.08"/>
<curve x1="29.09" y1="50.12" x2="29.71" y2="48.09" x3="29.82" y3="47.75"/>
<close/>
<move x="57.9" y="50.46"/>
<line x="57.45" y="53.08"/>
<line x="53.7" y="53.08"/>
<line x="57.9" y="50.46"/>
<close/>
<move x="26.45" y="58.88"/>
<curve x1="26.77" y1="57.83" x2="27.07" y2="56.81" x3="27.36" y3="55.85"/>
<line x="38.7" y="55.85"/>
<line x="45.62" y="70.43"/>
<line x="43.26" y="72.74"/>
<line x="26.45" y="58.88"/>
<close/>
<move x="52" y="76.3"/>
<curve x1="51.9" y1="76.3" x2="51.8" y2="76.29" x3="51.7" y3="76.29"/>
<curve x1="50.56" y1="76.29" x2="49.5" y2="76.61" x3="48.61" y3="77.16"/>
<line x="45.1" y="74.27"/>
<line x="52.8" y="73.94"/>
<line x="52" y="76.3"/>
<close/>
<move x="47.35" y="57.04"/>
<line x="49.26" y="55.85"/>
<line x="56.98" y="55.85"/>
<line x="54.97" y="67.62"/>
<line x="53.78" y="71.09"/>
<line x="47.35" y="57.04"/>
<close/>
<move x="57.09" y="80.13"/>
<curve x1="56.72" y1="78.87" x2="55.85" y2="77.79" x3="54.7" y3="77.11"/>
<line x="56.25" y="72.59"/>
<line x="58.17" y="80.13"/>
<line x="57.09" y="80.13"/>
<close/>
<move x="64.16" y="67.34"/>
<line x="64.77" y="65.17"/>
<line x="66.38" y="67.64"/>
<curve x1="65.69" y1="68.09" x2="65.05" y2="68.6" x3="64.43" y3="69.13"/>
<line x="64.16" y="67.34"/>
<close/>
<move x="67.85" y="69.88"/>
<line x="74.52" y="80.1"/>
<curve x1="74.51" y1="80.11" x2="74.5" y2="80.13" x3="74.49" y3="80.14"/>
<line x="66.12" y="80.14"/>
<line x="64.94" y="72.45"/>
<curve x1="65.79" y1="71.47" x2="66.77" y2="70.61" x3="67.85" y3="69.88"/>
<close/>
<move x="76.86" y="95.89"/>
<curve x1="72.42" y1="95.89" x2="68.43" y2="94.13" x3="65.62" y3="91.31"/>
<line x="68.25" y="90.95"/>
<line x="67" y="85.86"/>
<line x="66.55" y="82.9"/>
<line x="74.49" y="82.9"/>
<curve x1="74.98" y1="83.64" x2="75.86" y2="84.13" x3="76.86" y3="84.13"/>
<curve x1="78.4" y1="84.13" x2="79.65" y2="82.96" x3="79.65" y3="81.52"/>
<curve x1="79.65" y1="80.15" x2="78.52" y2="79.03" x3="77.09" y3="78.92"/>
<line x="70.3" y="68.52"/>
<curve x1="72.23" y1="67.67" x2="74.38" y2="67.18" x3="76.65" y3="67.15"/>
<curve x1="76.72" y1="67.15" x2="76.78" y2="67.15" x3="76.85" y3="67.15"/>
<curve x1="85.33" y1="67.15" x2="92.22" y2="73.59" x3="92.22" y3="81.52"/>
<curve x1="92.23" y1="89.45" x2="85.34" y2="95.89" x3="76.86" y3="95.89"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Bicycle 1" h="62.73" w="99.24" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.58" y="0.085" perimeter="0" name="N"/>
<constraint x="0.5" y="0.73" perimeter="0" name="S"/>
<constraint x="0.04" y="0.5" perimeter="0" name="W"/>
<constraint x="0.96" y="0.5" perimeter="0" name="E"/>
<constraint x="0.31" y="0.04" perimeter="0" name="NW"/>
<constraint x="0.19" y="1" perimeter="0" name="SW"/>
<constraint x="0.75" y="0.085" perimeter="0" name="NE"/>
<constraint x="0.81" y="0.995" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="79.99" y="23.61"/>
<curve x1="77.84" y1="23.61" x2="75.77" y2="23.97" x3="73.83" y3="24.63"/>
<curve x1="72.33" y1="21.28" x2="70.58" y2="17.36" x3="68.52" y3="12.75"/>
<line x="69.83" y="9.12"/>
<line x="74.33" y="9.04"/>
<line x="74.33" y="5.25"/>
<line x="57.38" y="5.25"/>
<curve x1="55.9" y1="7.29" x2="57.98" y2="7.28" x3="65.49" y3="8.96"/>
<line x="64.18" y="12.67"/>
<line x="30.69" y="12.67"/>
<curve x1="32.95" y1="4.73" x2="31.67" y2="5.31" x3="41.83" y3="5.33"/>
<line x="41.83" y="1.45"/>
<curve x1="27.85" y1="1.59" x2="30.27" y2="0" x3="22.79" y3="24.26"/>
<curve x1="21.64" y1="24.04" x2="20.46" y2="23.93" x3="19.26" y3="23.93"/>
<curve x1="8.63" y1="23.93" x2="0" y2="32.63" x3="0" y3="43.33"/>
<curve x1="0" y1="54.03" x2="8.64" y2="62.73" x3="19.26" y3="62.73"/>
<curve x1="29.88" y1="62.73" x2="38.52" y2="54.03" x3="38.52" y3="43.33"/>
<curve x1="38.52" y1="35.32" x2="33.68" y2="28.43" x3="26.8" y3="25.47"/>
<curve x1="27.22" y1="24.14" x2="27.67" y2="22.72" x3="28.15" y3="21.21"/>
<curve x1="56.31" y1="51.16" x2="45.74" y2="46.3" x3="60.9" y3="46.91"/>
<curve x1="60.97" y1="46.91" x2="61.04" y2="46.91" x3="61.11" y3="46.91"/>
<curve x1="62.91" y1="55.75" x2="70.68" y2="62.42" x3="79.98" y3="62.42"/>
<curve x1="90.6" y1="62.42" x2="99.24" y2="53.72" x3="99.24" y3="43.02"/>
<curve x1="99.24" y1="32.32" x2="90.61" y2="23.61" x3="79.99" y3="23.61"/>
<close/>
<move x="34.01" y="43.33"/>
<curve x1="34.01" y1="51.53" x2="27.39" y2="58.19" x3="19.26" y3="58.19"/>
<curve x1="11.13" y1="58.19" x2="4.5" y2="51.53" x3="4.5" y3="43.33"/>
<curve x1="4.5" y1="35.13" x2="11.12" y2="28.47" x3="19.25" y3="28.47"/>
<curve x1="19.98" y1="28.47" x2="20.7" y2="28.53" x3="21.41" y3="28.63"/>
<curve x1="16.71" y1="43.56" x2="17.27" y2="41.86" x3="17.25" y3="43.12"/>
<curve x1="17.23" y1="44.18" x2="18.08" y2="45.02" x3="19.15" y3="45.1"/>
<curve x1="21.07" y1="44.9" x2="20.64" y2="45.22" x3="25.43" y3="29.84"/>
<curve x1="30.48" y1="32.19" x2="34.01" y2="37.35" x3="34.01" y3="43.33"/>
<close/>
<move x="53.02" y="42.41"/>
<line x="29.72" y="16.82"/>
<line x="62.49" y="16.76"/>
<line x="53.02" y="42.41"/>
<close/>
<move x="60.73" y="42.94"/>
<line x="57.15" y="42.93"/>
<line x="66.45" y="18.34"/>
<line x="70.06" y="26.39"/>
<curve x1="64.49" y1="29.79" x2="60.75" y2="35.93" x3="60.73" y3="42.94"/>
<close/>
<move x="71.92" y="30.57"/>
<line x="77.48" y="42.99"/>
<line x="65.23" y="42.96"/>
<curve x1="65.25" y1="37.78" x2="67.91" y2="33.22" x3="71.92" y3="30.57"/>
<close/>
<move x="79.99" y="57.88"/>
<curve x1="73.19" y1="57.88" x2="67.45" y2="53.21" x3="65.75" y3="46.89"/>
<curve x1="81.1" y1="46.9" x2="82.47" y2="47.7" x3="82.69" y3="45.01"/>
<curve x1="82.67" y1="44.23" x2="82.38" y2="43.69" x3="75.7" y3="28.79"/>
<curve x1="77.06" y1="28.37" x2="78.5" y2="28.14" x3="79.99" y3="28.14"/>
<curve x1="88.12" y1="28.14" x2="94.74" y2="34.81" x3="94.74" y3="43.01"/>
<curve x1="94.74" y1="51.21" x2="88.12" y2="57.88" x3="79.99" y3="57.88"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Bicycle 2" h="56.8" w="99" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.47" y="0" perimeter="0" name="N"/>
<constraint x="0.49" y="0.885" perimeter="0" name="S"/>
<constraint x="0.03" y="0.5" perimeter="0" name="W"/>
<constraint x="0.97" y="0.5" perimeter="0" name="E"/>
<constraint x="0.35" y="0" perimeter="0" name="NW"/>
<constraint x="0.18" y="1" perimeter="0" name="SW"/>
<constraint x="0.72" y="0.095" perimeter="0" name="NE"/>
<constraint x="0.82" y="1" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="80.91" y="20.26"/>
<curve x1="77.67" y1="20.26" x2="74.64" y2="21.12" x3="72.02" y3="22.63"/>
<line x="66" y="13.36"/>
<line x="67.89" y="9.59"/>
<line x="70.89" y="9.59"/>
<curve x1="71.71" y1="9.59" x2="72.97" y2="8.94" x3="72.97" y3="7.45"/>
<curve x1="72.7" y1="5.08" x2="70.64" y2="4.98" x3="67.38" y3="6.26"/>
<curve x1="62.02" y1="6.26" x2="59.29" y2="6.83" x3="59.29" y3="9.58"/>
<line x="65.44" y="9.58"/>
<line x="64.4" y="11.66"/>
<line x="34.69" y="11.66"/>
<curve x1="35.58" y1="9.48" x2="36.43" y2="7.27" x3="37.21" y3="5.03"/>
<curve x1="35.67" y1="5.03" x2="33.93" y2="4.93" x3="33.93" y3="3.67"/>
<curve x1="33.93" y1="2.44" x2="35.01" y2="2.27" x3="35.81" y3="2.22"/>
<line x="46.5" y="2.22"/>
<line x="46.5" y="0.03"/>
<line x="35.82" y="0.03"/>
<curve x1="33.54" y1="0" x2="31.69" y2="0.96" x3="31.69" y3="3.15"/>
<curve x1="31.69" y1="4.78" x2="32.26" y2="6.25" x3="34.56" y3="6.87"/>
<curve x1="31.68" y1="14.16" x2="29.23" y2="18.95" x3="27.46" y3="22.92"/>
<curve x1="24.72" y1="21.24" x2="21.51" y2="20.27" x3="18.08" y3="20.27"/>
<curve x1="8.09" y1="20.26" x2="0" y2="28.44" x3="0" y3="38.53"/>
<curve x1="0" y1="48.62" x2="8.09" y2="56.8" x3="18.08" y3="56.8"/>
<curve x1="28.07" y1="56.8" x2="36.17" y2="48.62" x3="36.17" y3="38.54"/>
<curve x1="36.17" y1="32.69" x2="33.45" y2="27.48" x3="29.21" y3="24.14"/>
<curve x1="30.57" y1="21.17" x2="31.92" y2="18.19" x3="33.22" y3="15.19"/>
<line x="46.78" y="34.43"/>
<curve x1="45.46" y1="35.63" x2="44.63" y2="37.38" x3="44.63" y3="39.32"/>
<curve x1="44.63" y1="42.7" x2="47.16" y2="45.49" x3="50.4" y3="45.86"/>
<line x="50.4" y="48.51"/>
<line x="48.65" y="48.51"/>
<line x="48.65" y="50.29"/>
<line x="53.62" y="50.29"/>
<line x="53.62" y="48.51"/>
<line x="51.88" y="48.51"/>
<line x="51.88" y="45.85"/>
<curve x1="55.13" y1="45.48" x2="57.65" y2="42.69" x3="57.65" y3="39.31"/>
<curve x1="57.65" y1="39.27" x2="57.65" y2="39.24" x3="57.65" y3="39.2"/>
<line x="62.84" y="39.2"/>
<curve x1="63.19" y1="48.98" x2="71.14" y2="56.79" x3="80.91" y3="56.79"/>
<curve x1="90.89" y1="56.8" x2="99" y2="48.62" x3="99" y3="38.53"/>
<curve x1="99" y1="28.44" x2="90.89" y2="20.26" x3="80.91" y3="20.26"/>
<close/>
<move x="33.21" y="38.53"/>
<curve x1="33.21" y1="46.97" x2="26.43" y2="53.81" x3="18.08" y3="53.81"/>
<curve x1="9.73" y1="53.81" x2="2.96" y2="46.97" x3="2.96" y3="38.53"/>
<curve x1="2.96" y1="30.09" x2="9.73" y2="23.25" x3="18.08" y3="23.25"/>
<curve x1="21.08" y1="23.25" x2="23.87" y2="24.14" x3="26.22" y3="25.66"/>
<curve x1="25.17" y1="27.95" x2="24.19" y2="30.05" x3="23.16" y3="32.31"/>
<curve x1="23.16" y1="32.32" x2="23.15" y2="32.33" x3="23.15" y3="32.34"/>
<curve x1="22.12" y1="34.11" x2="20.78" y2="35.39" x3="19.41" y3="36.51"/>
<curve x1="19.03" y1="36.25" x2="18.57" y2="36.1" x3="18.08" y3="36.1"/>
<curve x1="16.75" y1="36.1" x2="15.68" y2="37.19" x3="15.68" y3="38.53"/>
<curve x1="15.68" y1="39.87" x2="16.75" y2="40.96" x3="18.08" y3="40.96"/>
<curve x1="19.41" y1="40.96" x2="20.49" y2="39.87" x3="20.49" y3="38.53"/>
<curve x1="20.49" y1="38.51" x2="20.48" y2="38.48" x3="20.48" y3="38.46"/>
<curve x1="22.05" y1="37.19" x2="23.77" y2="35.63" x3="25.07" y3="33.35"/>
<line x="25.1" y="33.3"/>
<line x="25.12" y="33.26"/>
<curve x1="26.03" y1="31.14" x2="26.97" y2="29.04" x3="27.92" y3="26.94"/>
<curve x1="31.15" y1="29.74" x2="33.21" y2="33.89" x3="33.21" y3="38.53"/>
<close/>
<move x="72.16" y="26.08"/>
<line x="79.16" y="36.87"/>
<curve x1="79.01" y1="37.04" x2="78.88" y2="37.22" x3="78.77" y3="37.43"/>
<line x="65.83" y="37.43"/>
<curve x1="66.16" y1="32.74" x2="68.58" y2="28.65" x3="72.16" y3="26.08"/>
<close/>
<move x="34.14" y="13.44"/>
<line x="63.52" y="13.44"/>
<line x="53.59" y="33.21"/>
<curve x1="53.05" y1="32.99" x2="52.48" y2="32.84" x3="51.88" y3="32.77"/>
<line x="51.88" y="30.12"/>
<line x="53.62" y="30.12"/>
<line x="53.62" y="28.34"/>
<line x="48.65" y="28.34"/>
<line x="48.65" y="30.12"/>
<line x="50.39" y="30.12"/>
<line x="50.39" y="32.77"/>
<curve x1="49.62" y1="32.86" x2="48.89" y2="33.09" x3="48.22" y3="33.43"/>
<line x="34.14" y="13.44"/>
<close/>
<move x="51.14" y="44.64"/>
<curve x1="48.23" y1="44.64" x2="45.87" y2="42.26" x3="45.87" y3="39.32"/>
<curve x1="45.87" y1="36.38" x2="48.23" y2="34" x3="51.14" y3="34"/>
<curve x1="54.05" y1="34" x2="56.41" y2="36.38" x3="56.41" y3="39.32"/>
<curve x1="56.41" y1="42.25" x2="54.05" y2="44.64" x3="51.14" y3="44.64"/>
<close/>
<move x="57.38" y="37.43"/>
<curve x1="57.03" y1="36.24" x2="56.34" y2="35.18" x3="55.44" y3="34.37"/>
<line x="65.08" y="15.17"/>
<line x="70.53" y="23.57"/>
<curve x1="66.15" y1="26.68" x2="63.2" y2="31.7" x3="62.86" y3="37.43"/>
<line x="57.38" y="37.43"/>
<close/>
<move x="80.91" y="53.81"/>
<curve x1="72.78" y1="53.81" x2="66.16" y2="47.33" x3="65.81" y3="39.21"/>
<line x="78.61" y="39.21"/>
<curve x1="78.9" y1="40.22" x2="79.82" y2="40.97" x3="80.92" y3="40.97"/>
<curve x1="82.25" y1="40.97" x2="83.33" y2="39.88" x3="83.33" y3="38.54"/>
<curve x1="83.33" y1="37.2" x2="82.25" y2="36.11" x3="80.92" y3="36.11"/>
<curve x1="80.87" y1="36.11" x2="80.82" y2="36.11" x3="80.77" y3="36.12"/>
<line x="73.64" y="25.13"/>
<curve x1="75.8" y1="23.94" x2="78.27" y2="23.25" x3="80.91" y3="23.25"/>
<curve x1="89.26" y1="23.25" x2="96.04" y2="30.09" x3="96.04" y3="38.53"/>
<curve x1="96.04" y1="46.97" x2="89.26" y2="53.81" x3="80.91" y3="53.81"/>
<close/>
<move x="51.14" y="34.45"/>
<curve x1="48.48" y1="34.45" x2="46.33" y2="36.63" x3="46.33" y3="39.31"/>
<curve x1="46.33" y1="41.99" x2="48.49" y2="44.17" x3="51.14" y3="44.17"/>
<curve x1="53.79" y1="44.17" x2="55.94" y2="41.99" x3="55.94" y3="39.31"/>
<curve x1="55.94" y1="36.63" x2="53.79" y2="34.45" x3="51.14" y3="34.45"/>
<close/>
<move x="51.14" y="40.14"/>
<curve x1="50.69" y1="40.14" x2="50.31" y2="39.77" x3="50.31" y3="39.31"/>
<curve x1="50.31" y1="38.85" x2="50.68" y2="38.48" x3="51.14" y3="38.48"/>
<curve x1="51.6" y1="38.48" x2="51.96" y2="38.85" x3="51.96" y3="39.31"/>
<curve x1="51.96" y1="39.77" x2="51.59" y2="40.14" x3="51.14" y3="40.14"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Bicycle 3" h="59.42" w="99.25" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.41" y="0.02" perimeter="0" name="N"/>
<constraint x="0.52" y="0.91" perimeter="0" name="S"/>
<constraint x="0.03" y="0.5" perimeter="0" name="W"/>
<constraint x="0.97" y="0.5" perimeter="0" name="E"/>
<constraint x="0.32" y="0.02" perimeter="0" name="NW"/>
<constraint x="0.19" y="1" perimeter="0" name="SW"/>
<constraint x="0.72" y="0.095" perimeter="0" name="NE"/>
<constraint x="0.81" y="1" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="98.14" y="39.25"/>
<line x="99.25" y="39.19"/>
<curve x1="98.58" y1="28.73" x2="89.95" y2="20.45" x3="79.4" y3="20.45"/>
<curve x1="76.12" y1="20.45" x2="73.04" y2="21.25" x3="70.31" y3="22.66"/>
<line x="65.78" y="14.61"/>
<line x="66.98" y="11.92"/>
<curve x1="67.23" y1="11.97" x2="67.45" y2="11.99" x3="67.62" y3="11.99"/>
<curve x1="68.79" y1="11.99" x2="72.76" y2="8.36" x3="71.99" y3="6.41"/>
<curve x1="71.66" y1="5.57" x2="69.75" y2="6.37" x3="67.35" y3="6.88"/>
<curve x1="66.82" y1="6.99" x2="65.17" y2="6.98" x3="64.22" y3="6.88"/>
<curve x1="62" y1="6.64" x2="60.06" y2="6.12" x3="59.69" y3="7.14"/>
<curve x1="59.25" y1="8.37" x2="62.28" y2="10.21" x3="64.83" y3="11.24"/>
<line x="64.18" y="12.69"/>
<line x="31.95" y="12.69"/>
<line x="32.91" y="9.98"/>
<line x="32.65" y="9.89"/>
<line x="34.13" y="5.74"/>
<line x="34.08" y="5.73"/>
<line x="34.08" y="5.73"/>
<curve x1="33.49" y1="5.52" x2="32.17" y2="4.85" x3="31.89" y3="4.09"/>
<curve x1="31.83" y1="3.92" x2="31.77" y2="3.64" x3="32.02" y3="3.21"/>
<curve x1="32.49" y1="2.4" x2="36.48" y2="2.38" x3="40.56" y3="3.15"/>
<line x="40.87" y="1.49"/>
<curve x1="38.8" y1="1.1" x2="31.95" y2="0" x3="30.58" y3="2.35"/>
<curve x1="30.14" y1="3.11" x2="30.05" y2="3.92" x3="30.32" y3="4.67"/>
<curve x1="30.63" y1="5.52" x2="31.36" y2="6.15" x3="32.04" y3="6.59"/>
<line x="31.07" y="9.33"/>
<line x="30.81" y="9.23"/>
<line x="26.29" y="21.93"/>
<curve x1="23.97" y1="20.98" x2="21.44" y2="20.45" x3="18.78" y3="20.45"/>
<curve x1="17.77" y1="20.45" x2="16.78" y2="20.53" x3="15.81" y3="20.67"/>
<line x="15.99" y="21.78"/>
<curve x1="6.95" y1="23.14" x2="0" y2="31" x3="0" y3="40.5"/>
<curve x1="0" y1="50.95" x2="8.41" y2="59.42" x3="18.78" y3="59.42"/>
<curve x1="26.55" y1="59.42" x2="33.22" y2="54.66" x3="36.08" y3="47.88"/>
<line x="37.1" y="48.33"/>
<curve x1="38.12" y1="45.92" x2="38.68" y2="43.27" x3="38.68" y3="40.49"/>
<curve x1="38.68" y1="32.9" x2="34.49" y2="26.3" x3="28.32" y3="22.89"/>
<line x="29.3" y="20.13"/>
<line x="47.31" y="40.28"/>
<curve x1="46.66" y1="41.17" x2="46.27" y2="42.26" x3="46.27" y3="43.45"/>
<curve x1="46.27" y1="46.44" x2="48.67" y2="48.86" x3="51.64" y3="48.86"/>
<curve x1="51.86" y1="48.86" x2="52.07" y2="48.84" x3="52.28" y3="48.82"/>
<line x="53.12" y="52.05"/>
<line x="51.9" y="52.05"/>
<line x="51.9" y="54.3"/>
<line x="56.66" y="54.3"/>
<line x="56.66" y="52.05"/>
<line x="54.85" y="52.05"/>
<line x="53.9" y="48.37"/>
<curve x1="55.66" y1="47.55" x2="56.89" y2="45.79" x3="57" y3="43.74"/>
<line x="60.84" y="43.33"/>
<curve x1="62.2" y1="52.44" x2="69.99" y2="59.42" x3="79.4" y3="59.42"/>
<curve x1="89.77" y1="59.42" x2="98.18" y2="50.95" x3="98.18" y3="40.5"/>
<curve x1="98.18" y1="40.08" x2="98.16" y2="39.66" x3="98.13" y3="39.24"/>
<curve x1="98.14" y1="39.24" x2="98.14" y2="39.24" x3="98.14" y3="39.25"/>
<close/>
<move x="34.22" y="40.5"/>
<curve x1="34.22" y1="49.09" x2="27.31" y2="56.05" x3="18.78" y3="56.05"/>
<curve x1="10.25" y1="56.05" x2="3.35" y2="49.09" x3="3.35" y3="40.5"/>
<curve x1="3.35" y1="31.91" x2="10.26" y2="24.95" x3="18.79" y3="24.95"/>
<curve x1="21.05" y1="24.95" x2="23.19" y2="25.44" x3="25.12" y3="26.32"/>
<line x="22.58" y="33.45"/>
<line x="19.59" y="38.07"/>
<curve x1="19.34" y1="37.99" x2="19.08" y2="37.93" x3="18.81" y3="37.93"/>
<curve x1="17.4" y1="37.93" x2="16.26" y2="39.08" x3="16.26" y3="40.49"/>
<curve x1="16.26" y1="41.91" x2="17.4" y2="43.05" x3="18.81" y3="43.05"/>
<curve x1="20.22" y1="43.05" x2="21.36" y2="41.9" x3="21.36" y3="40.49"/>
<curve x1="21.36" y1="39.97" x2="21.2" y2="39.48" x3="20.94" y3="39.08"/>
<line x="24.04" y="34.28"/>
<line x="26.62" y="27.09"/>
<curve x1="31.16" y1="29.8" x2="34.22" y2="34.79" x3="34.22" y3="40.5"/>
<close/>
<move x="52.79" y="38.18"/>
<curve x1="52.42" y1="38.1" x2="52.04" y2="38.05" x3="51.65" y3="38.05"/>
<curve x1="51.47" y1="38.05" x2="51.28" y2="38.06" x3="51.11" y3="38.08"/>
<line x="50.16" y="34.47"/>
<line x="51.52" y="34.47"/>
<line x="51.52" y="32.22"/>
<line x="46.76" y="32.22"/>
<line x="46.76" y="34.47"/>
<line x="48.43" y="34.47"/>
<line x="49.49" y="38.52"/>
<curve x1="49.31" y1="38.6" x2="49.14" y2="38.7" x3="48.97" y3="38.8"/>
<line x="30.15" y="17.74"/>
<line x="31.14" y="14.95"/>
<line x="63.18" y="14.95"/>
<line x="52.79" y="38.18"/>
<close/>
<move x="59.56" y="41.77"/>
<line x="56.84" y="42.06"/>
<curve x1="56.52" y1="40.86" x2="55.8" y2="39.82" x3="54.83" y3="39.1"/>
<line x="64.94" y="16.51"/>
<line x="68.87" y="23.49"/>
<curve x1="63.25" y1="27.03" x2="59.51" y2="33.32" x3="59.51" y3="40.49"/>
<curve x1="59.51" y1="40.93" x2="59.53" y2="41.35" x3="59.56" y3="41.77"/>
<close/>
<move x="63.97" y="40.5"/>
<curve x1="63.97" y1="35.01" x2="66.8" y2="30.18" x3="71.07" y3="27.41"/>
<line x="77.29" y="38.44"/>
<curve x1="76.9" y1="38.85" x2="76.62" y2="39.37" x3="76.52" y3="39.96"/>
<line x="64" y="41.3"/>
<curve x1="63.97" y1="41.03" x2="63.97" y2="40.77" x3="63.97" y3="40.5"/>
<close/>
<move x="79.4" y="56.05"/>
<curve x1="71.71" y1="56.05" x2="65.34" y2="50.38" x3="64.16" y3="42.97"/>
<line x="76.68" y="41.63"/>
<curve x1="77.12" y1="42.7" x2="78.17" y2="43.46" x3="79.4" y3="43.46"/>
<curve x1="81.03" y1="43.46" x2="82.35" y2="42.13" x3="82.35" y3="40.49"/>
<curve x1="82.35" y1="38.85" x2="81.03" y2="37.52" x3="79.4" y3="37.52"/>
<curve x1="79.17" y1="37.52" x2="78.95" y2="37.55" x3="78.74" y3="37.6"/>
<line x="72.52" y="26.56"/>
<curve x1="74.59" y1="25.52" x2="76.93" y2="24.93" x3="79.4" y3="24.93"/>
<curve x1="87.93" y1="24.93" x2="94.84" y2="31.89" x3="94.84" y3="40.48"/>
<curve x1="94.84" y1="49.09" x2="87.93" y2="56.05" x3="79.4" y3="56.05"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Bicycle 4" h="58.85" w="99.18" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.38" y="0" perimeter="0" name="N"/>
<constraint x="0.575" y="0.9" perimeter="0" name="S"/>
<constraint x="0.04" y="0.5" perimeter="0" name="W"/>
<constraint x="0.96" y="0.5" perimeter="0" name="E"/>
<constraint x="0.29" y="0" perimeter="0" name="NW"/>
<constraint x="0.17" y="1" perimeter="0" name="SW"/>
<constraint x="0.76" y="0.08" perimeter="0" name="NE"/>
<constraint x="0.83" y="1" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="81.68" y="23.54"/>
<curve x1="79.46" y1="23.54" x2="77.19" y2="23.99" x3="75.12" y3="24.81"/>
<curve x1="75.09" y1="24.85" x2="75.09" y2="24.85" x3="75.09" y3="24.85"/>
<curve x1="73.09" y1="21.08" x2="71.09" y2="17.3" x3="69.09" y3="13.53"/>
<curve x1="69.65" y1="12.15" x2="70.2" y2="10.8" x3="70.72" y3="9.46"/>
<curve x1="73.28" y1="9.46" x2="75.35" y2="7.33" x3="75.35" y3="4.75"/>
<curve x1="75.35" y1="4.71" x2="75.35" y2="4.71" x3="75.35" y3="4.71"/>
<curve x1="69.9" y1="4.71" x2="64.46" y2="4.71" x3="59.01" y3="4.71"/>
<curve x1="58.41" y1="4.71" x2="57.86" y2="5.27" x3="57.86" y3="5.91"/>
<curve x1="57.86" y1="6.43" x2="58.19" y2="6.88" x3="58.71" y3="7.03"/>
<curve x1="61.12" y1="7.66" x2="63.53" y2="8.3" x3="65.93" y3="8.89"/>
<curve x1="65.26" y1="10.46" x2="64.63" y2="11.99" x3="64.01" y3="13.53"/>
<curve x1="53.38" y1="13.53" x2="42.74" y2="13.53" x3="32.15" y3="13.53"/>
<curve x1="32.15" y1="13.53" x2="32.75" y2="11.55" x3="32.86" y3="11.14"/>
<curve x1="33.04" y1="10.43" x2="33.16" y2="10.17" x3="33.16" y3="9.42"/>
<curve x1="33.16" y1="7.74" x2="32.12" y2="6.7" x3="30.68" y3="5.87"/>
<curve x1="30.64" y1="5.83" x2="30.6" y2="5.8" x3="30.6" y3="5.8"/>
<curve x1="30.45" y1="5.69" x2="30.34" y2="5.5" x3="30.34" y3="5.31"/>
<curve x1="30.34" y1="5.01" x2="30.64" y2="4.71" x3="30.93" y3="4.71"/>
<curve x1="31.34" y1="4.71" x2="31.71" y2="4.71" x3="32.08" y3="4.71"/>
<curve x1="34.05" y1="4.71" x2="36.01" y2="4.71" x3="37.93" y3="4.71"/>
<curve x1="37.93" y1="3.14" x2="37.93" y2="1.57" x3="37.93" y3="0"/>
<curve x1="35.78" y1="0" x2="33.63" y2="0" x3="31.52" y3="0"/>
<curve x1="30.93" y1="0" x2="30.33" y2="0" x3="29.74" y3="0"/>
<curve x1="27.19" y1="0.04" x2="25.11" y2="2.17" x3="25.11" y3="4.74"/>
<curve x1="25.11" y1="6.65" x2="26.26" y2="8.36" x3="28" y3="9.11"/>
<curve x1="28.03" y1="9.11" x2="28.07" y2="9.11" x3="28.07" y3="9.11"/>
<curve x1="28.29" y1="9.22" x2="28.4" y2="9.41" x3="28.4" y3="9.67"/>
<curve x1="28.4" y1="9.7" x2="28.4" y2="9.74" x3="28.4" y3="9.78"/>
<curve x1="28.4" y1="9.82" x2="28.4" y2="9.82" x3="28.4" y3="9.82"/>
<curve x1="26.92" y1="14.83" x2="25.44" y2="19.83" x3="23.95" y3="24.8"/>
<curve x1="23.92" y1="24.76" x2="23.88" y2="24.73" x3="23.84" y3="24.73"/>
<curve x1="21.29" y1="23.72" x2="20.25" y2="23.53" x3="17.5" y3="23.53"/>
<curve x1="7.85" y1="23.54" x2="0" y2="31.46" x3="0" y3="41.21"/>
<curve x1="0" y1="50.93" x2="7.85" y2="58.85" x3="17.52" y3="58.85"/>
<curve x1="27.15" y1="58.85" x2="35.01" y2="50.93" x3="35.01" y3="41.22"/>
<curve x1="35.01" y1="35.65" x2="32.56" y2="30.65" x3="28.23" y3="27.25"/>
<curve x1="28.19" y1="27.18" x2="28.16" y2="27.14" x3="28.16" y3="27.1"/>
<curve x1="28.38" y1="26.47" x2="28.57" y2="25.83" x3="28.75" y3="25.23"/>
<curve x1="35.42" y1="29.86" x2="42.08" y2="34.46" x3="48.71" y3="39.05"/>
<curve x1="48.71" y1="39.08" x2="48.71" y2="39.12" x3="48.71" y3="39.12"/>
<curve x1="48.52" y1="39.83" x2="48.42" y2="40.5" x3="48.42" y3="41.21"/>
<curve x1="48.42" y1="45.09" x2="51.57" y2="48.27" x3="55.42" y3="48.27"/>
<curve x1="56.49" y1="48.27" x2="56.71" y2="48.19" x3="57.72" y3="47.86"/>
<curve x1="58.2" y1="48.79" x2="58.68" y2="49.73" x3="59.17" y3="50.62"/>
<curve x1="58.39" y1="50.62" x2="57.64" y2="50.62" x3="56.91" y3="50.62"/>
<curve x1="56.91" y1="51.41" x2="56.91" y2="52.19" x3="56.91" y3="52.98"/>
<curve x1="57.72" y1="52.98" x2="58.53" y2="52.98" x3="59.35" y3="52.98"/>
<curve x1="59.72" y1="53.35" x2="60.17" y2="53.54" x3="60.69" y3="53.54"/>
<curve x1="61.17" y1="53.54" x2="61.65" y2="53.32" x3="61.99" y3="52.94"/>
<curve x1="62.66" y1="52.94" x2="63.29" y2="52.94" x3="63.92" y3="52.94"/>
<curve x1="63.92" y1="52.15" x2="63.92" y2="51.37" x3="63.92" y3="50.62"/>
<curve x1="62.95" y1="50.62" x2="62.03" y2="50.62" x3="61.1" y3="50.62"/>
<curve x1="60.51" y1="49.43" x2="59.92" y2="48.23" x3="59.36" y3="47.03"/>
<curve x1="60.81" y1="46.06" x2="61.77" y2="44.68" x3="62.22" y3="42.96"/>
<curve x1="62.26" y1="42.96" x2="62.26" y2="42.96" x3="62.26" y3="42.96"/>
<curve x1="62.96" y1="42.96" x2="63.62" y2="42.96" x3="64.29" y3="42.96"/>
<curve x1="65.18" y1="52" x2="72.7" y2="58.84" x3="81.7" y3="58.84"/>
<curve x1="91.33" y1="58.84" x2="99.18" y2="50.92" x3="99.18" y3="41.21"/>
<curve x1="99.17" y1="31.46" x2="91.31" y2="23.54" x3="81.68" y3="23.54"/>
<close/>
<move x="29.73" y="41.21"/>
<curve x1="29.73" y1="48.01" x2="24.25" y2="53.54" x3="17.5" y3="53.54"/>
<curve x1="10.72" y1="53.54" x2="5.24" y2="48.01" x3="5.24" y3="41.21"/>
<curve x1="5.24" y1="34.37" x2="10.73" y2="28.84" x3="17.5" y3="28.84"/>
<curve x1="19.24" y1="28.84" x2="20.91" y2="29.22" x3="22.43" y3="29.89"/>
<curve x1="22.46" y1="29.93" x2="22.5" y2="29.93" x3="22.5" y3="29.93"/>
<curve x1="22.02" y1="31.5" x2="21.54" y2="33.07" x3="21.05" y3="34.64"/>
<curve x1="20.38" y1="36.66" x2="18.72" y2="38.19" x3="16.72" y3="39.57"/>
<curve x1="16.61" y1="39.64" x2="16.54" y2="39.72" x3="16.46" y3="39.75"/>
<curve x1="16.02" y1="40.09" x2="15.72" y2="40.61" x3="15.72" y3="41.21"/>
<curve x1="15.72" y1="42.14" x2="16.54" y2="42.96" x3="17.5" y3="42.96"/>
<curve x1="17.58" y1="42.96" x2="17.76" y2="42.96" x3="17.84" y3="42.93"/>
<curve x1="21.18" y1="41.99" x2="24.54" y2="39.22" x3="25.58" y3="35.94"/>
<curve x1="25.92" y1="34.9" x2="26.21" y2="33.85" x3="26.51" y3="32.84"/>
<curve x1="26.54" y1="32.88" x2="26.54" y2="32.88" x3="26.54" y3="32.88"/>
<curve x1="28.55" y1="35.08" x2="29.73" y2="38" x3="29.73" y3="41.21"/>
<close/>
<move x="73.89" y="31.65"/>
<curve x1="73.93" y1="31.61" x2="73.93" y2="31.57" x3="73.93" y3="31.57"/>
<curve x1="75.34" y1="34.22" x2="76.71" y2="36.84" x3="78.08" y3="39.45"/>
<curve x1="75.23" y1="39.45" x2="72.38" y2="39.45" x3="69.56" y3="39.45"/>
<curve x1="69.56" y1="39.42" x2="69.56" y2="39.38" x3="69.56" y3="39.38"/>
<curve x1="70" y1="36.24" x2="71.45" y2="33.67" x3="73.89" y3="31.65"/>
<close/>
<move x="29.95" y="21.04"/>
<curve x1="30.28" y1="19.92" x2="30.62" y2="18.8" x3="30.91" y3="17.68"/>
<curve x1="41.43" y1="17.68" x2="51.92" y2="17.68" x3="62.4" y3="17.68"/>
<curve x1="60.18" y1="23.17" x2="57.96" y2="28.66" x3="55.77" y3="34.15"/>
<curve x1="55.73" y1="34.15" x2="55.69" y2="34.15" x3="55.69" y3="34.15"/>
<curve x1="55.58" y1="34.15" x2="55.47" y2="34.15" x3="55.4" y3="34.15"/>
<curve x1="54.69" y1="34.15" x2="53.91" y2="34.26" x3="53.25" y3="34.49"/>
<curve x1="53.18" y1="34.52" x2="53.14" y2="34.52" x3="53.1" y3="34.52"/>
<curve x1="52.62" y1="33.59" x2="52.18" y2="32.68" x3="51.73" y3="31.79"/>
<curve x1="52.47" y1="31.79" x2="53.21" y2="31.79" x3="53.91" y3="31.79"/>
<curve x1="53.91" y1="31.01" x2="53.91" y2="30.22" x3="53.91" y3="29.43"/>
<curve x1="53.09" y1="29.43" x2="52.28" y2="29.43" x3="51.47" y3="29.43"/>
<curve x1="51.44" y1="29.39" x2="51.44" y2="29.39" x3="51.44" y3="29.39"/>
<curve x1="51.1" y1="29.02" x2="50.62" y2="28.83" x3="50.14" y3="28.83"/>
<curve x1="49.65" y1="28.83" x2="49.21" y2="29.02" x3="48.88" y3="29.39"/>
<curve x1="48.85" y1="29.43" x2="48.85" y2="29.43" x3="48.85" y3="29.43"/>
<curve x1="48.18" y1="29.43" x2="47.55" y2="29.43" x3="46.92" y3="29.43"/>
<curve x1="46.92" y1="30.22" x2="46.92" y2="31" x3="46.92" y3="31.79"/>
<curve x1="47.88" y1="31.79" x2="48.85" y2="31.79" x3="49.77" y3="31.79"/>
<curve x1="50.36" y1="32.99" x2="50.95" y2="34.18" x3="51.51" y3="35.34"/>
<curve x1="51.32" y1="35.45" x2="51.18" y2="35.56" x3="51.02" y3="35.67"/>
<curve x1="44" y1="30.79" x2="36.96" y2="25.9" x3="29.95" y3="21.04"/>
<close/>
<move x="55.4" y="45.92"/>
<curve x1="52.84" y1="45.92" x2="50.73" y2="43.78" x3="50.73" y3="41.21"/>
<curve x1="50.73" y1="38.59" x2="52.84" y2="36.5" x3="55.4" y3="36.5"/>
<curve x1="57.96" y1="36.5" x2="60.06" y2="38.59" x3="60.06" y3="41.21"/>
<curve x1="60.07" y1="43.79" x2="57.96" y2="45.92" x3="55.4" y3="45.92"/>
<close/>
<move x="64.25" y="39.38"/>
<curve x1="64.25" y1="39.38" x2="64.25" y2="39.38" x3="64.25" y3="39.42"/>
<curve x1="63.58" y1="39.42" x2="62.88" y2="39.42" x3="62.18" y3="39.42"/>
<curve x1="61.81" y1="38.03" x2="61.18" y2="36.99" x3="60.14" y3="35.98"/>
<curve x1="60.14" y1="35.98" x2="60.1" y2="35.94" x3="60.06" y3="35.91"/>
<curve x1="62.36" y1="30.12" x2="64.69" y2="24.29" x3="67.03" y3="18.46"/>
<curve x1="68.47" y1="21.26" x2="69.96" y2="24.06" x3="71.44" y3="26.86"/>
<curve x1="71.44" y1="26.86" x2="71.4" y2="26.86" x3="71.36" y3="26.9"/>
<curve x1="67.26" y1="29.93" x2="64.78" y2="34.3" x3="64.25" y3="39.38"/>
<close/>
<move x="81.67" y="53.54"/>
<curve x1="75.6" y1="53.54" x2="70.45" y2="49.1" x3="69.56" y3="43.04"/>
<curve x1="69.56" y1="43" x2="69.56" y2="42.96" x3="69.56" y3="42.96"/>
<curve x1="73.6" y1="42.96" x2="77.64" y2="42.96" x3="81.67" y3="42.96"/>
<curve x1="82.6" y1="42.96" x2="83.41" y2="42.14" x3="83.41" y3="41.21"/>
<curve x1="83.41" y1="40.95" x2="83.37" y2="40.69" x3="83.3" y3="40.46"/>
<curve x1="81.37" y1="36.8" x2="79.45" y2="33.17" x3="77.55" y3="29.55"/>
<curve x1="78.81" y1="29.1" x2="80.29" y2="28.84" x3="81.66" y3="28.84"/>
<curve x1="88.4" y1="28.84" x2="93.92" y2="34.37" x3="93.92" y3="41.21"/>
<curve x1="93.93" y1="48.01" x2="88.41" y2="53.54" x3="81.67" y3="53.54"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Bicycle 5" h="54.11" w="98.88" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.43" y="0" perimeter="0" name="N"/>
<constraint x="0.52" y="0.78" perimeter="0" name="S"/>
<constraint x="0.025" y="0.5" perimeter="0" name="W"/>
<constraint x="0.975" y="0.5" perimeter="0" name="E"/>
<constraint x="0.3" y="0" perimeter="0" name="NW"/>
<constraint x="0.17" y="1" perimeter="0" name="SW"/>
<constraint x="0.75" y="0.08" perimeter="0" name="NE"/>
<constraint x="0.83" y="1" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="81.46" y="18.87"/>
<curve x1="78.42" y1="18.87" x2="75.55" y2="19.67" x3="73.06" y3="21.06"/>
<curve x1="71.49" y1="18.68" x2="69.92" y2="16.3" x3="68.35" y3="13.92"/>
<curve x1="69.05" y1="12.7" x2="69.76" y2="11.48" x3="70.46" y3="10.25"/>
<curve x1="71.47" y1="10.7" x2="72.49" y2="11.15" x3="73.5" y3="11.6"/>
<curve x1="74.24" y1="11.93" x2="75.16" y2="11.55" x3="75.16" y3="10.64"/>
<curve x1="75.16" y1="8.92" x2="75.16" y2="7.2" x3="75.16" y3="5.48"/>
<curve x1="75.16" y1="5.17" x2="75.05" y2="4.95" x3="74.89" y3="4.77"/>
<curve x1="74.87" y1="4.74" x2="74.86" y2="4.72" x3="74.83" y3="4.69"/>
<curve x1="74.81" y1="4.67" x2="74.78" y2="4.65" x3="74.76" y3="4.63"/>
<curve x1="74.59" y1="4.47" x2="74.36" y2="4.36" x3="74.06" y3="4.36"/>
<curve x1="70.19" y1="4.36" x2="66.33" y2="4.36" x3="62.46" y3="4.36"/>
<curve x1="61.43" y1="4.36" x2="60.86" y2="5.97" x3="61.9" y3="6.44"/>
<curve x1="63.85" y1="7.31" x2="65.8" y2="8.18" x3="67.74" y3="9.04"/>
<curve x1="67.02" y1="10.29" x2="66.31" y2="11.53" x3="65.59" y3="12.78"/>
<curve x1="54.6" y1="12.78" x2="43.61" y2="12.78" x3="32.61" y3="12.78"/>
<curve x1="33.61" y1="11.27" x2="34.69" y2="9.51" x3="33.88" y3="8.01"/>
<curve x1="33.42" y1="7.16" x2="32.99" y2="6.29" x3="32.57" y3="5.41"/>
<curve x1="32.25" y1="4.74" x2="31.97" y2="4.05" x3="31.73" y3="3.34"/>
<curve x1="31.67" y1="3.19" x2="31.66" y2="3.07" x3="31.66" y3="2.98"/>
<line x="33.96" y="2.98"/>
<curve x1="35.89" y1="2.98" x2="37.82" y2="2.98" x3="39.76" y3="2.98"/>
<curve x1="40.56" y1="2.98" x2="41.35" y2="2.98" x3="42.15" y3="2.98"/>
<curve x1="44.05" y1="2.98" x2="44.05" y2="0" x3="42.15" y3="0"/>
<curve x1="38.86" y1="0" x2="35.58" y2="0" x3="32.29" y3="0"/>
<curve x1="30.27" y1="0" x2="28.62" y2="0" x3="28.53" y3="2.4"/>
<curve x1="28.45" y1="4.56" x2="30.13" y2="7.19" x3="31.08" y3="9.03"/>
<curve x1="31.11" y1="9.08" x2="31.13" y2="9.12" x3="31.16" y3="9.17"/>
<curve x1="30.92" y1="9.6" x2="30.67" y2="10.03" x3="30.43" y3="10.46"/>
<curve x1="28.53" y1="13.81" x2="26.64" y2="17.17" x3="24.74" y3="20.52"/>
<curve x1="22.51" y1="19.47" x2="20.03" y2="18.86" x3="17.41" y3="18.86"/>
<curve x1="7.82" y1="18.87" x2="0" y2="26.78" x3="0" y3="36.49"/>
<curve x1="0" y1="46.2" x2="7.81" y2="54.11" x3="17.42" y3="54.11"/>
<curve x1="27.02" y1="54.11" x2="34.84" y2="46.21" x3="34.84" y3="36.49"/>
<curve x1="34.84" y1="30.49" x2="31.85" y2="25.19" x3="27.31" y3="22"/>
<curve x1="28.08" y1="20.64" x2="28.85" y2="19.27" x3="29.62" y3="17.91"/>
<curve x1="36.11" y1="23.23" x2="42.61" y2="28.55" x3="49.1" y3="33.86"/>
<curve x1="48.43" y1="34.76" x2="48.01" y2="35.87" x3="48.01" y3="37.08"/>
<curve x1="48.01" y1="40.04" x2="50.38" y2="42.45" x3="53.31" y3="42.45"/>
<curve x1="53.48" y1="42.45" x2="53.64" y2="42.42" x3="53.81" y3="42.4"/>
<line x="53.81" y="42.43"/>
<line x="64.68" y="41.17"/>
<curve x1="66.71" y1="48.61" x2="73.46" y2="54.11" x3="81.45" y3="54.11"/>
<curve x1="91.06" y1="54.11" x2="98.87" y2="46.21" x3="98.87" y3="36.49"/>
<curve x1="98.88" y1="26.78" x2="91.06" y2="18.87" x3="81.46" y3="18.87"/>
<close/>
<move x="31.89" y="36.49"/>
<curve x1="31.89" y1="44.56" x2="25.4" y2="51.13" x3="17.41" y3="51.13"/>
<curve x1="9.43" y1="51.13" x2="2.93" y2="44.56" x3="2.93" y3="36.49"/>
<curve x1="2.93" y1="28.42" x2="9.42" y2="21.85" x3="17.41" y3="21.85"/>
<curve x1="19.5" y1="21.85" x2="21.48" y2="22.31" x3="23.28" y3="23.12"/>
<curve x1="21.27" y1="26.67" x2="19.26" y2="30.23" x3="17.25" y3="33.78"/>
<curve x1="15.84" y1="33.87" x2="14.71" y2="35.04" x3="14.71" y3="36.49"/>
<curve x1="14.71" y1="38" x2="15.92" y2="39.22" x3="17.41" y3="39.22"/>
<curve x1="18.9" y1="39.22" x2="20.11" y2="38" x3="20.11" y3="36.49"/>
<curve x1="20.11" y1="36.04" x2="19.99" y2="35.63" x3="19.81" y3="35.26"/>
<curve x1="21.82" y1="31.71" x2="23.83" y2="28.16" x3="25.83" y3="24.61"/>
<curve x1="29.5" y1="27.26" x2="31.89" y2="31.59" x3="31.89" y3="36.49"/>
<close/>
<move x="72.25" y="25.2"/>
<curve x1="74.07" y1="27.96" x2="75.89" y2="30.73" x3="77.71" y3="33.49"/>
<line x="67.47" y="32.75"/>
<curve x1="68.26" y1="29.75" x2="69.95" y2="27.12" x3="72.25" y3="25.2"/>
<close/>
<move x="64.5" y="32.54"/>
<line x="57.92" y="32.06"/>
<curve x1="60.85" y1="26.97" x2="63.78" y2="21.88" x3="66.71" y3="16.79"/>
<curve x1="68.01" y1="18.77" x2="69.32" y2="20.75" x3="70.62" y3="22.73"/>
<curve x1="67.59" y1="25.17" x2="65.4" y2="28.6" x3="64.5" y3="32.54"/>
<close/>
<move x="54.64" y="31.83"/>
<line x="53.31" y="31.73"/>
<curve x1="52.69" y1="31.73" x2="52.09" y2="31.86" x3="51.54" y3="32.06"/>
<curve x1="44.91" y1="26.63" x2="38.28" y2="21.2" x3="31.65" y3="15.77"/>
<curve x1="42.39" y1="15.77" x2="53.14" y2="15.77" x3="63.88" y3="15.77"/>
<curve x1="60.8" y1="21.12" x2="57.72" y2="26.47" x3="54.64" y3="31.83"/>
<close/>
<move x="81.46" y="51.13"/>
<curve x1="74.97" y1="51.13" x2="69.47" y2="46.79" x3="67.63" y3="40.83"/>
<line x="81.46" y="39.22"/>
<curve x1="82.95" y1="39.22" x2="84.16" y2="38" x3="84.16" y3="36.49"/>
<curve x1="84.16" y1="34.98" x2="82.95" y2="33.76" x3="81.46" y3="33.76"/>
<line x="81.43" y="33.76"/>
<curve x1="79.19" y1="30.36" x2="76.95" y2="26.96" x3="74.7" y3="23.56"/>
<curve x1="76.72" y1="22.48" x2="79.02" y2="21.86" x3="81.46" y3="21.86"/>
<curve x1="89.44" y1="21.86" x2="95.94" y2="28.43" x3="95.94" y3="36.5"/>
<curve x1="95.93" y1="44.56" x2="89.44" y2="51.13" x3="81.46" y3="51.13"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Bus 1" h="98.71" w="99.13" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.5" y="0" perimeter="0" name="N"/>
<constraint x="0.5" y="0.9" perimeter="0" name="S"/>
<constraint x="0.01" y="0.5" perimeter="0" name="W"/>
<constraint x="0.985" y="0.5" perimeter="0" name="E"/>
<constraint x="0.1" y="0.04" perimeter="0" name="NW"/>
<constraint x="0.085" y="1" perimeter="0" name="SW"/>
<constraint x="0.9" y="0.04" perimeter="0" name="NE"/>
<constraint x="0.915" y="1" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="99.13" y="59.23"/>
<line x="92.24" y="11.08"/>
<curve x1="92.24" y1="11.08" x2="90.67" y2="0" x3="79.46" y3="0"/>
<line x="19.67" y="0"/>
<curve x1="8.46" y1="0" x2="6.88" y2="11.08" x3="6.88" y3="11.08"/>
<line x="0" y="59.23"/>
<line x="2.75" y="75.15"/>
<line x="0.98" y="77.36"/>
<line x="0.98" y="88.64"/>
<line x="8.45" y="88.64"/>
<line x="8.45" y="98.71"/>
<line x="26.54" y="98.71"/>
<line x="26.54" y="88.64"/>
<line x="72.56" y="88.64"/>
<line x="72.56" y="98.71"/>
<line x="90.66" y="98.71"/>
<line x="90.66" y="88.64"/>
<line x="98.13" y="88.64"/>
<line x="98.13" y="77.36"/>
<line x="96.36" y="75.14"/>
<line x="99.13" y="59.23"/>
<close/>
<move x="29.01" y="2.41"/>
<line x="70.12" y="2.41"/>
<line x="70.12" y="13.69"/>
<line x="29.01" y="13.69"/>
<line x="29.01" y="2.41"/>
<close/>
<move x="8.75" y="19.34"/>
<line x="27.24" y="17.32"/>
<line x="46.71" y="17.32"/>
<line x="46.71" y="47.94"/>
<line x="5.21" y="47.94"/>
<line x="8.75" y="19.34"/>
<close/>
<move x="25.81" y="68.7"/>
<curve x1="25.81" y1="71.15" x2="23.87" y2="73.13" x3="21.48" y3="73.13"/>
<curve x1="19.64" y1="73.13" x2="18.08" y2="71.96" x3="17.45" y3="70.31"/>
<curve x1="16.82" y1="71.96" x2="15.25" y2="73.13" x3="13.42" y3="73.13"/>
<curve x1="11.03" y1="73.13" x2="9.09" y2="71.14" x3="9.09" y3="68.7"/>
<curve x1="9.09" y1="66.25" x2="11.03" y2="64.27" x3="13.42" y3="64.27"/>
<curve x1="15.26" y1="64.27" x2="16.82" y2="65.44" x3="17.45" y3="67.09"/>
<curve x1="18.08" y1="65.44" x2="19.65" y2="64.27" x3="21.48" y3="64.27"/>
<curve x1="23.88" y1="64.26" x2="25.81" y2="66.25" x3="25.81" y3="68.7"/>
<close/>
<move x="91.06" y="79.58"/>
<line x="8.06" y="79.58"/>
<line x="8.06" y="77.97"/>
<line x="91.06" y="77.97"/>
<line x="91.06" y="79.58"/>
<close/>
<move x="73.31" y="68.7"/>
<curve x1="73.31" y1="66.25" x2="75.25" y2="64.27" x3="77.64" y3="64.27"/>
<curve x1="79.48" y1="64.27" x2="81.04" y2="65.44" x3="81.67" y3="67.09"/>
<curve x1="82.3" y1="65.44" x2="83.87" y2="64.27" x3="85.7" y3="64.27"/>
<curve x1="88.09" y1="64.27" x2="90.03" y2="66.25" x3="90.03" y3="68.7"/>
<curve x1="90.03" y1="71.15" x2="88.09" y2="73.13" x3="85.7" y3="73.13"/>
<curve x1="83.86" y1="73.13" x2="82.3" y2="71.96" x3="81.67" y3="70.31"/>
<curve x1="81.04" y1="71.96" x2="79.47" y2="73.13" x3="77.64" y3="73.13"/>
<curve x1="75.25" y1="73.13" x2="73.31" y2="71.15" x3="73.31" y3="68.7"/>
<close/>
<move x="52.41" y="47.95"/>
<line x="52.41" y="17.32"/>
<line x="71.89" y="17.32"/>
<line x="90.38" y="19.34"/>
<line x="93.92" y="47.95"/>
<line x="52.41" y="47.95"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Bus 2" h="26.3" w="99.16" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.5" y="0" perimeter="0" name="N"/>
<constraint x="0.5" y="0.92" perimeter="0" name="S"/>
<constraint x="0.015" y="0.5" perimeter="0" name="W"/>
<constraint x="0.98" y="0.5" perimeter="0" name="E"/>
<constraint x="0.02" y="0.16" perimeter="0" name="NW"/>
<constraint x="0" y="0.92" perimeter="0" name="SW"/>
<constraint x="0.97" y="0.16" perimeter="0" name="NE"/>
<constraint x="1" y="0.865" perimeter="0" name="SE"/>
</connections>
<foreground>
<path>
<move x="76.21" y="19.1"/>
<curve x1="74.24" y1="19.1" x2="72.64" y2="20.71" x3="72.64" y3="22.7"/>
<curve x1="72.64" y1="24.69" x2="74.24" y2="26.3" x3="76.21" y3="26.3"/>
<curve x1="78.18" y1="26.3" x2="79.78" y2="24.69" x3="79.78" y3="22.7"/>
<curve x1="79.78" y1="20.71" x2="78.18" y2="19.1" x3="76.21" y3="19.1"/>
<close/>
<move x="76.21" y="24.79"/>
<curve x1="75.07" y1="24.79" x2="74.14" y2="23.86" x3="74.14" y3="22.7"/>
<curve x1="74.14" y1="21.54" x2="75.07" y2="20.61" x3="76.21" y3="20.61"/>
<curve x1="77.35" y1="20.61" x2="78.28" y2="21.54" x3="78.28" y3="22.7"/>
<curve x1="78.28" y1="23.86" x2="77.35" y2="24.79" x3="76.21" y3="24.79"/>
<close/>
</path>
<fillstroke/>
<path>
<move x="17.35" y="19.1"/>
<curve x1="15.38" y1="19.1" x2="13.78" y2="20.71" x3="13.78" y3="22.7"/>
<curve x1="13.78" y1="24.69" x2="15.38" y2="26.3" x3="17.35" y3="26.3"/>
<curve x1="19.32" y1="26.3" x2="20.92" y2="24.69" x3="20.92" y3="22.7"/>
<curve x1="20.92" y1="20.71" x2="19.33" y2="19.1" x3="17.35" y3="19.1"/>
<close/>
<move x="17.35" y="24.79"/>
<curve x1="16.21" y1="24.79" x2="15.28" y2="23.86" x3="15.28" y3="22.7"/>
<curve x1="15.28" y1="21.54" x2="16.21" y2="20.61" x3="17.35" y3="20.61"/>
<curve x1="18.49" y1="20.61" x2="19.42" y2="21.54" x3="19.42" y3="22.7"/>
<curve x1="19.42" y1="23.86" x2="18.5" y2="24.79" x3="17.35" y3="24.79"/>
<close/>
</path>
<fillstroke/>
<ellipse x="16.64" y="21.92" w="1.42" h="1.42"/>
<fillstroke/>
<ellipse x="75.5" y="21.92" w="1.42" h="1.42"/>
<fillstroke/>
<rect x="18.75" y="0" w="25.94" h="3.87"/>
<fillstroke/>
<path>
<move x="17.35" y="0"/>
<line x="14.05" y="2.93"/>
<line x="14.05" y="3.88"/>
<line x="18.3" y="3.88"/>
<line x="18.3" y="0"/>
<close/>
</path>
<fillstroke/>
<rect x="45.13" y="0" w="25.94" h="3.87"/>
<fillstroke/>
<path>
<move x="72.47" y="0"/>
<line x="75.77" y="2.93"/>
<line x="75.77" y="3.88"/>
<line x="71.52" y="3.88"/>
<line x="71.52" y="0"/>
<close/>
</path>
<fillstroke/>
<path>
<move x="99.16" y="21.32"/>
<line x="98.02" y="20.35"/>
<line x="96.26" y="4.27"/>
<line x="2.08" y="4.27"/>
<line x="2.08" y="7.75"/>
<line x="3.54" y="7.75"/>
<curve x1="3.54" y1="7.75" x2="2.19" y2="10.21" x3="1.94" y3="12.52"/>
<line x="1.19" y="21.85"/>
<line x="0.15" y="21.91"/>
<line x="0" y="24.14"/>
<line x="13" y="24.14"/>
<curve x1="12.85" y1="23.69" x2="12.77" y2="23.2" x3="12.77" y3="22.7"/>
<curve x1="12.77" y1="20.15" x2="14.82" y2="18.08" x3="17.35" y3="18.08"/>
<curve x1="19.88" y1="18.08" x2="21.93" y2="20.15" x3="21.93" y3="22.7"/>
<curve x1="21.93" y1="23.2" x2="21.85" y2="23.69" x3="21.7" y3="24.14"/>
<line x="71.85" y="24.14"/>
<curve x1="71.7" y1="23.69" x2="71.62" y2="23.2" x3="71.62" y3="22.7"/>
<curve x1="71.62" y1="20.15" x2="73.67" y2="18.08" x3="76.2" y3="18.08"/>
<curve x1="78.73" y1="18.08" x2="80.78" y2="20.15" x3="80.78" y3="22.7"/>
<curve x1="80.78" y1="23.2" x2="80.7" y2="23.69" x3="80.55" y3="24.14"/>
<line x="85.81" y="24.14"/>
<line x="97.95" y="22.77"/>
<line x="99.16" y="22.77"/>
<line x="99.16" y="21.32"/>
<close/>
<move x="12.28" y="15.05"/>
<curve x1="12.28" y1="15.95" x2="11.55" y2="16.69" x3="10.65" y3="16.69"/>
<line x="5.48" y="16.69"/>
<curve x1="4.58" y1="16.69" x2="3.85" y2="15.96" x3="3.85" y3="15.05"/>
<line x="3.85" y="10.03"/>
<curve x1="3.85" y1="9.12" x2="4.58" y2="8.39" x3="5.48" y3="8.39"/>
<line x="10.65" y="8.39"/>
<curve x1="11.55" y1="8.39" x2="12.28" y2="9.12" x3="12.28" y3="10.03"/>
<line x="12.28" y="15.05"/>
<close/>
<move x="79.61" y="8.4"/>
<line x="86.9" y="8.4"/>
<curve x1="87.76" y1="8.4" x2="88.47" y2="9.08" x3="88.52" y3="9.94"/>
<line x="77.99" y="9.94"/>
<curve x1="78.04" y1="9.08" x2="78.75" y2="8.4" x3="79.61" y3="8.4"/>
<close/>
<move x="66.8" y="8.4"/>
<line x="74.09" y="8.4"/>
<curve x1="74.95" y1="8.4" x2="75.66" y2="9.08" x3="75.71" y3="9.94"/>
<line x="65.18" y="9.94"/>
<curve x1="65.23" y1="9.08" x2="65.94" y2="8.4" x3="66.8" y3="8.4"/>
<close/>
<move x="53.83" y="8.4"/>
<line x="61.44" y="8.4"/>
<curve x1="62.3" y1="8.4" x2="63.01" y2="9.08" x3="63.06" y3="9.94"/>
<line x="52.21" y="9.94"/>
<curve x1="52.26" y1="9.08" x2="52.97" y2="8.4" x3="53.83" y3="8.4"/>
<close/>
<move x="41.03" y="8.4"/>
<line x="48.64" y="8.4"/>
<curve x1="49.5" y1="8.4" x2="50.21" y2="9.08" x3="50.26" y3="9.94"/>
<line x="39.4" y="9.94"/>
<curve x1="39.46" y1="9.08" x2="40.16" y2="8.4" x3="41.03" y3="8.4"/>
<close/>
<move x="28.22" y="8.4"/>
<line x="35.83" y="8.4"/>
<curve x1="36.69" y1="8.4" x2="37.4" y2="9.08" x3="37.45" y3="9.94"/>
<line x="26.6" y="9.94"/>
<curve x1="26.65" y1="9.08" x2="27.35" y2="8.4" x3="28.22" y3="8.4"/>
<close/>
<move x="15.41" y="8.4"/>
<line x="23.02" y="8.4"/>
<curve x1="23.88" y1="8.4" x2="24.59" y2="9.08" x3="24.64" y3="9.94"/>
<line x="13.79" y="9.94"/>
<curve x1="13.84" y1="9.08" x2="14.54" y2="8.4" x3="15.41" y3="8.4"/>
<close/>
<move x="23.02" y="16.69"/>
<line x="15.41" y="16.69"/>
<curve x1="14.51" y1="16.69" x2="13.78" y2="15.96" x3="13.78" y3="15.05"/>
<line x="13.78" y="10.53"/>
<line x="24.64" y="10.53"/>
<line x="24.64" y="15.05"/>
<curve x1="24.64" y1="15.96" x2="23.92" y2="16.69" x3="23.02" y3="16.69"/>
<close/>
<move x="35.83" y="16.69"/>
<line x="28.22" y="16.69"/>
<curve x1="27.32" y1="16.69" x2="26.59" y2="15.96" x3="26.59" y3="15.05"/>
<line x="26.59" y="10.53"/>
<line x="37.45" y="10.53"/>
<line x="37.45" y="15.05"/>
<curve x1="37.45" y1="15.96" x2="36.72" y2="16.69" x3="35.83" y3="16.69"/>
<close/>
<move x="48.64" y="16.69"/>
<line x="41.03" y="16.69"/>
<curve x1="40.13" y1="16.69" x2="39.4" y2="15.96" x3="39.4" y3="15.05"/>
<line x="39.4" y="10.53"/>
<line x="50.26" y="10.53"/>
<line x="50.26" y="15.05"/>
<curve x1="50.26" y1="15.96" x2="49.53" y2="16.69" x3="48.64" y3="16.69"/>
<close/>
<move x="61.44" y="16.69"/>
<line x="53.83" y="16.69"/>
<curve x1="52.93" y1="16.69" x2="52.2" y2="15.96" x3="52.2" y3="15.05"/>
<line x="52.2" y="10.53"/>
<line x="63.06" y="10.53"/>
<line x="63.06" y="15.05"/>
<curve x1="63.07" y1="15.96" x2="62.34" y2="16.69" x3="61.44" y3="16.69"/>
<close/>
<move x="74.09" y="15.2"/>
<line x="66.8" y="15.2"/>
<curve x1="65.9" y1="15.2" x2="65.17" y2="14.47" x3="65.17" y3="13.56"/>
<line x="65.17" y="10.53"/>
<line x="75.71" y="10.53"/>
<line x="75.71" y="13.56"/>
<curve x1="75.72" y1="14.47" x2="74.99" y2="15.2" x3="74.09" y3="15.2"/>
<close/>
<move x="86.9" y="15.2"/>
<line x="79.61" y="15.2"/>
<curve x1="78.71" y1="15.2" x2="77.98" y2="14.47" x3="77.98" y3="13.56"/>
<line x="77.98" y="10.53"/>
<line x="88.52" y="10.53"/>
<line x="88.52" y="13.56"/>
<curve x1="88.53" y1="14.47" x2="87.8" y2="15.2" x3="86.9" y3="15.2"/>
<close/>
</path>
<fillstroke/>
</foreground>
</shape>
<shape name="Bus 3" h="33.35" w="99.23" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.5" y="0" perimeter="0" name="N"/>
<constraint x="0.5" y="0.88" perimeter="0" name="S"/>
<constraint x="0" y="0.5" perimeter="0" name="W"/>
<constraint x="1" y="0.5" perimeter="0" name="E"/>
<constraint x="0.02" y="0.01" perimeter="0" name="NW"/>
<constraint x="0.01" y="0.87" perimeter="0" name="SW"/>
<constraint x="0.97" y="0.02" perimeter="0" name="NE"/>
<constraint x="1" y="0.75" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="22.3" y="33.35"/>
<line x="22.3" y="33.35"/>
<curve x1="22.3" y1="33.35" x2="22.29" y2="33.35" x3="22.29" y3="33.35"/>
<line x="22.29" y="33.35"/>
<curve x1="19.21" y1="33.34" x2="16.71" y2="30.82" x3="16.71" y3="27.71"/>
<line x="16.71" y="27.71"/>
<curve x1="16.71" y1="27.69" x2="16.71" y2="27.67" x3="16.71" y3="27.65"/>
<line x="16.71" y="27.65"/>
<curve x1="16.74" y1="24.56" x2="19.23" y2="22.07" x3="22.3" y3="22.07"/>
<line x="22.3" y="22.07"/>
<curve x1="25.39" y1="22.07" x2="27.89" y2="24.59" x3="27.89" y3="27.71"/>
<line x="27.89" y="27.71"/>
<curve x1="27.89" y1="27.71" x2="27.89" y2="27.72" x3="27.89" y3="27.73"/>
<line x="27.89" y="27.73"/>
<curve x1="27.88" y1="30.84" x2="25.38" y2="33.35" x3="22.3" y3="33.35"/>
<line x="22.3" y="33.35"/>
<line x="22.3" y="33.35"/>
<close/>
<move x="22.29" y="29.65"/>
<curve x1="22.29" y1="29.65" x2="22.29" y2="29.65" x3="22.3" y3="29.65"/>
<line x="22.3" y="29.65"/>
<curve x1="23.36" y1="29.65" x2="24.22" y2="28.78" x3="24.22" y3="27.72"/>
<line x="24.22" y="27.72"/>
<curve x1="24.22" y1="27.71" x2="24.22" y2="27.71" x3="24.22" y3="27.7"/>
<line x="24.22" y="27.7"/>
<curve x1="24.22" y1="26.63" x2="23.36" y2="25.77" x3="22.3" y3="25.76"/>
<line x="22.3" y="25.76"/>
<curve x1="21.24" y1="25.76" x2="20.38" y2="26.63" x3="20.38" y3="27.7"/>
<line x="20.38" y="27.7"/>
<line x="20.38" y="27.75"/>
<line x="20.38" y="27.75"/>
<curve x1="20.4" y1="28.81" x2="21.25" y2="29.65" x3="22.29" y3="29.65"/>
<line x="22.29" y="29.65"/>
<line x="22.29" y="29.65"/>
<line x="22.29" y="29.65"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
<path>
<move x="72.08" y="33.35"/>
<line x="72.08" y="33.35"/>
<curve x1="72.08" y1="33.35" x2="72.07" y2="33.35" x3="72.07" y3="33.35"/>
<line x="72.07" y="33.35"/>
<curve x1="68.99" y1="33.34" x2="66.49" y2="30.82" x3="66.49" y3="27.71"/>
<line x="66.49" y="27.71"/>
<curve x1="66.49" y1="27.71" x2="66.49" y2="27.71" x3="66.49" y3="27.7"/>
<line x="66.49" y="27.7"/>
<line x="66.49" y="27.7"/>
<curve x1="66.49" y1="24.59" x2="68.99" y2="22.06" x3="72.08" y3="22.06"/>
<line x="72.08" y="22.06"/>
<curve x1="75.17" y1="22.06" x2="77.67" y2="24.58" x3="77.67" y3="27.69"/>
<line x="77.67" y="27.69"/>
<line x="77.67" y="27.69"/>
<line x="77.67" y="27.69"/>
<curve x1="77.67" y1="27.69" x2="77.67" y2="27.7" x3="77.67" y3="27.71"/>
<line x="77.67" y="27.71"/>
<curve x1="77.66" y1="30.84" x2="75.16" y2="33.35" x3="72.08" y3="33.35"/>
<line x="72.08" y="33.35"/>
<line x="72.08" y="33.35"/>
<close/>
<move x="72.07" y="29.65"/>
<curve x1="72.07" y1="29.65" x2="72.08" y2="29.65" x3="72.08" y3="29.65"/>
<line x="72.08" y="29.65"/>
<curve x1="73.14" y1="29.65" x2="74" y2="28.79" x3="74" y3="27.72"/>
<line x="74" y="27.72"/>
<curve x1="74" y1="27.71" x2="74" y2="27.71" x3="74" y3="27.7"/>
<line x="74" y="27.7"/>
<curve x1="74" y1="26.63" x2="73.14" y2="25.77" x3="72.08" y3="25.76"/>
<line x="72.08" y="25.76"/>
<curve x1="71.02" y1="25.76" x2="70.16" y2="26.63" x3="70.16" y3="27.7"/>
<line x="70.16" y="27.7"/>
<line x="70.16" y="27.76"/>
<curve x1="70.19" y1="28.81" x2="71.03" y2="29.65" x3="72.07" y3="29.65"/>
<line x="72.07" y="29.65"/>
<line x="72.07" y="29.65"/>
<line x="72.07" y="29.65"/>
<close/>
<move x="94.01" y="0.07"/>
<line x="74.93" y="0.1"/>
<line x="62.78" y="0.13"/>
<line x="50.62" y="0.15"/>
<line x="38.46" y="0.18"/>
<line x="26.3" y="0.2"/>
<line x="3.34" y="0.11"/>
<curve x1="2.56" y1="0.17" x2="1.93" y2="0.67" x3="1.9" y3="1.41"/>
<line x="1.31" y="14.71"/>
<line x="0" y="15.73"/>
<line x="0" y="22.24"/>
<line x="0.02" y="27.23"/>
<curve x1="0" y1="28.56" x2="0.99" y2="29.26" x3="1.98" y3="29.29"/>
<line x="16.19" y="29.29"/>
<curve x1="16.06" y1="28.79" x2="15.99" y2="28.26" x3="15.99" y3="27.71"/>
<curve x1="15.99" y1="27.68" x2="15.99" y2="27.66" x3="15.99" y3="27.64"/>
<curve x1="16.02" y1="24.15" x2="18.83" y2="21.34" x3="22.3" y3="21.34"/>
<curve x1="25.79" y1="21.34" x2="28.61" y2="24.19" x3="28.61" y3="27.7"/>
<line x="28.61" y="27.72"/>
<curve x1="28.61" y1="28.26" x2="28.54" y2="28.78" x3="28.41" y3="29.28"/>
<line x="49.37" y="29.28"/>
<line x="65.97" y="29.32"/>
<curve x1="65.84" y1="28.8" x2="65.76" y2="28.26" x3="65.76" y3="27.7"/>
<line x="65.76" y="27.69"/>
<curve x1="65.76" y1="24.18" x2="68.59" y2="21.33" x3="72.07" y3="21.33"/>
<curve x1="75.56" y1="21.33" x2="78.38" y2="24.18" x3="78.38" y3="27.69"/>
<line x="78.38" y="27.71"/>
<curve x1="78.38" y1="28.28" x2="78.3" y2="28.83" x3="78.16" y3="29.36"/>
<line x="99.06" y="25.17"/>
<line x="99.19" y="4.64"/>
<curve x1="99.23" y1="2.31" x2="96.34" y2="0" x3="94.01" y3="0.07"/>
<close/>
<move x="12.26" y="24.44"/>
<curve x1="12.26" y1="25.22" x2="11.63" y2="25.86" x3="10.85" y3="25.86"/>
<line x="7.35" y="25.86"/>
<curve x1="6.57" y1="25.86" x2="5.94" y2="25.23" x3="5.94" y3="24.44"/>
<line x="5.94" y="6.58"/>
<curve x1="5.94" y1="5.79" x2="6.57" y2="5.16" x3="7.35" y3="5.16"/>
<line x="10.86" y="5.16"/>
<curve x1="11.64" y1="5.16" x2="12.27" y2="5.79" x3="12.27" y3="6.58"/>
<line x="12.27" y="24.44"/>
<close/>
<move x="33.8" y="12.34"/>
<curve x1="33.8" y1="13.13" x2="33.17" y2="13.76" x3="32.39" y3="13.76"/>
<line x="17.9" y="13.76"/>
<curve x1="17.12" y1="13.76" x2="16.49" y2="13.13" x3="16.49" y3="12.34"/>
<line x="16.49" y="6.52"/>
<curve x1="16.49" y1="5.73" x2="17.12" y2="5.1" x3="17.9" y3="5.1"/>
<line x="32.39" y="5.1"/>
<curve x1="33.17" y1="5.1" x2="33.8" y2="5.73" x3="33.8" y3="6.52"/>
<line x="33.8" y="12.34"/>
<close/>
<move x="54.51" y="12.34"/>
<curve x1="54.51" y1="13.13" x2="53.88" y2="13.76" x3="53.1" y3="13.76"/>
<line x="38.61" y="13.76"/>
<curve x1="37.83" y1="13.76" x2="37.2" y2="13.13" x3="37.2" y3="12.34"/>
<line x="37.2" y="6.52"/>
<curve x1="37.2" y1="5.73" x2="37.83" y2="5.1" x3="38.61" y3="5.1"/>
<line x="53.1" y="5.1"/>
<curve x1="53.88" y1="5.1" x2="54.51" y2="5.73" x3="54.51" y3="6.52"/>
<line x="54.51" y="12.34"/>
<close/>
<move x="75.15" y="12.34"/>
<curve x1="75.15" y1="13.13" x2="74.52" y2="13.76" x3="73.74" y3="13.76"/>
<line x="59.26" y="13.76"/>
<curve x1="58.48" y1="13.76" x2="57.85" y2="13.13" x3="57.85" y3="12.34"/>
<line x="57.85" y="6.52"/>
<curve x1="57.85" y1="5.73" x2="58.48" y2="5.1" x3="59.26" y3="5.1"/>
<line x="73.75" y="5.1"/>
<curve x1="74.53" y1="5.1" x2="75.16" y2="5.73" x3="75.16" y3="6.52"/>
<line x="75.16" y="12.34"/>
<close/>
<move x="95.68" y="12.34"/>
<curve x1="95.68" y1="13.13" x2="95.05" y2="13.76" x3="94.27" y3="13.76"/>
<line x="79.78" y="13.76"/>
<curve x1="79" y1="13.76" x2="78.37" y2="13.13" x3="78.37" y3="12.34"/>
<line x="78.37" y="6.52"/>
<curve x1="78.37" y1="5.73" x2="79" y2="5.1" x3="79.78" y3="5.1"/>
<line x="91.61" y="5.1"/>
<curve x1="93.99" y1="5.1" x2="95.68" y2="6.58" x3="95.68" y3="8.09"/>
<line x="95.68" y="12.34"/>
<close/>
</path>
<fillstroke/>
</foreground>
</shape>
<shape name="Bus 4" h="100.51" w="81.59" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.5" y="0" perimeter="0" name="N"/>
<constraint x="0.5" y="0.86" perimeter="0" name="S"/>
<constraint x="0" y="0.5" perimeter="0" name="W"/>
<constraint x="1" y="0.5" perimeter="0" name="E"/>
<constraint x="0.08" y="0.09" perimeter="0" name="NW"/>
<constraint x="0.15" y="0.98" perimeter="0" name="SW"/>
<constraint x="0.92" y="0.09" perimeter="0" name="NE"/>
<constraint x="0.85" y="0.98" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="77.62" y="14.56"/>
<curve x1="76.52" y1="9.11" x2="73" y2="6.94" x3="67.69" y3="4.78"/>
<curve x1="62.5" y1="2.64" x2="50.02" y2="0.08" x3="40.79" y3="0.01"/>
<curve x1="31.55" y1="0.09" x2="19.07" y2="2.64" x3="13.84" y3="4.78"/>
<curve x1="8.57" y1="6.95" x2="5.04" y2="9.12" x3="3.96" y3="14.56"/>
<line x="0" y="44.62"/>
<line x="0" y="86.09"/>
<line x="6.84" y="86.09"/>
<line x="6.84" y="92.56"/>
<curve x1="6.81" y1="100.51" x2="18.58" y2="100.51" x3="18.59" y3="92.56"/>
<line x="18.59" y="86.09"/>
<line x="40.33" y="86.09"/>
<line x="40.38" y="86.09"/>
<line x="63" y="86.09"/>
<line x="63" y="92.56"/>
<curve x1="62.99" y1="100.51" x2="74.76" y2="100.51" x3="74.75" y3="92.56"/>
<line x="74.75" y="86.09"/>
<line x="81.59" y="86.09"/>
<line x="81.59" y="44.62"/>
<line x="77.62" y="14.56"/>
<close/>
<move x="23.99" y="7.61"/>
<line x="40.38" y="7.61"/>
<line x="57.59" y="7.61"/>
<curve x1="60.88" y1="7.6" x2="60.88" y2="12.49" x3="57.59" y3="12.5"/>
<line x="40.32" y="12.5"/>
<line x="23.99" y="12.5"/>
<curve x1="20.69" y1="12.48" x2="20.69" y2="7.6" x3="23.99" y3="7.61"/>
<close/>
<move x="12.68" y="73.11"/>
<curve x1="9.58" y1="73.1" x2="7.05" y2="70.61" x3="7.05" y3="67.51"/>
<curve x1="7.05" y1="64.46" x2="9.58" y2="61.97" x3="12.68" y3="61.97"/>
<curve x1="15.82" y1="61.97" x2="18.35" y2="64.46" x3="18.36" y3="67.51"/>
<curve x1="18.35" y1="70.6" x2="15.82" y2="73.09" x3="12.68" y3="73.11"/>
<close/>
<move x="40.38" y="47.78"/>
<line x="10.42" y="47.78"/>
<curve x1="7.5" y1="47.81" x2="6.88" y2="45.73" x3="7.17" y3="43.65"/>
<line x="10.26" y="21.8"/>
<curve x1="10.69" y1="19.17" x2="11.6" y2="17.42" x3="15.11" y3="17.4"/>
<line x="40.32" y="17.4"/>
<line x="66.47" y="17.4"/>
<curve x1="69.97" y1="17.42" x2="70.88" y2="19.17" x3="71.32" y3="21.8"/>
<line x="74.41" y="43.65"/>
<curve x1="74.68" y1="45.73" x2="74.06" y2="47.81" x3="71.15" y3="47.78"/>
<line x="40.38" y="47.78"/>
<close/>
<move x="68.84" y="73.11"/>
<curve x1="65.74" y1="73.1" x2="63.21" y2="70.61" x3="63.21" y3="67.51"/>
<curve x1="63.21" y1="64.46" x2="65.74" y2="61.97" x3="68.84" y3="61.97"/>
<curve x1="71.98" y1="61.97" x2="74.51" y2="64.46" x3="74.52" y3="67.51"/>
<curve x1="74.51" y1="70.6" x2="71.98" y2="73.09" x3="68.84" y3="73.11"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
<path>
<move x="40.38" y="0"/>
<curve x1="40.51" y1="0" x2="40.66" y2="0.01" x3="40.79" y3="0.01"/>
<curve x1="40.93" y1="0.01" x2="41.07" y2="0" x3="41.2" y3="0"/>
<line x="40.38" y="0"/>
<close/>
</path>
<fillstroke/>
</foreground>
</shape>
<shape name="Car 1" h="88.94" w="99.32" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.5" y="0" perimeter="0" name="N"/>
<constraint x="0.5" y="0.82" perimeter="0" name="S"/>
<constraint x="0.01" y="0.5" perimeter="0" name="W"/>
<constraint x="0.99" y="0.5" perimeter="0" name="E"/>
<constraint x="0.2" y="0.015" perimeter="0" name="NW"/>
<constraint x="0.23" y="1" perimeter="0" name="SW"/>
<constraint x="0.8" y="0.015" perimeter="0" name="NE"/>
<constraint x="0.77" y="1" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="98.26" y="44.27"/>
<curve x1="97.84" y1="40.13" x2="97.84" y2="40.73" x3="96.3" y3="36.25"/>
<curve x1="94.73" y1="31.71" x2="91.43" y2="22.83" x3="89.06" y3="17.58"/>
<curve x1="86.64" y1="12.27" x2="84.07" y2="7.73" x3="82.2" y3="4.93"/>
<curve x1="80.35" y1="2.13" x2="79.85" y2="1.9" x3="78.1" y3="1.12"/>
<curve x1="76.29" y1="0.33" x2="73.97" y2="0.46" x3="71.65" y3="0.32"/>
<curve x1="69.35" y1="0.11" x2="66.94" y2="0" x3="64.38" y3="0"/>
<line x="35.15" y="0"/>
<curve x1="32.53" y1="0" x2="30.06" y2="0.1" x3="27.75" y3="0.31"/>
<curve x1="25.42" y1="0.46" x2="23.04" y2="0.32" x3="21.28" y3="1.11"/>
<curve x1="19.5" y1="1.88" x2="18.99" y2="2.12" x3="17.18" y3="4.92"/>
<curve x1="15.27" y1="7.72" x2="12.74" y2="12.26" x3="10.34" y3="17.57"/>
<curve x1="7.95" y1="22.82" x2="4.64" y2="31.71" x3="3.11" y3="36.24"/>
<curve x1="1.56" y1="40.72" x2="1.5" y2="40.12" x3="1.14" y3="44.26"/>
<curve x1="0.74" y1="48.44" x2="0" y2="56.34" x3="0.75" y3="60.74"/>
<curve x1="1.46" y1="65" x2="3.23" y2="67.88" x3="5.43" y3="69.96"/>
<curve x1="7.62" y1="72.03" x2="10.4" y2="73.1" x3="13.84" y3="73.18"/>
<curve x1="13.65" y1="77.57" x2="13.65" y2="80.96" x3="13.84" y3="83.42"/>
<curve x1="13.94" y1="85.85" x2="13.77" y2="86.92" x3="14.83" y3="87.84"/>
<curve x1="15.9" y1="88.72" x2="18.64" y2="88.76" x3="20.31" y3="88.84"/>
<curve x1="21.95" y1="88.94" x2="23.72" y2="88.9" x3="24.62" y3="88.24"/>
<curve x1="25.46" y1="87.5" x2="25.22" y2="86.93" x3="25.39" y3="84.41"/>
<curve x1="25.53" y1="81.82" x2="25.62" y2="78.07" x3="25.59" y3="72.99"/>
<line x="73.51" y="72.99"/>
<curve x1="73.63" y1="78.08" x2="73.77" y2="81.83" x3="74" y3="84.41"/>
<curve x1="74.19" y1="86.93" x2="73.93" y2="87.49" x3="74.78" y3="88.24"/>
<curve x1="75.67" y1="88.89" x2="77.38" y2="88.94" x3="79.07" y3="88.84"/>
<curve x1="80.69" y1="88.77" x2="83.43" y2="88.72" x3="84.55" y3="87.84"/>
<curve x1="85.56" y1="86.92" x2="85.39" y2="85.85" x3="85.54" y3="83.42"/>
<curve x1="85.7" y1="80.96" x2="85.7" y2="77.57" x3="85.54" y3="73.18"/>
<curve x1="88.96" y1="73.1" x2="91.75" y2="72.03" x3="93.95" y3="69.96"/>
<curve x1="96.14" y1="67.88" x2="97.89" y2="64.99" x3="98.65" y3="60.74"/>
<curve x1="99.32" y1="56.34" x2="98.67" y2="48.44" x3="98.26" y3="44.27"/>
<close/>
<move x="14.95" y="62.34"/>
<curve x1="9.88" y1="62.34" x2="5.76" y2="58.11" x3="5.76" y3="52.91"/>
<curve x1="5.76" y1="47.7" x2="9.88" y2="43.48" x3="14.95" y3="43.48"/>
<curve x1="20.02" y1="43.48" x2="24.14" y2="47.71" x3="24.14" y3="52.91"/>
<curve x1="24.14" y1="58.11" x2="20.02" y2="62.34" x3="14.95" y3="62.34"/>
<close/>
<move x="62.76" y="60.53"/>
<line x="36.65" y="60.53"/>
<curve x1="33.92" y1="60.53" x2="31.71" y2="59" x3="31.71" y3="57.11"/>
<curve x1="31.71" y1="55.23" x2="33.92" y2="53.7" x3="36.65" y3="53.7"/>
<line x="62.76" y="53.7"/>
<curve x1="65.49" y1="53.7" x2="67.7" y2="55.23" x3="67.7" y3="57.11"/>
<curve x1="67.7" y1="59" x2="65.49" y2="60.53" x3="62.76" y3="60.53"/>
<close/>
<move x="62.76" y="51.29"/>
<line x="36.65" y="51.29"/>
<curve x1="33.92" y1="51.29" x2="31.71" y2="49.76" x3="31.71" y3="47.88"/>
<curve x1="31.71" y1="46" x2="33.92" y2="44.47" x3="36.65" y3="44.47"/>
<line x="62.76" y="44.47"/>
<curve x1="65.49" y1="44.47" x2="67.7" y2="45.99" x3="67.7" y3="47.88"/>
<curve x1="67.7" y1="49.77" x2="65.49" y2="51.29" x3="62.76" y3="51.29"/>
<close/>
<move x="66.94" y="33.44"/>
<curve x1="59.33" y1="33.47" x2="39.65" y2="33.47" x3="32.13" y3="33.44"/>
<curve x1="24.66" y1="33.38" x2="25.31" y2="33.5" x3="22.34" y3="33.23"/>
<curve x1="19.34" y1="32.96" x2="15.83" y2="32.71" x3="14.32" y3="31.83"/>
<curve x1="12.81" y1="30.88" x2="12.99" y2="29.8" x3="13.33" y3="27.81"/>
<curve x1="13.69" y1="25.77" x2="14.95" y2="22.75" x3="16.27" y3="19.78"/>
<curve x1="17.55" y1="16.75" x2="19.42" y2="12.28" x3="20.77" y3="9.94"/>
<curve x1="22.05" y1="7.59" x2="22.67" y2="6.79" x3="24.09" y3="5.92"/>
<curve x1="25.5" y1="5.04" x2="27.25" y2="4.91" x3="29.18" y3="4.72"/>
<curve x1="31.07" y1="4.47" x2="33.15" y2="4.42" x3="35.44" y3="4.53"/>
<line x="63.93" y="4.53"/>
<curve x1="66.21" y1="4.43" x2="68.3" y2="4.47" x3="70.19" y3="4.72"/>
<curve x1="72.07" y1="4.91" x2="73.83" y2="5.05" x3="75.28" y3="5.92"/>
<curve x1="76.69" y1="6.78" x2="77.25" y2="7.59" x3="78.6" y3="9.94"/>
<curve x1="79.95" y1="12.28" x2="81.79" y2="16.74" x3="83.11" y3="19.78"/>
<curve x1="84.34" y1="22.76" x2="85.69" y2="25.77" x3="86.04" y3="27.81"/>
<curve x1="86.36" y1="29.8" x2="86.53" y2="30.87" x3="85.05" y3="31.83"/>
<curve x1="83.5" y1="32.71" x2="80.06" y2="32.96" x3="77.03" y3="33.23"/>
<curve x1="74" y1="33.5" x2="74.44" y2="33.38" x3="66.94" y3="33.44"/>
<close/>
<move x="84.45" y="62.34"/>
<curve x1="79.38" y1="62.34" x2="75.26" y2="58.11" x3="75.26" y3="52.91"/>
<curve x1="75.26" y1="47.7" x2="79.38" y2="43.48" x3="84.45" y3="43.48"/>
<curve x1="89.52" y1="43.48" x2="93.64" y2="47.71" x3="93.64" y3="52.91"/>
<curve x1="93.64" y1="58.11" x2="89.52" y2="62.34" x3="84.45" y3="62.34"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Car 2" h="33.54" w="100.29" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.5" y="0" perimeter="0" name="N"/>
<constraint x="0.5" y="0.725" perimeter="0" name="S"/>
<constraint x="0.015" y="0.5" perimeter="0" name="W"/>
<constraint x="0.985" y="0.5" perimeter="0" name="E"/>
<constraint x="0.165" y="1" perimeter="0" name="SW"/>
<constraint x="0.79" y="1" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="98.23" y="10.53"/>
<line x="78.99" y="8.89"/>
<line x="74.54" y="0"/>
<line x="40.56" y="0"/>
<line x="33.22" y="9.82"/>
<line x="2.43" y="11.45"/>
<line x="0" y="24.44"/>
<line x="7.03" y="24.44"/>
<curve x1="7.51" y1="19.56" x2="11.59" y2="15.75" x3="16.55" y3="15.75"/>
<curve x1="21.51" y1="15.75" x2="25.59" y2="19.56" x3="26.07" y3="24.44"/>
<line x="69.92" y="24.44"/>
<curve x1="70.4" y1="19.56" x2="74.48" y2="15.75" x3="79.44" y3="15.75"/>
<curve x1="84.38" y1="15.75" x2="88.44" y2="19.53" x3="88.96" y3="24.38"/>
<line x="97.62" y="23.12"/>
<curve x1="97.63" y1="23.11" x2="100.29" y2="13.01" x3="98.23" y3="10.53"/>
<close/>
<move x="55.22" y="10.76"/>
<line x="34.86" y="10.76"/>
<line x="41.52" y="1.86"/>
<line x="55.22" y="1.86"/>
<line x="55.22" y="10.76"/>
<close/>
<move x="57.07" y="10.76"/>
<line x="57.07" y="1.86"/>
<line x="69.93" y="1.86"/>
<line x="74.39" y="10.76"/>
<line x="57.07" y="10.76"/>
<close/>
<move x="16.56" y="17.28"/>
<curve x1="12.11" y1="17.28" x2="8.51" y2="20.92" x3="8.51" y3="25.41"/>
<curve x1="8.51" y1="29.9" x2="12.12" y2="33.54" x3="16.56" y3="33.54"/>
<curve x1="21.01" y1="33.54" x2="24.61" y2="29.9" x3="24.61" y3="25.41"/>
<curve x1="24.61" y1="20.92" x2="21.01" y2="17.28" x3="16.56" y3="17.28"/>
<close/>
<move x="16.56" y="30.78"/>
<curve x1="13.62" y1="30.78" x2="11.24" y2="28.38" x3="11.24" y3="25.41"/>
<curve x1="11.24" y1="22.44" x2="13.62" y2="20.04" x3="16.56" y3="20.04"/>
<curve x1="19.5" y1="20.04" x2="21.88" y2="22.44" x3="21.88" y3="25.41"/>
<curve x1="21.88" y1="28.38" x2="19.5" y2="30.78" x3="16.56" y3="30.78"/>
<close/>
<move x="79.45" y="17.28"/>
<curve x1="75" y1="17.28" x2="71.4" y2="20.92" x3="71.4" y3="25.41"/>
<curve x1="71.4" y1="29.9" x2="75.01" y2="33.54" x3="79.45" y3="33.54"/>
<curve x1="83.9" y1="33.54" x2="87.5" y2="29.9" x3="87.5" y3="25.41"/>
<curve x1="87.5" y1="20.92" x2="83.89" y2="17.28" x3="79.45" y3="17.28"/>
<close/>
<move x="79.45" y="30.78"/>
<curve x1="76.51" y1="30.78" x2="74.13" y2="28.38" x3="74.13" y3="25.41"/>
<curve x1="74.13" y1="22.44" x2="76.51" y2="20.04" x3="79.45" y3="20.04"/>
<curve x1="82.39" y1="20.04" x2="84.77" y2="22.44" x3="84.77" y3="25.41"/>
<curve x1="84.77" y1="28.38" x2="82.38" y2="30.78" x3="79.45" y3="30.78"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Car 3" h="38.48" w="99.14" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.5" y="0" perimeter="0" name="N"/>
<constraint x="0.5" y="0.8" perimeter="0" name="S"/>
<constraint x="0" y="0.5" perimeter="0" name="W"/>
<constraint x="1" y="0.5" perimeter="0" name="E"/>
<constraint x="0.165" y="1" perimeter="0" name="SW"/>
<constraint x="0.845" y="1" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="99.06" y="16"/>
<curve x1="99.01" y1="15.72" x2="98.9" y2="15.38" x3="98.7" y3="14.94"/>
<line x="80.1" y="0.05"/>
<line x="42.68" y="0.05"/>
<curve x1="41.81" y1="0" x2="41.34" y2="0.41" x3="40.93" y3="0.89"/>
<line x="28.43" y="13.53"/>
<line x="1.07" y="18.11"/>
<curve x1="0.69" y1="18.45" x2="0.31" y2="18.78" x3="0" y3="19.64"/>
<line x="0.06" y="29.13"/>
<curve x1="0.65" y1="30.65" x2="1.06" y2="30.45" x3="1.51" y3="30.67"/>
<line x="6.78" y="30.67"/>
<curve x1="6.78" y1="17.77" x2="25.84" y2="17.81" x3="25.84" y3="30.67"/>
<line x="74.43" y="30.67"/>
<curve x1="74.43" y1="17.74" x2="93.34" y2="17.76" x3="93.34" y3="30.67"/>
<line x="97.66" y="30.67"/>
<curve x1="98.38" y1="30.6" x2="98.79" y2="29.96" x3="99.14" y3="29.2"/>
<line x="99.06" y="16"/>
<close/>
<move x="58.89" y="15.39"/>
<line x="32.97" y="15.39"/>
<curve x1="31.98" y1="15" x2="31.85" y2="14.4" x3="32.26" y3="13.68"/>
<line x="41.58" y="4.4"/>
<curve x1="41.79" y1="4.22" x2="41.96" y2="3.97" x3="42.32" y3="4.03"/>
<line x="58.89" y="4.03"/>
<line x="58.89" y="15.39"/>
<close/>
<move x="85.74" y="15.39"/>
<line x="61.97" y="15.39"/>
<line x="61.97" y="4.02"/>
<line x="75.91" y="4.02"/>
<curve x1="76.27" y1="3.96" x2="76.44" y2="4.21" x3="76.65" y3="4.39"/>
<line x="84.64" y="12.5"/>
<curve x1="85.38" y1="13.63" x2="86.86" y2="15.16" x3="85.74" y3="15.39"/>
<close/>
<move x="16.26" y="22.88"/>
<curve x1="11.99" y1="22.88" x2="8.52" y2="26.37" x3="8.52" y3="30.68"/>
<curve x1="8.52" y1="34.99" x2="11.98" y2="38.48" x3="16.26" y3="38.48"/>
<curve x1="20.54" y1="38.48" x2="24" y2="34.99" x3="24" y3="30.68"/>
<curve x1="24" y1="26.37" x2="20.53" y2="22.88" x3="16.26" y3="22.88"/>
<close/>
<move x="16.26" y="33.96"/>
<curve x1="14.46" y1="33.96" x2="12.99" y2="32.49" x3="12.99" y3="30.67"/>
<curve x1="12.99" y1="28.85" x2="14.45" y2="27.38" x3="16.26" y3="27.38"/>
<curve x1="18.06" y1="27.38" x2="19.52" y2="28.85" x3="19.52" y3="30.67"/>
<curve x1="19.52" y1="32.49" x2="18.06" y2="33.96" x3="16.26" y3="33.96"/>
<close/>
<move x="83.88" y="22.88"/>
<curve x1="79.61" y1="22.88" x2="76.14" y2="26.37" x3="76.14" y3="30.68"/>
<curve x1="76.14" y1="34.99" x2="79.6" y2="38.48" x3="83.88" y3="38.48"/>
<curve x1="88.16" y1="38.48" x2="91.61" y2="34.99" x3="91.61" y3="30.68"/>
<curve x1="91.61" y1="26.37" x2="88.15" y2="22.88" x3="83.88" y3="22.88"/>
<close/>
<move x="83.88" y="33.96"/>
<curve x1="82.08" y1="33.96" x2="80.61" y2="32.49" x3="80.61" y3="30.67"/>
<curve x1="80.61" y1="28.85" x2="82.07" y2="27.38" x3="83.88" y3="27.38"/>
<curve x1="85.68" y1="27.38" x2="87.14" y2="28.85" x3="87.14" y3="30.67"/>
<curve x1="87.14" y1="32.49" x2="85.68" y2="33.96" x3="83.88" y3="33.96"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Car 4" h="86.34" w="98.64" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.5" y="0" perimeter="0" name="N"/>
<constraint x="0.5" y="0.775" perimeter="0" name="S"/>
<constraint x="0" y="0.5" perimeter="0" name="W"/>
<constraint x="1" y="0.5" perimeter="0" name="E"/>
<constraint x="0.23" y="0.01" perimeter="0" name="NW"/>
<constraint x="0.15" y="0.97" perimeter="0" name="SW"/>
<constraint x="0.77" y="0.01" perimeter="0" name="NE"/>
<constraint x="0.85" y="0.97" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="89.68" y="28.69"/>
<line x="81.6" y="7.52"/>
<curve x1="80.09" y1="3.47" x2="76.78" y2="0.02" x3="70.53" y3="0"/>
<line x="59.13" y="0"/>
<line x="39.64" y="0"/>
<line x="28.04" y="0"/>
<curve x1="21.82" y1="0.03" x2="18.51" y2="3.48" x3="16.97" y3="7.53"/>
<line x="8.89" y="28.69"/>
<curve x1="5.68" y1="29.11" x2="0" y2="32.94" x3="0.01" y3="40.18"/>
<line x="0.01" y="67.13"/>
<line x="7.9" y="67.13"/>
<line x="7.9" y="75.73"/>
<curve x1="7.88" y1="86.34" x2="22.68" y2="86.21" x3="22.68" y3="75.73"/>
<line x="22.68" y="67.13"/>
<line x="49.32" y="67.13"/>
<line x="75.9" y="67.13"/>
<line x="75.9" y="75.73"/>
<curve x1="75.93" y1="86.21" x2="90.74" y2="86.34" x3="90.75" y3="75.73"/>
<line x="90.75" y="67.13"/>
<line x="98.64" y="67.13"/>
<line x="98.64" y="40.18"/>
<curve x1="98.61" y1="32.94" x2="92.92" y2="29.11" x3="89.68" y3="28.69"/>
<close/>
<move x="15.52" y="50.87"/>
<curve x1="11.74" y1="50.88" x2="8.68" y2="47.68" x3="8.69" y3="43.75"/>
<curve x1="8.67" y1="39.79" x2="11.74" y2="36.59" x3="15.52" y3="36.62"/>
<curve x1="19.29" y1="36.59" x2="22.35" y2="39.79" x3="22.35" y3="43.75"/>
<curve x1="22.35" y1="47.68" x2="19.29" y2="50.88" x3="15.52" y3="50.87"/>
<close/>
<move x="49.32" y="28.49"/>
<line x="49.25" y="28.49"/>
<line x="17.31" y="28.49"/>
<line x="23.41" y="11.82"/>
<curve x1="24.15" y1="9.45" x2="25.29" y2="7.76" x3="27.99" y3="7.72"/>
<line x="49.26" y="7.72"/>
<line x="49.32" y="7.72"/>
<line x="70.66" y="7.72"/>
<curve x1="73.32" y1="7.76" x2="74.46" y2="9.45" x3="75.23" y3="11.82"/>
<line x="81.33" y="28.49"/>
<line x="49.32" y="28.49"/>
<close/>
<move x="83.12" y="50.87"/>
<curve x1="79.31" y1="50.88" x2="76.25" y2="47.68" x3="76.23" y3="43.75"/>
<curve x1="76.25" y1="39.79" x2="79.31" y2="36.59" x3="83.12" y3="36.62"/>
<curve x1="86.86" y1="36.59" x2="89.92" y2="39.79" x3="89.95" y3="43.75"/>
<curve x1="89.93" y1="47.68" x2="86.87" y2="50.88" x3="83.12" y3="50.87"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Car Lock" h="75.93" w="98.68" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.5" y="0" perimeter="0" name="N"/>
<constraint x="0.5" y="1" perimeter="0" name="S"/>
<constraint x="0.015" y="0.5" perimeter="0" name="W"/>
<constraint x="1" y="0.5" perimeter="0" name="E"/>
<constraint x="0.03" y="0.97" perimeter="0" name="SW"/>
<constraint x="0.97" y="0.03" perimeter="0" name="NE"/>
<constraint x="0.97" y="0.97" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="89.83" y="0"/>
<line x="43.81" y="0"/>
<curve x1="41.82" y1="0" x2="39.99" y2="0.67" x3="38.51" y3="1.8"/>
<line x="38.51" y="1.79"/>
<line x="38.51" y="1.79"/>
<curve x1="37.92" y1="2.25" x2="2.42" y2="36.9" x3="1.97" y3="37.46"/>
<line x="1.97" y="37.47"/>
<line x="1.97" y="37.47"/>
<curve x1="0.74" y1="39" x2="0" y2="40.96" x3="0" y3="43.09"/>
<line x="0" y="66.97"/>
<curve x1="0" y1="71.92" x2="3.96" y2="75.93" x3="8.84" y3="75.93"/>
<line x="89.84" y="75.93"/>
<curve x1="94.72" y1="75.93" x2="98.68" y2="71.92" x3="98.68" y3="66.97"/>
<line x="98.68" y="61.38"/>
<line x="98.68" y="43.09"/>
<line x="98.68" y="30.03"/>
<line x="98.68" y="15.85"/>
<line x="98.68" y="8.95"/>
<curve x1="98.67" y1="4.01" x2="94.71" y2="0" x3="89.83" y3="0"/>
<close/>
<move x="85.84" y="65.83"/>
<curve x1="85.84" y1="67.89" x2="84.19" y2="69.56" x3="82.16" y3="69.56"/>
<line x="70.25" y="69.56"/>
<line x="65.1" y="63.34"/>
<line x="18.22" y="63.34"/>
<curve x1="18.22" y1="63.34" x2="12.82" y2="60.48" x3="12.82" y3="54.88"/>
<curve x1="12.82" y1="53.64" x2="16.75" y2="51.89" x3="16.75" y3="51.89"/>
<line x="21.97" y="51.89"/>
<line x="26.69" y="57.61"/>
<line x="26.69" y="57.61"/>
<line x="31.41" y="51.89"/>
<line x="41.48" y="51.89"/>
<line x="46.2" y="57.61"/>
<line x="46.2" y="57.61"/>
<line x="50.92" y="51.89"/>
<line x="65.1" y="51.89"/>
<line x="70.25" y="45.67"/>
<line x="82.16" y="45.67"/>
<curve x1="84.19" y1="45.67" x2="85.84" y2="47.34" x3="85.84" y3="49.4"/>
<line x="85.84" y="65.83"/>
<close/>
<move x="93.57" y="39.15"/>
<line x="8.04" y="39.15"/>
<line x="42.76" y="5.22"/>
<line x="93.57" y="5.22"/>
<line x="93.57" y="39.15"/>
<close/>
<move x="79.7" y="48.35"/>
<curve x1="78.48" y1="48.35" x2="77.49" y2="49.35" x3="77.49" y3="50.59"/>
<line x="77.49" y="64.65"/>
<curve x1="77.49" y1="65.89" x2="78.48" y2="66.89" x3="79.7" y3="66.89"/>
<curve x1="80.92" y1="66.89" x2="81.91" y2="65.89" x3="81.91" y3="64.65"/>
<line x="81.91" y="50.59"/>
<curve x1="81.91" y1="49.36" x2="80.92" y2="48.35" x3="79.7" y3="48.35"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Divided Highway" h="98.63" w="84.1" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.42" y="0" perimeter="0" name="N"/>
<constraint x="0.11" y="0.5" perimeter="0" name="W"/>
<constraint x="0.865" y="0.5" perimeter="0" name="E"/>
<constraint x="0.07" y="0.17" perimeter="0" name="NW"/>
<constraint x="0.235" y="1" perimeter="0" name="SW"/>
<constraint x="0.785" y="0.095" perimeter="0" name="NE"/>
<constraint x="0.63" y="0.925" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="72.74" y="35.68"/>
<line x="72.74" y="46.2"/>
<curve x1="72.74" y1="51.35" x2="71.52" y2="56.44" x3="69.32" y3="61.11"/>
<curve x1="68.59" y1="62.67" x2="67.74" y2="64.18" x3="66.76" y3="65.6"/>
<curve x1="64.95" y1="68.22" x2="62.97" y2="70.75" x3="61.62" y3="73.64"/>
<curve x1="60.27" y1="76.56" x2="59.49" y2="79.74" x3="59.49" y3="82.95"/>
<line x="59.49" y="91.06"/>
<line x="46.27" y="91.06"/>
<line x="46.27" y="82.95"/>
<curve x1="46.27" y1="79.41" x2="46.79" y2="75.87" x3="47.79" y3="72.48"/>
<curve x1="48.7" y1="69.41" x2="49.99" y2="66.38" x3="51.83" y3="63.73"/>
<curve x1="52.74" y1="62.42" x2="53.79" y2="61.2" x3="54.81" y3="59.98"/>
<curve x1="55.72" y1="58.89" x2="56.57" y2="57.79" x3="57.2" y3="56.52"/>
<curve x1="58.8" y1="53.27" x2="59.36" y2="49.66" x3="59.38" y3="46.08"/>
<line x="59.45" y="35.69"/>
<line x="51.77" y="38.18"/>
<curve x1="51.52" y1="38.28" x2="51.31" y2="38.35" x3="51.04" y3="38.37"/>
<curve x1="50.08" y1="38.45" x2="49.12" y2="37.97" x3="48.6" y3="37.17"/>
<curve x1="48.16" y1="36.48" x2="48.06" y2="35.58" x3="48.32" y3="34.81"/>
<curve x1="48.46" y1="34.41" x2="48.68" y2="34.2" x3="48.91" y3="33.86"/>
<line x="65.99" y="9.57"/>
<line x="83.33" y="33.92"/>
<curve x1="83.77" y1="34.53" x2="84.02" y2="34.75" x3="84.05" y3="35.47"/>
<curve x1="84.1" y1="36.5" x2="83.76" y2="37.36" x3="82.87" y3="37.95"/>
<curve x1="82.3" y1="38.33" x2="81.63" y2="38.43" x3="80.96" y3="38.33"/>
<curve x1="80.77" y1="38.3" x2="80.66" y2="38.23" x3="80.48" y3="38.17"/>
<line x="72.74" y="35.68"/>
<close/>
<move x="26.41" y="72.51"/>
<line x="34.16" y="70.04"/>
<curve x1="34.5" y1="69.92" x2="34.67" y2="69.84" x3="35.02" y3="69.84"/>
<curve x1="36.01" y1="69.84" x2="36.76" y2="70.16" x3="37.34" y3="70.97"/>
<curve x1="37.85" y1="71.69" x2="37.94" y2="72.66" x3="37.61" y3="73.47"/>
<curve x1="37.47" y1="73.83" x2="37.29" y2="73.98" x3="37.07" y3="74.28"/>
<line x="19.66" y="98.63"/>
<line x="2.65" y="74.34"/>
<curve x1="2.49" y1="74.1" x2="2.11" y2="73.65" x3="2" y3="73.3"/>
<curve x1="1.92" y1="73.04" x2="1.86" y2="72.77" x3="1.86" y3="72.51"/>
<curve x1="1.85" y1="71.42" x2="2.58" y2="70.49" x3="3.56" y3="70.06"/>
<curve x1="3.98" y1="69.87" x2="4.4" y2="69.8" x3="4.85" y3="69.89"/>
<curve x1="5.06" y1="69.93" x2="5.26" y2="69.94" x3="5.45" y3="70.05"/>
<line x="13.19" y="72.52"/>
<line x="13.13" y="62.14"/>
<curve x1="13.12" y1="59.71" x2="12.84" y2="57.28" x3="12.15" y3="54.94"/>
<curve x1="11.61" y1="53.11" x2="10.84" y2="51.29" x3="9.66" y3="49.76"/>
<curve x1="8.61" y1="48.4" x2="7.48" y2="47.11" x3="6.42" y3="45.76"/>
<curve x1="5.52" y1="44.61" x2="4.73" y2="43.38" x3="4.06" y3="42.1"/>
<curve x1="1.35" y1="36.92" x2="0" y2="31.09" x3="0" y3="25.31"/>
<line x="0" y="17.15"/>
<line x="13.24" y="17.15"/>
<line x="13.24" y="25.31"/>
<curve x1="13.24" y1="29.79" x2="14.72" y2="34.25" x3="17.26" y3="37.96"/>
<curve x1="18.25" y1="39.41" x2="19.29" y2="40.83" x3="20.28" y3="42.27"/>
<curve x1="21.34" y1="43.82" x2="22.27" y2="45.46" x3="23.06" y3="47.15"/>
<curve x1="25.25" y1="51.83" x2="26.42" y2="56.91" x3="26.42" y3="62.06"/>
<line x="26.42" y="72.51"/>
<close/>
<move x="48.68" y="0"/>
<curve x1="48.62" y1="2.5" x2="48.56" y2="4.99" x3="48.39" y3="7.49"/>
<curve x1="48.03" y1="12.78" x2="47.19" y2="18.04" x3="45.86" y3="23.17"/>
<curve x1="44.78" y1="27.34" x2="43.66" y2="31.57" x3="41.8" y3="35.48"/>
<curve x1="41.62" y1="35.86" x2="41.4" y2="36.24" x3="41.16" y3="36.59"/>
<curve x1="40.15" y1="38.06" x2="38.79" y2="38.97" x3="37.02" y3="39.34"/>
<curve x1="35.29" y1="39.69" x2="33.48" y2="39.23" x3="32.05" y3="38.23"/>
<curve x1="31.04" y1="37.53" x2="30.33" y2="36.47" x3="29.86" y3="35.36"/>
<curve x1="28.4" y1="31.87" x2="27.32" y2="28.23" x3="26.39" y3="24.58"/>
<curve x1="24.95" y1="18.93" x2="23.8" y2="13.2" x3="23.35" y3="7.38"/>
<curve x1="23.17" y1="4.93" x2="23.11" y2="2.46" x3="23.05" y3="0"/>
<line x="48.68" y="0"/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Ferry" h="69.39" w="98.99" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.5" y="0" perimeter="0" name="N"/>
<constraint x="0.5" y="1" perimeter="0" name="S"/>
<constraint x="0" y="0.5" perimeter="0" name="W"/>
<constraint x="0.97" y="0.5" perimeter="0" name="E"/>
<constraint x="0" y="0" perimeter="0" name="NW"/>
<constraint x="0" y="1" perimeter="0" name="SW"/>
<constraint x="0.76" y="0.04" perimeter="0" name="NE"/>
<constraint x="1" y="1" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="98.99" y="69.39"/>
<curve x1="96.83" y1="69.39" x2="94.75" y2="68.9" x3="92.91" y3="68.06"/>
<curve x1="91" y1="67.18" x2="88.86" y2="66.66" x3="86.62" y3="66.66"/>
<curve x1="84.39" y1="66.66" x2="82.23" y2="67.18" x3="80.35" y3="68.06"/>
<curve x1="78.49" y1="68.91" x2="76.42" y2="69.39" x3="74.25" y3="69.39"/>
<curve x1="72.1" y1="69.39" x2="70.02" y2="68.9" x3="68.15" y3="68.06"/>
<curve x1="66.25" y1="67.18" x2="64.11" y2="66.66" x3="61.89" y3="66.66"/>
<curve x1="59.64" y1="66.66" x2="57.52" y2="67.18" x3="55.59" y3="68.06"/>
<curve x1="53.75" y1="68.91" x2="51.66" y2="69.39" x3="49.51" y3="69.39"/>
<curve x1="47.35" y1="69.39" x2="45.26" y2="68.9" x3="43.42" y3="68.06"/>
<curve x1="41.51" y1="67.18" x2="39.37" y2="66.66" x3="37.14" y3="66.66"/>
<curve x1="34.91" y1="66.66" x2="32.75" y2="67.18" x3="30.87" y3="68.06"/>
<curve x1="29.02" y1="68.91" x2="26.94" y2="69.39" x3="24.78" y3="69.39"/>
<curve x1="22.61" y1="69.39" x2="20.54" y2="68.9" x3="18.66" y3="68.06"/>
<curve x1="16.77" y1="67.18" x2="14.62" y2="66.66" x3="12.4" y3="66.66"/>
<curve x1="10.16" y1="66.66" x2="8.03" y2="67.18" x3="6.11" y3="68.06"/>
<curve x1="4.26" y1="68.91" x2="2.18" y2="69.39" x3="0.02" y3="69.39"/>
<line x="0.02" y="60.19"/>
<curve x1="2.18" y1="60.19" x2="4.26" y2="59.69" x3="6.11" y3="58.86"/>
<curve x1="8.02" y1="57.98" x2="10.16" y2="57.46" x3="12.4" y3="57.46"/>
<curve x1="14.62" y1="57.46" x2="16.77" y2="57.98" x3="18.66" y3="58.86"/>
<curve x1="20.54" y1="59.7" x2="22.6" y2="60.19" x3="24.78" y3="60.19"/>
<curve x1="26.94" y1="60.19" x2="29.02" y2="59.69" x3="30.87" y3="58.86"/>
<curve x1="32.76" y1="57.98" x2="34.91" y2="57.46" x3="37.14" y3="57.46"/>
<curve x1="39.37" y1="57.46" x2="41.51" y2="57.98" x3="43.42" y3="58.86"/>
<curve x1="45.26" y1="59.7" x2="47.35" y2="60.19" x3="49.51" y3="60.19"/>
<curve x1="51.66" y1="60.19" x2="53.75" y2="59.69" x3="55.59" y3="58.86"/>
<curve x1="57.51" y1="57.98" x2="59.64" y2="57.46" x3="61.89" y3="57.46"/>
<curve x1="64.11" y1="57.46" x2="66.25" y2="57.98" x3="68.15" y3="58.86"/>
<curve x1="70.02" y1="59.7" x2="72.1" y2="60.19" x3="74.25" y3="60.19"/>
<curve x1="76.42" y1="60.19" x2="78.49" y2="59.69" x3="80.35" y3="58.86"/>
<curve x1="82.24" y1="57.98" x2="84.39" y2="57.46" x3="86.62" y3="57.46"/>
<curve x1="88.85" y1="57.46" x2="90.99" y2="57.98" x3="92.91" y3="58.86"/>
<curve x1="94.75" y1="59.7" x2="96.83" y2="60.19" x3="98.99" y3="60.19"/>
<line x="98.99" y="69.39"/>
<close/>
<move x="0.05" y="29.85"/>
<line x="0.01" y="51.58"/>
<curve x1="2.14" y1="51.58" x2="4.18" y2="51.1" x3="6" y3="50.26"/>
<curve x1="7.88" y1="49.38" x2="9.98" y2="48.86" x3="12.18" y3="48.86"/>
<curve x1="14.36" y1="48.86" x2="16.48" y2="49.38" x3="18.33" y3="50.26"/>
<curve x1="20.17" y1="51.09" x2="22.2" y2="51.58" x3="24.34" y3="51.58"/>
<curve x1="26.47" y1="51.58" x2="28.51" y2="51.1" x3="30.33" y3="50.26"/>
<curve x1="32.18" y1="49.38" x2="34.3" y2="48.86" x3="36.5" y3="48.86"/>
<curve x1="38.7" y1="48.86" x2="40.8" y2="49.38" x3="42.68" y3="50.26"/>
<curve x1="44.49" y1="51.09" x2="46.54" y2="51.58" x3="48.67" y3="51.58"/>
<curve x1="50.79" y1="51.58" x2="52.84" y2="51.1" x3="54.65" y3="50.26"/>
<curve x1="56.54" y1="49.38" x2="58.63" y2="48.86" x3="60.84" y3="48.86"/>
<curve x1="63.02" y1="48.86" x2="65.13" y2="49.38" x3="67" y3="50.26"/>
<curve x1="68.84" y1="51.09" x2="70.89" y2="51.58" x3="73" y3="51.58"/>
<curve x1="73.6" y1="51.58" x2="74.18" y2="51.45" x3="74.77" y3="51.39"/>
<curve x1="75.84" y1="51.15" x2="76.92" y2="51.04" x3="77.96" y3="50.62"/>
<line x="78.03" y="50.58"/>
<curve x1="85.76" y1="47.37" x2="92.43" y2="39.41" x3="96.59" y3="33.48"/>
<line x="98.67" y="29.85"/>
<line x="0.05" y="29.85"/>
<close/>
<move x="77.18" y="5.4"/>
<curve x1="74.8" y1="0" x2="68.41" y2="0.46" x3="68.41" y3="0.46"/>
<line x="0.01" y="0.46"/>
<line x="0" y="26.26"/>
<line x="85.75" y="26.26"/>
<line x="77.18" y="5.4"/>
<close/>
<move x="32.83" y="20.66"/>
<curve x1="32.83" y1="21.65" x2="32.03" y2="22.48" x3="31.05" y3="22.48"/>
<line x="23.15" y="22.48"/>
<curve x1="22.17" y1="22.48" x2="21.38" y2="21.66" x3="21.38" y3="20.66"/>
<line x="21.38" y="8.32"/>
<curve x1="21.38" y1="7.33" x2="22.17" y2="6.52" x3="23.15" y3="6.52"/>
<line x="31.05" y="6.52"/>
<curve x1="32.03" y1="6.52" x2="32.83" y2="7.33" x3="32.83" y3="8.32"/>
<line x="32.83" y="20.66"/>
<close/>
<move x="49.26" y="20.66"/>
<curve x1="49.26" y1="21.65" x2="48.47" y2="22.48" x3="47.5" y3="22.48"/>
<line x="39.54" y="22.48"/>
<curve x1="38.56" y1="22.48" x2="37.77" y2="21.66" x3="37.77" y3="20.66"/>
<line x="37.77" y="8.32"/>
<curve x1="37.77" y1="7.33" x2="38.56" y2="6.52" x3="39.54" y3="6.52"/>
<line x="47.5" y="6.52"/>
<curve x1="48.47" y1="6.52" x2="49.26" y2="7.33" x3="49.26" y3="8.32"/>
<line x="49.26" y="20.66"/>
<close/>
<move x="16.46" y="20.66"/>
<curve x1="16.46" y1="21.65" x2="15.66" y2="22.48" x3="14.69" y3="22.48"/>
<line x="6.72" y="22.48"/>
<curve x1="5.74" y1="22.48" x2="4.95" y2="21.66" x3="4.95" y3="20.66"/>
<line x="4.95" y="8.32"/>
<curve x1="4.95" y1="7.33" x2="5.74" y2="6.52" x3="6.72" y3="6.52"/>
<line x="14.68" y="6.52"/>
<curve x1="15.65" y1="6.52" x2="16.45" y2="7.33" x3="16.45" y3="8.32"/>
<line x="16.45" y="20.66"/>
<close/>
<move x="55.1" y="6.52"/>
<line x="69.36" y="6.52"/>
<line x="69.48" y="6.51"/>
<line x="69.58" y="6.51"/>
<curve x1="69.73" y1="6.5" x2="73.49" y2="6.35" x3="74.75" y3="9.22"/>
<line x="80.19" y="22.49"/>
<line x="61.63" y="22.49"/>
<line x="55.1" y="6.52"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Firetruck" h="31.4" w="99" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.5" y="0" perimeter="0" name="N"/>
<constraint x="0.5" y="0.74" perimeter="0" name="S"/>
<constraint x="0.04" y="0.5" perimeter="0" name="W"/>
<constraint x="0.965" y="0.5" perimeter="0" name="E"/>
<constraint x="0.25" y="0.02" perimeter="0" name="NW"/>
<constraint x="0.14" y="0.99" perimeter="0" name="SW"/>
<constraint x="0.95" y="0" perimeter="0" name="NE"/>
<constraint x="0.72" y="1" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="99" y="20.46"/>
<line x="96.7" y="20.46"/>
<line x="94.05" y="9.16"/>
<line x="87.64" y="9.16"/>
<line x="87.64" y="8.04"/>
<line x="94.05" y="8.04"/>
<line x="94.05" y="6.51"/>
<line x="92.49" y="6.56"/>
<line x="92.44" y="1.4"/>
<line x="94.09" y="1.4"/>
<line x="94.09" y="0"/>
<line x="48.52" y="0"/>
<line x="48.52" y="1.44"/>
<line x="49.34" y="1.44"/>
<line x="49.34" y="6.51"/>
<line x="48.32" y="6.51"/>
<line x="48.32" y="8.04"/>
<line x="53.78" y="8.04"/>
<line x="53.78" y="9.16"/>
<line x="46.74" y="9.17"/>
<line x="46.74" y="1.31"/>
<line x="40.75" y="1.31"/>
<line x="40.75" y="2.96"/>
<line x="38.67" y="3.05"/>
<curve x1="37.77" y1="3.09" x2="36.79" y2="3.04" x3="36.07" y3="3.66"/>
<curve x1="35.35" y1="4.29" x2="35.18" y2="5.24" x3="35.07" y3="6.14"/>
<line x="34.55" y="10.24"/>
<line x="34.25" y="6.75"/>
<curve x1="34.19" y1="6.1" x2="33.94" y2="5.35" x3="33.39" y3="4.95"/>
<curve x1="33.17" y1="4.8" x2="32.93" y2="4.67" x3="32.68" y3="4.57"/>
<curve x1="32.88" y1="4.51" x2="33.06" y2="4.42" x3="33.22" y3="4.29"/>
<curve x1="33.45" y1="4.11" x2="33.61" y2="3.91" x3="33.71" y3="3.65"/>
<curve x1="33.8" y1="3.44" x2="33.83" y2="3.22" x3="33.85" y3="3"/>
<line x="35.02" y="3.87"/>
<line x="35.15" y="3.57"/>
<line x="34.06" y="2.65"/>
<curve x1="33.97" y1="2.41" x2="33.86" y2="2.18" x3="33.72" y3="1.95"/>
<curve x1="33.45" y1="1.5" x2="33.08" y2="1.08" x3="32.66" y3="0.76"/>
<curve x1="32.34" y1="0.52" x2="31.98" y2="0.32" x3="31.59" y3="0.23"/>
<curve x1="31.36" y1="0.18" x2="31.13" y2="0.16" x3="30.89" y3="0.17"/>
<line x="30.89" y="0.22"/>
<line x="30.72" y="1.4"/>
<line x="28.98" y="1.4"/>
<line x="28.98" y="1.62"/>
<curve x1="29.11" y1="1.64" x2="29.25" y2="1.66" x3="29.38" y3="1.68"/>
<curve x1="29.49" y1="1.69" x2="29.6" y2="1.7" x3="29.71" y3="1.71"/>
<curve x1="29.95" y1="1.75" x2="30.2" y2="1.79" x3="30.45" y3="1.84"/>
<curve x1="30.31" y1="2.15" x2="30.2" y2="2.45" x3="30.15" y3="2.78"/>
<curve x1="30.09" y1="3.22" x2="30.21" y2="3.69" x3="30.51" y3="4.02"/>
<curve x1="30.75" y1="4.28" x2="31.05" y2="4.47" x3="31.36" y3="4.63"/>
<curve x1="31.15" y1="4.74" x2="30.95" y2="4.86" x3="30.77" y3="5.01"/>
<curve x1="30.56" y1="5.2" x2="30.37" y2="5.4" x3="30.21" y3="5.63"/>
<curve x1="30.07" y1="5.83" x2="29.97" y2="6.05" x3="29.88" y3="6.28"/>
<curve x1="29.79" y1="6.58" x2="29.7" y2="6.88" x3="29.63" y3="7.18"/>
<curve x1="29.49" y1="7.79" x2="29.39" y2="8.41" x3="29.27" y3="9.02"/>
<line x="29.01" y="10.41"/>
<line x="25.88" y="10.41"/>
<line x="25.1" y="6.79"/>
<line x="25.36" y="0.69"/>
<line x="24.23" y="0.69"/>
<line x="23.53" y="6.28"/>
<line x="6.86" y="8.42"/>
<curve x1="6.58" y1="8.46" x2="6.3" y2="8.49" x3="6.03" y3="8.53"/>
<curve x1="5.75" y1="8.56" x2="5.47" y2="8.64" x3="5.25" y3="8.82"/>
<curve x1="4.96" y1="9.05" x2="4.72" y2="9.4" x3="4.69" y3="9.77"/>
<line x="3.86" y="19.28"/>
<curve x1="3.83" y1="19.64" x2="3.66" y2="20" x3="3.38" y3="20.24"/>
<curve x1="3.11" y1="20.47" x2="2.77" y2="20.51" x3="2.42" y3="20.5"/>
<line x="0" y="20.46"/>
<line x="0" y="23.21"/>
<line x="8.25" y="23.21"/>
<curve x1="8.01" y1="24.33" x2="7.82" y2="25.41" x3="8.1" y3="26.54"/>
<curve x1="8.49" y1="28.08" x2="9.47" y2="29.42" x3="10.79" y3="30.29"/>
<curve x1="11.7" y1="30.89" x2="12.84" y2="31.06" x3="13.89" y3="31.19"/>
<curve x1="15.1" y1="31.09" x2="16.13" y2="30.97" x3="17.17" y3="30.33"/>
<curve x1="18.55" y1="29.49" x2="19.55" y2="28.1" x3="19.97" y3="26.55"/>
<curve x1="20.26" y1="25.46" x2="20.06" y2="24.28" x3="19.84" y3="23.21"/>
<line x="65.8" y="23.21"/>
<curve x1="65.49" y1="24.34" x2="65.23" y2="25.42" x3="65.47" y3="26.58"/>
<curve x1="65.79" y1="28.16" x2="66.76" y2="29.56" x3="68.08" y3="30.47"/>
<curve x1="68.99" y1="31.1" x2="70.16" y2="31.27" x3="71.23" y3="31.4"/>
<curve x1="72.46" y1="31.29" x2="73.52" y2="31.15" x3="74.57" y3="30.48"/>
<curve x1="75.93" y1="29.6" x2="76.89" y2="28.16" x3="77.24" y3="26.58"/>
<curve x1="77.49" y1="25.47" x2="77.2" y2="24.28" x3="76.91" y3="23.21"/>
<line x="99" y="23.21"/>
<line x="99" y="20.46"/>
<close/>
<move x="87.76" y="1.44"/>
<line x="91.23" y="1.44"/>
<line x="91.23" y="6.5"/>
<line x="87.76" y="6.5"/>
<line x="87.76" y="1.44"/>
<close/>
<move x="50.3" y="6.51"/>
<line x="50.3" y="1.44"/>
<line x="53.78" y="1.44"/>
<line x="53.79" y="6.51"/>
<line x="50.3" y="6.51"/>
<close/>
<move x="83.03" y="1.44"/>
<line x="86.5" y="1.44"/>
<line x="86.5" y="6.5"/>
<line x="83.03" y="6.5"/>
<line x="83.03" y="1.44"/>
<close/>
<move x="78.35" y="1.44"/>
<line x="81.82" y="1.44"/>
<line x="81.82" y="6.5"/>
<line x="78.35" y="6.5"/>
<line x="78.35" y="1.44"/>
<close/>
<move x="73.7" y="1.44"/>
<line x="77.17" y="1.44"/>
<line x="77.17" y="6.5"/>
<line x="73.7" y="6.5"/>
<line x="73.7" y="1.44"/>
<close/>
<move x="69.01" y="1.44"/>
<line x="72.48" y="1.44"/>
<line x="72.48" y="6.5"/>
<line x="69.01" y="6.5"/>
<line x="69.01" y="1.44"/>
<close/>
<move x="64.32" y="1.44"/>
<line x="67.8" y="1.44"/>
<line x="67.8" y="6.5"/>
<line x="64.32" y="6.5"/>
<line x="64.32" y="1.44"/>
<close/>
<move x="59.59" y="1.44"/>
<line x="63.07" y="1.44"/>
<line x="63.07" y="6.5"/>
<line x="59.6" y="6.5"/>
<line x="59.6" y="1.44"/>
<close/>
<move x="54.86" y="1.44"/>
<line x="58.33" y="1.44"/>
<line x="58.34" y="6.51"/>
<line x="54.86" y="6.51"/>
<line x="54.86" y="1.44"/>
<close/>
<move x="86.71" y="9.16"/>
<line x="54.86" y="9.16"/>
<line x="54.86" y="8.04"/>
<line x="86.71" y="8.04"/>
<line x="86.71" y="9.16"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Forklift" h="87.37" w="98.47" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.4" y="0" perimeter="0" name="N"/>
<constraint x="0.5" y="0.94" perimeter="0" name="S"/>
<constraint x="0.27" y="0.5" perimeter="0" name="W"/>
<constraint x="0.83" y="0.5" perimeter="0" name="E"/>
<constraint x="0" y="0.92" perimeter="0" name="SW"/>
<constraint x="0.82" y="0.12" perimeter="0" name="NE"/>
<constraint x="1" y="0.94" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="66.43" y="24.53"/>
<curve x1="68.85" y1="24.53" x2="70.81" y2="22.54" x3="70.81" y3="20.08"/>
<curve x1="70.81" y1="17.62" x2="68.85" y2="15.63" x3="66.43" y3="15.63"/>
<line x="66.33" y="15.63"/>
<curve x1="63.95" y1="15.69" x2="62.05" y2="17.66" x3="62.05" y3="20.08"/>
<curve x1="62.04" y1="22.54" x2="64.01" y2="24.53" x3="66.43" y3="24.53"/>
<close/>
<move x="98.45" y="50.6"/>
<curve x1="98.45" y1="48.5" x2="96.77" y2="46.79" x3="94.69" y3="46.79"/>
<line x="94.69" y="46.8"/>
<line x="81.44" y="46.8"/>
<line x="81.44" y="12.96"/>
<line x="81.44" y="12.96"/>
<curve x1="81.44" y1="10.85" x2="79.76" y2="9.14" x3="77.68" y3="9.14"/>
<line x="47.59" y="9.15"/>
<line x="47.59" y="9.16"/>
<curve x1="45.95" y1="9.22" x2="44.57" y2="10.35" x3="44.12" y3="11.88"/>
<line x="44.12" y="11.88"/>
<line x="28.39" y="65.79"/>
<line x="24.06" y="65.79"/>
<line x="42.9" y="1.08"/>
<line x="39.3" y="0"/>
<line x="15.89" y="80.38"/>
<line x="0.87" y="76.69"/>
<line x="0" y="80.39"/>
<line x="18.49" y="84.93"/>
<line x="19.4" y="81.82"/>
<line x="27.99" y="81.82"/>
<curve x1="29.02" y1="85.04" x2="31.99" y2="87.37" x3="35.5" y3="87.37"/>
<curve x1="39.01" y1="87.37" x2="41.98" y2="85.04" x3="43.01" y3="81.82"/>
<line x="66.22" y="81.82"/>
<curve x1="68.1" y1="85.13" x2="71.63" y2="87.37" x3="75.66" y3="87.37"/>
<curve x1="79.7" y1="87.37" x2="83.22" y2="85.14" x3="85.1" y3="81.82"/>
<line x="98.47" y="81.82"/>
<line x="98.45" y="50.6"/>
<line x="98.45" y="50.6"/>
<close/>
<move x="47.69" y="12.97"/>
<line x="47.73" y="12.97"/>
<line x="47.73" y="12.97"/>
<line x="77.68" y="12.97"/>
<line x="77.68" y="46.8"/>
<line x="71.69" y="46.8"/>
<curve x1="72.35" y1="46.22" x2="72.75" y2="45.58" x3="72.82" y3="45.15"/>
<line x="72.82" y="25.88"/>
<curve x1="72.57" y1="25.04" x2="71.74" y2="23.95" x3="71.33" y3="23.86"/>
<curve x1="69.74" y1="25.86" x2="66.53" y2="26.72" x3="62.88" y3="24.95"/>
<curve x1="62.88" y1="24.95" x2="58.81" y2="30.54" x3="55.27" y3="33.6"/>
<curve x1="54.61" y1="33.94" x2="49.54" y2="35.13" x3="49.54" y3="35.13"/>
<line x="50.31" y="39.07"/>
<line x="57.91" y="37.57"/>
<line x="62.47" y="32.44"/>
<line x="62.47" y="43.24"/>
<line x="51.87" y="43.24"/>
<line x="51.87" y="56.6"/>
<line x="34.98" y="56.6"/>
<line x="47.69" y="12.97"/>
<close/>
<move x="60.74" y="47.42"/>
<line x="60.74" y="50.61"/>
<line x="60.74" y="56.61"/>
<line x="56.01" y="56.61"/>
<line x="56.01" y="47.43"/>
<line x="60.74" y="47.43"/>
<close/>
<move x="35.49" y="83.8"/>
<curve x1="33.07" y1="83.8" x2="31.11" y2="81.81" x3="31.11" y3="79.35"/>
<curve x1="31.11" y1="76.89" x2="33.07" y2="74.9" x3="35.49" y3="74.9"/>
<curve x1="37.91" y1="74.9" x2="39.87" y2="76.89" x3="39.87" y3="79.35"/>
<curve x1="39.87" y1="81.81" x2="37.91" y2="83.8" x3="35.49" y3="83.8"/>
<close/>
<move x="75.64" y="83.29"/>
<curve x1="71.84" y1="83.29" x2="68.76" y2="80.16" x3="68.76" y3="76.3"/>
<curve x1="68.76" y1="72.44" x2="71.84" y2="69.3" x3="75.64" y3="69.3"/>
<curve x1="79.44" y1="69.3" x2="82.53" y2="72.44" x3="82.53" y3="76.3"/>
<curve x1="82.53" y1="80.16" x2="79.44" y2="83.29" x3="75.64" y3="83.29"/>
<close/>
<move x="94.7" y="78"/>
<line x="86.41" y="78"/>
<curve x1="86.5" y1="77.44" x2="86.54" y2="76.87" x3="86.54" y3="76.29"/>
<curve x1="86.54" y1="70.18" x2="81.66" y2="65.22" x3="75.64" y3="65.22"/>
<curve x1="69.62" y1="65.22" x2="64.74" y2="70.18" x3="64.74" y3="76.29"/>
<curve x1="64.74" y1="76.87" x2="64.78" y2="77.44" x3="64.87" y3="78"/>
<line x="43.26" y="78"/>
<curve x1="42.63" y1="74.22" x2="39.38" y2="71.33" x3="35.48" y3="71.33"/>
<curve x1="31.58" y1="71.33" x2="28.33" y2="74.22" x3="27.7" y3="78"/>
<line x="20.49" y="78"/>
<line x="22.94" y="69.6"/>
<line x="31.18" y="69.61"/>
<line x="33.86" y="60.42"/>
<line x="64.49" y="60.42"/>
<line x="64.49" y="50.61"/>
<line x="94.68" y="50.62"/>
<line x="94.68" y="78"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Gas 1" h="98.83" w="63.44" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.41" y="0" perimeter="0" name="N"/>
<constraint x="0.41" y="1" perimeter="0" name="S"/>
<constraint x="0.095" y="0.5" perimeter="0" name="W"/>
<constraint x="0.9" y="0.5" perimeter="0" name="E"/>
<constraint x="0.11" y="0.01" perimeter="0" name="NW"/>
<constraint x="0" y="1" perimeter="0" name="SW"/>
<constraint x="0.7" y="0.01" perimeter="0" name="NE"/>
<constraint x="0.815" y="1" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="51.82" y="91.75"/>
<line x="45.8" y="91.75"/>
<line x="45.8" y="42.73"/>
<curve x1="47.53" y1="42.73" x2="47.39" y2="43.52" x3="47.39" y3="44.04"/>
<line x="47.39" y="82.18"/>
<curve x1="47.39" y1="87.16" x2="51.1" y2="90.57" x3="55.48" y3="90.57"/>
<curve x1="59.99" y1="90.57" x2="63.44" y2="87.03" x3="63.44" y3="82.31"/>
<curve x1="63.44" y1="77.59" x2="57.08" y2="63.96" x3="57.08" y3="59.5"/>
<line x="57.08" y="23.07"/>
<curve x1="57.08" y1="20.32" x2="56.02" y2="17.96" x3="54.56" y3="16.78"/>
<line x="45.81" y="9.7"/>
<line x="45.81" y="4.06"/>
<curve x1="45.81" y1="1.84" x2="43.95" y2="0" x3="41.7" y3="0"/>
<line x="10.12" y="0"/>
<curve x1="7.87" y1="0" x2="6.01" y2="1.84" x3="6.01" y3="4.06"/>
<line x="6.01" y="91.75"/>
<line x="0" y="91.75"/>
<line x="0" y="98.83"/>
<line x="51.82" y="98.83"/>
<line x="51.82" y="91.75"/>
<close/>
<move x="37.84" y="27.53"/>
<line x="13.97" y="27.53"/>
<curve x1="12.91" y1="27.53" x2="11.85" y2="26.61" x3="11.85" y3="25.43"/>
<line x="11.85" y="7.34"/>
<curve x1="11.85" y1="6.16" x2="12.91" y2="5.24" x3="13.97" y3="5.24"/>
<line x="37.84" y="5.24"/>
<curve x1="38.9" y1="5.24" x2="39.96" y2="6.16" x3="39.96" y3="7.34"/>
<line x="39.96" y="25.43"/>
<curve x1="39.97" y1="26.61" x2="38.9" y2="27.53" x3="37.84" y3="27.53"/>
<close/>
<move x="55.48" y="86.77"/>
<curve x1="52.96" y1="86.77" x2="51.37" y2="84.94" x3="51.37" y3="82.18"/>
<line x="51.37" y="40.11"/>
<curve x1="51.37" y1="38.67" x2="49.65" y2="38.01" x3="48.06" y3="38.01"/>
<line x="45.8" y="38.01"/>
<line x="45.8" y="15.07"/>
<curve x1="46.86" y1="15.86" x2="47.65" y2="16.77" x3="47.65" y3="17.82"/>
<line x="47.65" y="25.42"/>
<line x="52.96" y="25.42"/>
<line x="52.96" y="58.19"/>
<curve x1="52.96" y1="66.45" x2="59.59" y2="77.59" x3="59.59" y3="82.31"/>
<curve x1="59.59" y1="84.81" x2="58" y2="86.77" x3="55.48" y3="86.77"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Gas 2" h="98.5" w="75.28" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.27" y="0" perimeter="0" name="N"/>
<constraint x="0.27" y="1" perimeter="0" name="S"/>
<constraint x="0" y="0.5" perimeter="0" name="W"/>
<constraint x="0.93" y="0.5" perimeter="0" name="E"/>
<constraint x="0.04" y="0.02" perimeter="0" name="NW"/>
<constraint x="0" y="1" perimeter="0" name="SW"/>
<constraint x="0.7" y="0.06" perimeter="0" name="NE"/>
<constraint x="0.96" y="0.97" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="35.7" y="29"/>
<curve x1="35.7" y1="30.3" x2="34.66" y2="31.3" x3="33.33" y3="31.3"/>
<line x="8.58" y="31.3"/>
<curve x1="7.25" y1="31.3" x2="6.21" y2="30.29" x3="6.21" y3="29"/>
<line x="6.21" y="8.44"/>
<curve x1="6.21" y1="7.14" x2="7.24" y2="6.14" x3="8.58" y3="6.14"/>
<line x="33.34" y="6.14"/>
<curve x1="34.66" y1="6.14" x2="35.71" y2="7.15" x3="35.71" y3="8.44"/>
<line x="35.71" y="29"/>
<close/>
<move x="64.56" y="31.62"/>
<curve x1="61.43" y1="30.94" x2="60.29" y2="29.36" x3="60.29" y3="27.9"/>
<line x="60.29" y="22.59"/>
<curve x1="60.29" y1="22.59" x2="62.37" y2="23.05" x3="62.87" y3="23.18"/>
<curve x1="63.88" y1="23.44" x2="64.53" y2="24.98" x3="64.56" y3="26.32"/>
<curve x1="64.59" y1="27.65" x2="64.56" y2="31.62" x3="64.56" y3="31.62"/>
<close/>
<move x="70.86" y="63.9"/>
<curve x1="70.86" y1="63.85" x2="69.99" y2="57.37" x3="69.99" y3="57.37"/>
<line x="69.99" y="27.48"/>
<curve x1="69.99" y1="24.28" x2="68.92" y2="21.67" x3="66.72" y3="19.49"/>
<line x="52.67" y="5.71"/>
<curve x1="51.7" y1="5.71" x2="49.01" y2="8.35" x3="49.01" y3="8.35"/>
<curve x1="49.01" y1="9.31" x2="55.99" y2="16.13" x3="55.99" y3="16.13"/>
<line x="55.78" y="27.72"/>
<curve x1="55.78" y1="31.84" x2="59.18" y2="35.18" x3="63.38" y3="35.18"/>
<line x="65.26" y="35.21"/>
<line x="64.59" y="57.38"/>
<line x="65.53" y="64.98"/>
<line x="69.76" y="87.41"/>
<curve x1="69.92" y1="91.05" x2="66.53" y2="93.22" x3="63.87" y3="93.22"/>
<curve x1="61.4" y1="93.22" x2="58.54" y2="91.21" x3="58.54" y3="88.62"/>
<line x="58.59" y="49.31"/>
<curve x1="58.59" y1="44.53" x2="54.65" y2="40.65" x3="49.8" y3="40.65"/>
<curve x1="49.8" y1="40.65" x2="41.36" y2="40.65" x3="41.32" y3="40.65"/>
<curve x1="41.91" y1="40.62" x2="41.94" y2="14.91" x3="41.94" y3="9.45"/>
<curve x1="41.94" y1="8.8" x2="41.94" y2="8.44" x3="41.94" y3="8.44"/>
<curve x1="41.92" y1="3.78" x2="38.07" y2="0" x3="33.33" y3="0"/>
<line x="8.58" y="0"/>
<curve x1="3.85" y1="0" x2="0" y2="3.78" x3="0" y3="8.44"/>
<line x="0" y="98.5"/>
<line x="41.94" y="98.5"/>
<line x="41.97" y="46.18"/>
<line x="49.89" y="46.18"/>
<curve x1="51.71" y1="46.18" x2="53.19" y2="47.64" x3="53.19" y3="49.43"/>
<line x="53.19" y="88.63"/>
<curve x1="53.19" y1="93.89" x2="58.18" y2="98.5" x3="63.88" y3="98.5"/>
<curve x1="69.26" y1="98.5" x2="75.28" y2="94.29" x3="75.28" y3="88.63"/>
<curve x1="75.17" y1="87.32" x2="70.86" y2="63.9" x3="70.86" y3="63.9"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Gas 3" h="98.34" w="97.97" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.37" y="0" perimeter="0" name="N"/>
<constraint x="0.37" y="0.995" perimeter="0" name="S"/>
<constraint x="0.065" y="0.5" perimeter="0" name="W"/>
<constraint x="0.935" y="0.5" perimeter="0" name="E"/>
<constraint x="0" y="0" perimeter="0" name="NW"/>
<constraint x="0.07" y="0.995" perimeter="0" name="SW"/>
<constraint x="0.745" y="0" perimeter="0" name="NE"/>
<constraint x="0.96" y="0.965" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="12.09" y="6.83"/>
<line x="61.02" y="6.83"/>
<curve x1="62.99" y1="6.83" x2="64.43" y2="8.21" x3="64.43" y3="10.16"/>
<line x="64.43" y="33.36"/>
<curve x1="64.43" y1="35.3" x2="62.99" y2="36.69" x3="61.02" y3="36.69"/>
<line x="12.09" y="36.69"/>
<curve x1="10.11" y1="36.69" x2="8.61" y2="35.31" x3="8.61" y3="33.36"/>
<line x="8.61" y="10.16"/>
<curve x1="8.61" y1="8.22" x2="10.11" y2="6.83" x3="12.09" y3="6.83"/>
<line x="12.09" y="6.83"/>
<close/>
<move x="97.97" y="86.1"/>
<line x="85.33" y="16.3"/>
<curve x1="85.33" y1="16.3" x2="85.33" y2="10.47" x3="75.84" y3="11.03"/>
<line x="75.84" y="17.36"/>
<line x="78.23" y="17.36"/>
<line x="90.8" y="86.23"/>
<curve x1="90.8" y1="89.24" x2="88.14" y2="91.74" x3="84.79" y3="91.74"/>
<curve x1="81.44" y1="91.74" x2="78.71" y2="89.24" x3="78.71" y3="86.23"/>
<line x="78.77" y="62.02"/>
<curve x1="78.77" y1="55.37" x2="79.94" y2="46.52" x3="66.14" y3="46.52"/>
<line x="66.14" y="44.46"/>
<line x="73.03" y="44.46"/>
<line x="73.03" y="0"/>
<line x="0" y="0"/>
<line x="0" y="44.71"/>
<line x="6.7" y="44.71"/>
<line x="6.7" y="97.84"/>
<line x="66" y="97.84"/>
<line x="66" y="53.12"/>
<curve x1="70.85" y1="52.81" x2="71.53" y2="53.68" x3="71.53" y3="57.83"/>
<line x="71.53" y="86.24"/>
<curve x1="71.53" y1="92.88" x2="77.47" y2="98.34" x3="84.79" y3="98.34"/>
<curve x1="92.1" y1="98.33" x2="97.97" y2="92.87" x3="97.97" y3="86.1"/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Gas 4" h="98.33" w="75.37" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.45" y="0" perimeter="0" name="N"/>
<constraint x="0.45" y="1" perimeter="0" name="S"/>
<constraint x="0.19" y="0.5" perimeter="0" name="W"/>
<constraint x="1" y="0.5" perimeter="0" name="E"/>
<constraint x="0.19" y="0" perimeter="0" name="NW"/>
<constraint x="0" y="1" perimeter="0" name="SW"/>
<constraint x="1" y="0.25" perimeter="0" name="NE"/>
<constraint x="0.99" y="1" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="59.95" y="83.78"/>
<curve x1="59.95" y1="83.78" x2="60.68" y2="89.14" x3="67.59" y3="89.14"/>
<line x="67.72" y="89.14"/>
<curve x1="74.76" y1="89.14" x2="75.37" y2="83.78" x3="75.37" y3="83.78"/>
<line x="75.37" y="25.64"/>
<curve x1="75.37" y1="22.78" x2="69.9" y2="18.73" x3="69.9" y3="18.73"/>
<line x="54.37" y="8.69"/>
<line x="54.37" y="0"/>
<line x="14.56" y="0"/>
<line x="14.56" y="92.83"/>
<line x="0" y="92.83"/>
<line x="0" y="98.33"/>
<line x="74.53" y="98.33"/>
<line x="74.53" y="92.83"/>
<line x="54.37" y="92.83"/>
<line x="54.37" y="42.36"/>
<line x="58.86" y="42.36"/>
<curve x1="60.31" y1="42.36" x2="59.95" y2="43.54" x3="59.95" y3="43.54"/>
<line x="59.95" y="83.78"/>
<close/>
<move x="46.84" y="26.73"/>
<line x="22.08" y="26.73"/>
<line x="22.08" y="6.19"/>
<line x="46.84" y="6.19"/>
<line x="46.84" y="26.73"/>
<close/>
<move x="59.22" y="37.23"/>
<line x="54.37" y="37.23"/>
<line x="54.37" y="12.9"/>
<line x="60.07" y="17.89"/>
<line x="60.07" y="24.92"/>
<line x="63.23" y="24.92"/>
<line x="63.23" y="27.43"/>
<curve x1="63.23" y1="28.27" x2="64.44" y2="28.76" x3="64.44" y3="28.76"/>
<line x="70.51" y="28.76"/>
<line x="70.51" y="80.65"/>
<curve x1="70.51" y1="80.65" x2="70.99" y2="83.88" x3="67.72" y3="83.88"/>
<line x="67.59" y="83.88"/>
<curve x1="64.32" y1="83.88" x2="64.8" y2="80.65" x3="64.8" y3="80.65"/>
<line x="64.8" y="43.42"/>
<curve x1="64.8" y1="37.45" x2="59.22" y2="37.23" x3="59.22" y3="37.23"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Ground Transportation" h="62.57" w="98.95" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.55" y="0.07" perimeter="0" name="N"/>
<constraint x="0.49" y="0.86" perimeter="0" name="S"/>
<constraint x="0.06" y="0.5" perimeter="0" name="W"/>
<constraint x="1" y="0.5" perimeter="0" name="E"/>
<constraint x="0.19" y="0.3" perimeter="0" name="NW"/>
<constraint x="0.075" y="0.98" perimeter="0" name="SW"/>
<constraint x="0.95" y="0.08" perimeter="0" name="NE"/>
<constraint x="0.92" y="0.98" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="42.31" y="35.89"/>
<line x="38.51" y="26.1"/>
<curve x1="37.77" y1="24.25" x2="36.21" y2="22.66" x3="33.29" y3="22.64"/>
<line x="27.88" y="22.64"/>
<line x="27.88" y="20.1"/>
<curve x1="27.88" y1="19.1" x2="27.33" y2="18.58" x3="26.46" y3="18.57"/>
<line x="23.28" y="18.57"/>
<line x="20.15" y="18.57"/>
<curve x1="19.25" y1="18.58" x2="18.7" y2="19.1" x3="18.68" y3="20.1"/>
<line x="18.68" y="22.64"/>
<line x="13.21" y="22.64"/>
<curve x1="10.3" y1="22.66" x2="8.74" y2="24.25" x3="8.04" y3="26.1"/>
<line x="4.19" y="35.89"/>
<curve x1="2.68" y1="36.07" x2="0" y2="37.83" x3="0.01" y3="41.17"/>
<line x="0.01" y="53.6"/>
<line x="3.71" y="53.6"/>
<line x="3.71" y="57.58"/>
<curve x1="3.71" y1="62.45" x2="10.7" y2="62.39" x3="10.69" y3="57.58"/>
<line x="10.69" y="53.6"/>
<line x="23.27" y="53.6"/>
<line x="35.8" y="53.6"/>
<line x="35.8" y="57.58"/>
<curve x1="35.81" y1="62.39" x2="42.79" y2="62.45" x3="42.78" y3="57.58"/>
<line x="42.78" y="53.6"/>
<line x="46.53" y="53.6"/>
<line x="46.53" y="41.17"/>
<curve x1="46.51" y1="37.83" x2="43.83" y2="36.07" x3="42.31" y3="35.89"/>
<close/>
<move x="7.32" y="46.01"/>
<curve x1="5.54" y1="46" x2="4.1" y2="44.52" x3="4.09" y3="42.7"/>
<curve x1="4.09" y1="40.88" x2="5.53" y2="39.41" x3="7.32" y3="39.39"/>
<curve x1="9.1" y1="39.41" x2="10.54" y2="40.88" x3="10.55" y3="42.7"/>
<curve x1="10.54" y1="44.52" x2="9.1" y2="46" x3="7.32" y3="46.01"/>
<close/>
<move x="23.27" y="35.65"/>
<line x="23.22" y="35.65"/>
<line x="8.13" y="35.65"/>
<line x="11.03" y="28.12"/>
<curve x1="11.39" y1="27.02" x2="11.93" y2="26.24" x3="13.21" y3="26.25"/>
<line x="23.23" y="26.25"/>
<line x="23.28" y="26.25"/>
<line x="33.34" y="26.25"/>
<curve x1="34.59" y1="26.24" x2="35.13" y2="27.02" x3="35.48" y3="28.12"/>
<line x="38.38" y="35.65"/>
<line x="23.27" y="35.65"/>
<close/>
<move x="39.18" y="46.01"/>
<curve x1="37.41" y1="45.99" x2="35.97" y2="44.52" x3="35.95" y3="42.7"/>
<curve x1="35.97" y1="40.88" x2="37.41" y2="39.41" x3="39.18" y3="39.39"/>
<curve x1="40.98" y1="39.41" x2="42.42" y2="40.88" x3="42.41" y3="42.7"/>
<curve x1="42.42" y1="44.52" x2="40.97" y2="46" x3="39.18" y3="46.01"/>
<close/>
<move x="73.55" y="0"/>
<curve x1="73.64" y1="0" x2="73.73" y2="0" x3="73.81" y3="0"/>
<curve x1="73.9" y1="0" x2="73.99" y2="0" x3="74.08" y3="0"/>
<line x="73.55" y="0"/>
<close/>
<move x="96.53" y="9.07"/>
<curve x1="95.84" y1="5.69" x2="93.66" y2="4.34" x3="90.41" y3="2.97"/>
<curve x1="87.2" y1="1.65" x2="79.52" y2="0.06" x3="73.82" y3="0"/>
<curve x1="68.13" y1="0.06" x2="60.44" y2="1.65" x3="57.23" y3="2.97"/>
<curve x1="53.98" y1="4.33" x2="51.81" y2="5.68" x3="51.15" y3="9.07"/>
<line x="48.68" y="27.78"/>
<line x="48.68" y="53.6"/>
<line x="52.9" y="53.6"/>
<line x="52.9" y="57.63"/>
<curve x1="52.89" y1="62.57" x2="60.14" y2="62.57" x3="60.16" y3="57.63"/>
<line x="60.16" y="53.6"/>
<line x="73.55" y="53.6"/>
<line x="87.51" y="53.6"/>
<line x="87.51" y="57.63"/>
<curve x1="87.5" y1="62.57" x2="94.75" y2="62.57" x3="94.73" y3="57.63"/>
<line x="94.73" y="53.6"/>
<line x="98.95" y="53.6"/>
<line x="98.95" y="27.78"/>
<line x="96.53" y="9.07"/>
<close/>
<move x="63.49" y="4.75"/>
<line x="73.55" y="4.75"/>
<line x="84.14" y="4.75"/>
<curve x1="86.2" y1="4.74" x2="86.2" y2="7.78" x3="84.14" y3="7.77"/>
<line x="73.55" y="7.77"/>
<line x="63.49" y="7.77"/>
<curve x1="61.44" y1="7.78" x2="61.44" y2="4.74" x3="63.49" y3="4.75"/>
<close/>
<move x="56.51" y="45.48"/>
<curve x1="54.6" y1="45.5" x2="53.04" y2="43.95" x3="53.04" y3="42.02"/>
<curve x1="53.04" y1="40.12" x2="54.59" y2="38.57" x3="56.51" y3="38.57"/>
<curve x1="58.44" y1="38.57" x2="60" y2="40.12" x3="59.98" y3="42.02"/>
<curve x1="60" y1="43.95" x2="58.44" y2="45.5" x3="56.51" y3="45.48"/>
<close/>
<move x="73.55" y="29.75"/>
<line x="55.13" y="29.75"/>
<curve x1="53.31" y1="29.76" x2="52.93" y2="28.47" x3="53.09" y3="27.16"/>
<line x="54.99" y="13.58"/>
<curve x1="55.27" y1="11.94" x2="55.84" y2="10.85" x3="57.98" y3="10.85"/>
<line x="73.55" y="10.85"/>
<line x="89.64" y="10.85"/>
<curve x1="91.8" y1="10.86" x2="92.36" y2="11.94" x3="92.63" y3="13.58"/>
<line x="94.53" y="27.16"/>
<curve x1="94.7" y1="28.47" x2="94.32" y2="29.76" x3="92.49" y3="29.75"/>
<line x="73.55" y="29.75"/>
<close/>
<move x="91.12" y="45.48"/>
<curve x1="89.2" y1="45.5" x2="87.64" y2="43.95" x3="87.65" y3="42.02"/>
<curve x1="87.64" y1="40.12" x2="89.2" y2="38.57" x3="91.12" y3="38.57"/>
<curve x1="93.04" y1="38.57" x2="94.6" y2="40.12" x3="94.59" y3="42.02"/>
<curve x1="94.6" y1="43.95" x2="93.04" y2="45.5" x3="91.12" y3="45.48"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Harbor" h="90.48" w="98.33" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.34" y="0" perimeter="0" name="N"/>
<constraint x="0.5" y="0.965" perimeter="0" name="S"/>
<constraint x="0.115" y="0.5" perimeter="0" name="W"/>
<constraint x="0.96" y="0.52" perimeter="0" name="E"/>
<constraint x="0" y="0.965" perimeter="0" name="SW"/>
<constraint x="1" y="0.965" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="79.43" y="57.36"/>
<line x="94.47" y="57.36"/>
<line x="94.47" y="47.11"/>
<line x="84.72" y="47.11"/>
<line x="79.43" y="57.36"/>
<close/>
<move x="67.65" y="42.02"/>
<line x="67.65" y="31.74"/>
<line x="49.52" y="31.74"/>
<line x="49.52" y="42.02"/>
<line x="67.65" y="42.02"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
<path>
<move x="59.6" y="29.69"/>
<line x="59.6" y="17.39"/>
<line x="57.58" y="17.39"/>
<line x="57.58" y="29.69"/>
<line x="59.6" y="29.69"/>
<close/>
<move x="25.68" y="51.22"/>
<line x="39.62" y="7.25"/>
<line x="59.6" y="15.38"/>
<line x="59.6" y="13.33"/>
<line x="33.39" y="0"/>
<line x="8.54" y="51.22"/>
<line x="25.68" y="51.22"/>
<close/>
<move x="86.14" y="86.13"/>
<curve x1="83.16" y1="86.13" x2="80.33" y2="85.48" x3="77.78" y3="84.32"/>
<curve x1="76.37" y1="83.68" x2="75.05" y2="82.9" x3="73.83" y3="81.97"/>
<curve x1="72.61" y1="82.9" x2="71.29" y2="83.68" x3="69.88" y3="84.32"/>
<curve x1="67.32" y1="85.48" x2="64.49" y2="86.13" x3="61.52" y3="86.13"/>
<curve x1="58.55" y1="86.13" x2="55.72" y2="85.48" x3="53.16" y3="84.32"/>
<curve x1="51.75" y1="83.68" x2="50.43" y2="82.9" x3="49.21" y3="81.97"/>
<curve x1="47.99" y1="82.9" x2="46.67" y2="83.68" x3="45.26" y3="84.32"/>
<curve x1="42.7" y1="85.48" x2="39.87" y2="86.13" x3="36.9" y3="86.13"/>
<curve x1="33.92" y1="86.13" x2="31.09" y2="85.48" x3="28.54" y3="84.32"/>
<curve x1="27.14" y1="83.68" x2="25.81" y2="82.9" x3="24.59" y3="81.97"/>
<curve x1="23.37" y1="82.9" x2="22.05" y2="83.68" x3="20.64" y3="84.32"/>
<curve x1="18.08" y1="85.48" x2="15.25" y2="86.13" x3="12.28" y3="86.13"/>
<curve x1="7.68" y1="86.13" x2="3.44" y2="84.59" x3="0" y3="82"/>
<line x="0" y="87.18"/>
<curve x1="3.63" y1="89.28" x2="7.82" y2="90.48" x3="12.28" y3="90.48"/>
<curve x1="16.76" y1="90.48" x2="20.96" y2="89.27" x3="24.59" y3="87.16"/>
<curve x1="28.22" y1="89.27" x2="32.43" y2="90.48" x3="36.9" y3="90.48"/>
<curve x1="41.37" y1="90.48" x2="45.58" y2="89.27" x3="49.21" y3="87.16"/>
<curve x1="52.84" y1="89.27" x2="57.05" y2="90.48" x3="61.52" y3="90.48"/>
<curve x1="65.99" y1="90.48" x2="70.2" y2="89.27" x3="73.83" y3="87.16"/>
<curve x1="77.46" y1="89.27" x2="81.67" y2="90.48" x3="86.14" y3="90.48"/>
<curve x1="90.57" y1="90.48" x2="94.72" y2="89.3" x3="98.33" y3="87.23"/>
<line x="98.33" y="82.06"/>
<curve x1="94.91" y1="84.61" x2="90.7" y2="86.13" x3="86.14" y3="86.13"/>
<close/>
<move x="77.3" y="61.47"/>
<line x="74.14" y="67.61"/>
<line x="33.95" y="67.61"/>
<line x="25.68" y="61.47"/>
<line x="0" y="61.47"/>
<line x="12.69" y="81.87"/>
<curve x1="15.51" y1="81.81" x2="18.2" y2="81.18" x3="20.64" y3="80.07"/>
<curve x1="22.04" y1="79.43" x2="23.37" y2="78.65" x3="24.59" y3="77.72"/>
<curve x1="25.81" y1="78.65" x2="27.13" y2="79.43" x3="28.54" y3="80.07"/>
<curve x1="31.1" y1="81.23" x2="33.93" y2="81.88" x3="36.9" y3="81.88"/>
<curve x1="39.88" y1="81.88" x2="42.7" y2="81.23" x3="45.26" y3="80.07"/>
<curve x1="46.66" y1="79.43" x2="47.99" y2="78.65" x3="49.21" y3="77.72"/>
<curve x1="50.43" y1="78.65" x2="51.75" y2="79.43" x3="53.16" y3="80.07"/>
<curve x1="55.72" y1="81.23" x2="58.55" y2="81.88" x3="61.52" y3="81.88"/>
<curve x1="64.49" y1="81.88" x2="67.32" y2="81.23" x3="69.88" y3="80.07"/>
<curve x1="71.29" y1="79.43" x2="72.61" y2="78.65" x3="73.83" y3="77.72"/>
<curve x1="75.05" y1="78.65" x2="76.37" y2="79.43" x3="77.78" y3="80.07"/>
<curve x1="80.34" y1="81.23" x2="83.17" y2="81.88" x3="86.14" y3="81.88"/>
<curve x1="90.7" y1="81.88" x2="94.91" y2="80.37" x3="98.33" y3="77.81"/>
<line x="98.33" y="75.33"/>
<line x="98.33" y="61.47"/>
<line x="77.3" y="61.47"/>
<close/>
</path>
<fillstroke/>
</foreground>
</shape>
<shape name="Helicopter" h="63.19" w="100.46" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.5" y="0.02" perimeter="0" name="N"/>
<constraint x="0.5" y="1" perimeter="0" name="S"/>
<constraint x="0" y="0.26" perimeter="0" name="W"/>
<constraint x="0.96" y="0.5" perimeter="0" name="E"/>
<constraint x="0.95" y="0" perimeter="0" name="NE"/>
<constraint x="0.93" y="1" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="10.73" y="6.31"/>
<curve x1="4.8" y1="6.32" x2="0.01" y2="11.19" x3="0" y3="17.21"/>
<curve x1="0.01" y1="23.19" x2="4.81" y2="28.05" x3="10.73" y3="28.05"/>
<curve x1="16.63" y1="28.05" x2="21.42" y2="23.19" x3="21.41" y3="17.21"/>
<curve x1="21.42" y1="11.19" x2="16.63" y2="6.32" x3="10.73" y3="6.31"/>
<close/>
<move x="10.73" y="24.1"/>
<curve x1="6.95" y1="24.1" x2="3.91" y2="21" x3="3.89" y3="17.21"/>
<curve x1="3.91" y1="13.37" x2="6.96" y2="10.27" x3="10.73" y3="10.26"/>
<curve x1="14.48" y1="10.27" x2="17.53" y2="13.36" x3="17.52" y3="17.21"/>
<curve x1="17.53" y1="21.01" x2="14.48" y2="24.1" x3="10.73" y3="24.1"/>
<close/>
<move x="45.14" y="52.04"/>
<curve x1="36.96" y1="52.01" x2="36.96" y2="63.19" x3="45.14" y3="63.18"/>
<line x="92.5" y="63.18"/>
<curve x1="100.46" y1="63.19" x2="100.46" y2="52.01" x3="92.5" y3="52.04"/>
<line x="45.14" y="52.04"/>
<line x="45.14" y="52.04"/>
<close/>
<move x="59.17" y="13.56"/>
<line x="59.17" y="3.42"/>
<line x="54.94" y="3.42"/>
<line x="54.94" y="13.56"/>
<line x="59.17" y="13.56"/>
<close/>
<move x="65.62" y="3.72"/>
<line x="65.62" y="1.52"/>
<line x="48.54" y="1.52"/>
<line x="48.54" y="3.72"/>
<line x="65.62" y="3.72"/>
<close/>
<move x="67.1" y="0.02"/>
<line x="94.42" y="0.02"/>
<curve x1="98.06" y1="0" x2="98.06" y2="5.29" x3="94.42" y3="5.27"/>
<line x="67.1" y="5.27"/>
<curve x1="63.57" y1="5.29" x2="63.57" y2="0" x3="67.1" y3="0.02"/>
<line x="67.1" y="0.02"/>
<close/>
<move x="19.79" y="0.02"/>
<line x="46.77" y="0.02"/>
<curve x1="50.41" y1="0" x2="50.41" y2="5.29" x3="46.77" y3="5.27"/>
<line x="19.79" y="5.27"/>
<curve x1="15.92" y1="5.29" x2="15.87" y2="0" x3="19.79" y3="0.02"/>
<line x="19.79" y="0.02"/>
<close/>
<move x="97.96" y="36.2"/>
<line x="92.49" y="22.81"/>
<curve x1="90.55" y1="17.9" x2="86.35" y2="13.3" x3="78.8" y3="13.32"/>
<line x="11.07" y="13.32"/>
<curve x1="6.77" y1="13.3" x2="5.84" y2="18.99" x3="9.64" y3="20.47"/>
<line x="40.8" y="33.06"/>
<line x="43.56" y="40.05"/>
<curve x1="44.13" y1="42.24" x2="45.88" y2="44.83" x3="49.37" y3="44.85"/>
<line x="91.76" y="44.85"/>
<curve x1="96.6" y1="44.8" x2="99.9" y2="40.79" x3="97.96" y3="36.2"/>
<close/>
<move x="66.5" y="29.5"/>
<line x="59.21" y="29.5"/>
<line x="59.21" y="17.61"/>
<line x="66.5" y="17.61"/>
<line x="66.5" y="29.5"/>
<close/>
<move x="78.07" y="29.5"/>
<line x="70.83" y="29.5"/>
<line x="70.83" y="17.61"/>
<line x="78.07" y="17.61"/>
<line x="78.07" y="29.5"/>
<close/>
<move x="82.5" y="29.55"/>
<line x="82.5" y="18.11"/>
<curve x1="84.76" y1="18.66" x2="87.02" y2="20.7" x3="88.51" y3="24.11"/>
<line x="90.82" y="29.56"/>
<line x="82.5" y="29.56"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Highway" h="98.17" w="68.63" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.5" y="0" perimeter="0" name="N"/>
<constraint x="0.5" y="1" perimeter="0" name="S"/>
<constraint x="0" y="0.4" perimeter="0" name="W"/>
<constraint x="1" y="0.4" perimeter="0" name="E"/>
<constraint x="0.21" y="1" perimeter="0" name="SW"/>
<constraint x="0.79" y="1" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="32.55" y="0"/>
<line x="29.08" y="0"/>
<line x="24.02" y="34.25"/>
<line x="31.55" y="34.25"/>
<close/>
<move x="36.05" y="0"/>
<line x="37.06" y="34.25"/>
<line x="44.62" y="34.25"/>
<line x="39.54" y="0"/>
<close/>
<move x="37.39" y="45.1"/>
<line x="46.21" y="45.1"/>
<line x="54.08" y="98.17"/>
<line x="38.97" y="98.17"/>
<close/>
<move x="31.23" y="45.1"/>
<line x="22.4" y="45.1"/>
<line x="14.53" y="98.17"/>
<line x="29.65" y="98.17"/>
<close/>
<move x="68.63" y="37.11"/>
<line x="0" y="37.11"/>
<line x="0" y="39.39"/>
<line x="15.13" y="39.39"/>
<line x="14.21" y="43.39"/>
<line x="20.1" y="43.39"/>
<line x="19.2" y="39.39"/>
<line x="49.44" y="39.39"/>
<line x="48.52" y="43.39"/>
<line x="54.41" y="43.39"/>
<line x="53.5" y="39.39"/>
<line x="68.63" y="39.39"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Jeep 1" h="53.87" w="98.66" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.55" y="0" perimeter="0" name="N"/>
<constraint x="0.5" y="0.745" perimeter="0" name="S"/>
<constraint x="0" y="0.5" perimeter="0" name="W"/>
<constraint x="0.955" y="0.5" perimeter="0" name="E"/>
<constraint x="0.21" y="1" perimeter="0" name="SW"/>
<constraint x="0.79" y="1" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="77.52" y="47.35"/>
<curve x1="80.21" y1="47.35" x2="82.37" y2="45.11" x3="82.37" y3="42.34"/>
<curve x1="82.37" y1="39.61" x2="80.21" y2="37.37" x3="77.52" y3="37.37"/>
<curve x1="74.82" y1="37.37" x2="72.65" y2="39.61" x3="72.65" y3="42.34"/>
<curve x1="72.66" y1="45.11" x2="74.82" y2="47.35" x3="77.52" y3="47.35"/>
<close/>
<move x="66.28" y="42.35"/>
<curve x1="66.28" y1="36.01" x2="71.3" y2="30.86" x3="77.52" y3="30.86"/>
<curve x1="83.71" y1="30.86" x2="88.73" y2="36.02" x3="88.73" y3="42.35"/>
<curve x1="88.73" y1="48.72" x2="83.71" y2="53.87" x3="77.52" y3="53.87"/>
<curve x1="71.31" y1="53.87" x2="66.28" y2="48.71" x3="66.28" y3="42.35"/>
<close/>
<move x="94.22" y="30.04"/>
<line x="94.2" y="18.44"/>
<curve x1="94.2" y1="13.82" x2="90.19" y2="14.31" x3="90.19" y3="14.31"/>
<line x="67.5" y="14.31"/>
<line x="59.23" y="0"/>
<line x="54.36" y="0"/>
<line x="62.64" y="14.3"/>
<line x="56.37" y="25.17"/>
<line x="42.08" y="25.15"/>
<curve x1="37.14" y1="14.76" x2="27.11" y2="15.41" x3="27.11" y3="15.41"/>
<line x="0" y="15.41"/>
<line x="0" y="40.1"/>
<line x="3.87" y="40.1"/>
<curve x1="4.39" y1="31.7" x2="12.26" y2="25.04" x3="20.58" y3="25.04"/>
<curve x1="28.9" y1="25.04" x2="36.79" y2="31.72" x3="37.29" y3="40.1"/>
<line x="60.85" y="40.12"/>
<curve x1="61.35" y1="31.71" x2="69.24" y2="25.04" x3="77.56" y3="25.04"/>
<curve x1="85.88" y1="25.04" x2="93.79" y2="31.71" x3="94.27" y3="40.14"/>
<line x="95.73" y="40.15"/>
<curve x1="97.35" y1="40.15" x2="98.66" y2="38.8" x3="98.66" y3="37.14"/>
<line x="98.66" y="30.03"/>
<line x="94.21" y="30.03"/>
<line x="94.21" y="30.04"/>
<close/>
<move x="20.54" y="47.35"/>
<curve x1="23.23" y1="47.35" x2="25.42" y2="45.11" x3="25.42" y3="42.34"/>
<curve x1="25.42" y1="39.61" x2="23.24" y2="37.37" x3="20.54" y3="37.37"/>
<curve x1="17.86" y1="37.37" x2="15.68" y2="39.61" x3="15.68" y3="42.34"/>
<curve x1="15.68" y1="45.11" x2="17.86" y2="47.35" x3="20.54" y3="47.35"/>
<close/>
<move x="9.32" y="42.35"/>
<curve x1="9.32" y1="36.01" x2="14.35" y2="30.86" x3="20.54" y3="30.86"/>
<curve x1="26.75" y1="30.86" x2="31.76" y2="36.02" x3="31.76" y3="42.35"/>
<curve x1="31.76" y1="48.72" x2="26.75" y2="53.87" x3="20.54" y3="53.87"/>
<curve x1="14.35" y1="53.87" x2="9.32" y2="48.71" x3="9.32" y3="42.35"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Jeep 2" h="48.27" w="99" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.64" y="0" perimeter="0" name="N"/>
<constraint x="0.5" y="0.745" perimeter="0" name="S"/>
<constraint x="0" y="0.5" perimeter="0" name="W"/>
<constraint x="1" y="0.5" perimeter="0" name="E"/>
<constraint x="0.21" y="1" perimeter="0" name="SW"/>
<constraint x="0.86" y="1" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="34.69" y="36.27"/>
<curve x1="34.19" y1="28.73" x2="27.98" y2="22.77" x3="20.39" y3="22.77"/>
<curve x1="12.79" y1="22.77" x2="6.58" y2="28.73" x3="6.08" y3="36.27"/>
<line x="6.04" y="36.27"/>
<line x="0" y="36.27"/>
<line x="0" y="13.94"/>
<line x="36.66" y="13.94"/>
<line x="42.59" y="23.1"/>
<line x="57.25" y="23.1"/>
<line x="65.23" y="11.21"/>
<line x="59.86" y="1.96"/>
<line x="63.3" y="0"/>
<line x="72.58" y="13.94"/>
<line x="99" y="13.94"/>
<line x="99" y="23.96"/>
<line x="74.85" y="23.96"/>
<line x="68.69" y="36.28"/>
<line x="34.67" y="36.28"/>
<line x="34.69" y="36.28"/>
<close/>
<move x="20.41" y="48.27"/>
<curve x1="14.4" y1="48.27" x2="9.5" y2="43.32" x3="9.5" y3="37.25"/>
<curve x1="9.5" y1="31.18" x2="14.39" y2="26.23" x3="20.41" y3="26.23"/>
<curve x1="26.43" y1="26.23" x2="31.32" y2="31.18" x3="31.32" y3="37.25"/>
<curve x1="31.32" y1="43.32" x2="26.43" y2="48.27" x3="20.41" y3="48.27"/>
<line x="20.41" y="48.27"/>
<close/>
<move x="20.41" y="32.65"/>
<curve x1="17.9" y1="32.65" x2="15.85" y2="34.71" x3="15.85" y3="37.25"/>
<curve x1="15.85" y1="39.79" x2="17.89" y2="41.85" x3="20.41" y3="41.85"/>
<curve x1="22.93" y1="41.85" x2="24.97" y2="39.79" x3="24.97" y3="37.25"/>
<curve x1="24.97" y1="34.71" x2="22.93" y2="32.65" x3="20.41" y3="32.65"/>
<line x="20.41" y="32.65"/>
<close/>
<move x="85.19" y="48.27"/>
<curve x1="79.18" y1="48.27" x2="74.28" y2="43.32" x3="74.28" y3="37.25"/>
<curve x1="74.28" y1="31.18" x2="79.18" y2="26.23" x3="85.19" y3="26.23"/>
<curve x1="91.21" y1="26.23" x2="96.1" y2="31.18" x3="96.1" y3="37.25"/>
<curve x1="96.1" y1="43.32" x2="91.21" y2="48.27" x3="85.19" y3="48.27"/>
<line x="85.19" y="48.27"/>
<close/>
<move x="85.19" y="32.65"/>
<curve x1="82.69" y1="32.65" x2="80.63" y2="34.71" x3="80.63" y3="37.25"/>
<curve x1="80.63" y1="39.79" x2="82.68" y2="41.85" x3="85.19" y3="41.85"/>
<curve x1="87.72" y1="41.85" x2="89.75" y2="39.79" x3="89.75" y3="37.25"/>
<curve x1="89.75" y1="34.71" x2="87.72" y2="32.65" x3="85.19" y3="32.65"/>
<line x="85.19" y="32.65"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Lighthouse 1" h="98.72" w="98.63" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.5" y="0" perimeter="0" name="N"/>
<constraint x="0.5" y="1" perimeter="0" name="S"/>
<constraint x="0.345" y="0.5" perimeter="0" name="W"/>
<constraint x="0.655" y="0.5" perimeter="0" name="E"/>
<constraint x="0" y="0.08" perimeter="0" name="NW"/>
<constraint x="1" y="0.08" perimeter="0" name="NE"/>
</connections>
<background>
<path>
<move x="0.02" y="25.95"/>
<line x="0" y="7.82"/>
<line x="40.47" y="13.3"/>
<line x="40.49" y="20.53"/>
<line x="0.02" y="25.95"/>
<close/>
<move x="98.63" y="7.82"/>
<line x="98.63" y="25.95"/>
<line x="58.16" y="20.48"/>
<line x="58.16" y="13.25"/>
<line x="98.63" y="7.82"/>
<close/>
<move x="35" y="8.48"/>
<curve x1="34.76" y1="8.6" x2="34.63" y2="8.82" x3="34.63" y3="9.09"/>
<curve x1="34.63" y1="9.45" x2="34.9" y2="9.74" x3="35.26" y3="9.74"/>
<line x="63.35" y="9.74"/>
<curve x1="63.7" y1="9.74" x2="63.99" y2="9.45" x3="63.99" y3="9.09"/>
<curve x1="63.99" y1="8.82" x2="63.84" y2="8.6" x3="63.62" y3="8.48"/>
<line x="49.31" y="0"/>
<line x="35" y="8.48"/>
<close/>
<move x="71.1" y="98.72"/>
<line x="61.53" y="26.54"/>
<line x="63.98" y="26.54"/>
<curve x1="64.7" y1="26.54" x2="65.28" y2="25.93" x3="65.28" y3="25.2"/>
<curve x1="65.28" y1="24.44" x2="64.7" y2="23.83" x3="63.98" y3="23.83"/>
<line x="34.63" y="23.83"/>
<curve x1="33.91" y1="23.83" x2="33.33" y2="24.44" x3="33.33" y3="25.2"/>
<curve x1="33.33" y1="25.93" x2="33.91" y2="26.54" x3="34.63" y3="26.54"/>
<line x="37.08" y="26.54"/>
<line x="27.51" y="98.72"/>
<line x="71.1" y="98.72"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Lighthouse 2" h="98.67" w="55.24" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.5" y="0" perimeter="0" name="N"/>
<constraint x="0.5" y="1" perimeter="0" name="S"/>
<constraint x="0.24" y="0.5" perimeter="0" name="W"/>
<constraint x="0.76" y="0.5" perimeter="0" name="E"/>
<constraint x="0.18" y="0.2" perimeter="0" name="NW"/>
<constraint x="0" y="1" perimeter="0" name="SW"/>
<constraint x="0.82" y="0.2" perimeter="0" name="NE"/>
<constraint x="1" y="1" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="44.79" y="92.04"/>
<line x="40.28" y="26.22"/>
<line x="43.98" y="26.22"/>
<curve x1="45.27" y1="26.22" x2="45.27" y2="25.34" x3="45.27" y3="25.34"/>
<line x="45.27" y="19.92"/>
<line x="43.49" y="19.92"/>
<line x="43.49" y="20.8"/>
<line x="39.34" y="20.8"/>
<line x="39.34" y="8.98"/>
<line x="41.83" y="8.98"/>
<line x="41.83" y="6.55"/>
<line x="27.58" y="0"/>
<line x="13.29" y="6.49"/>
<line x="13.29" y="8.92"/>
<line x="15.79" y="8.92"/>
<line x="15.79" y="20.75"/>
<line x="11.63" y="20.75"/>
<line x="11.63" y="19.87"/>
<line x="9.85" y="19.87"/>
<line x="9.85" y="25.29"/>
<curve x1="9.85" y1="25.29" x2="9.85" y2="26.17" x3="11.15" y3="26.17"/>
<line x="14.84" y="26.17"/>
<line x="10.32" y="92.05"/>
<line x="0" y="92.05"/>
<line x="0" y="98.67"/>
<line x="55.24" y="98.67"/>
<line x="55.24" y="92.05"/>
<line x="44.79" y="92.05"/>
<close/>
<move x="29.85" y="75.3"/>
<line x="39.89" y="75.3"/>
<line x="39.89" y="92.05"/>
<line x="29.85" y="92.05"/>
<line x="29.85" y="75.3"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Moped 1" h="57.91" w="98.94" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.37" y="0" perimeter="0" name="N"/>
<constraint x="0.46" y="0.825" perimeter="0" name="S"/>
<constraint x="0.05" y="0.5" perimeter="0" name="W"/>
<constraint x="0.955" y="0.5" perimeter="0" name="E"/>
<constraint x="0.17" y="0.13" perimeter="0" name="NW"/>
<constraint x="0.17" y="1" perimeter="0" name="SW"/>
<constraint x="0.71" y="0.25" perimeter="0" name="NE"/>
<constraint x="0.81" y="1" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="90.67" y="25.77"/>
<line x="91.7" y="21.96"/>
<line x="90.88" y="20.76"/>
<line x="69.82" y="20.76"/>
<line x="71.3" y="15.75"/>
<line x="70.54" y="14.64"/>
<line x="57.43" y="14.64"/>
<curve x1="56.19" y1="15.74" x2="57.9" y2="18.3" x3="57.9" y3="18.3"/>
<line x="60.95" y="19.74"/>
<line x="55.28" y="33.99"/>
<line x="44.32" y="33.99"/>
<line x="43.27" y="32.79"/>
<curve x1="43.27" y1="32.79" x2="45.18" y2="30.54" x3="45.18" y3="30.54"/>
<line x="37.79" y="14.65"/>
<line x="27.83" y="14.65"/>
<line x="26.83" y="13.5"/>
<line x="28.45" y="8.83"/>
<curve x1="28.45" y1="8.83" x2="31.6" y2="7.29" x3="31.6" y3="7.29"/>
<line x="30.88" y="5.75"/>
<line x="37.69" y="2.09"/>
<line x="36.6" y="0"/>
<line x="25.11" y="5.15"/>
<line x="24.3" y="8.33"/>
<line x="17.12" y="7.58"/>
<curve x1="16.64" y1="8.59" x2="16.36" y2="9.73" x3="16.36" y3="10.93"/>
<curve x1="16.36" y1="12.51" x2="16.83" y2="13.98" x3="17.63" y3="15.2"/>
<line x="22.77" y="13.91"/>
<line x="20.3" y="23.18"/>
<curve x1="19.1" y1="22.93" x2="17.85" y2="22.79" x3="16.57" y3="22.79"/>
<curve x1="13.41" y1="22.79" x2="10.43" y2="23.61" x3="7.84" y3="25.05"/>
<line x="8.63" y="26.45"/>
<curve x1="3.49" y1="29.3" x2="0" y2="34.82" x3="0" y3="41.16"/>
<curve x1="0" y1="50.41" x2="7.42" y2="57.91" x3="16.57" y3="57.91"/>
<curve x1="23.7" y1="57.91" x2="29.78" y2="53.35" x3="32.12" y3="46.96"/>
<line x="33.61" y="47.55"/>
<curve x1="34.34" y1="45.56" x2="34.74" y2="43.4" x3="34.74" y3="41.15"/>
<curve x1="34.74" y1="33.38" x2="29.97" y2="26.75" x3="23.22" y3="24.06"/>
<line x="23.92" y="21.99"/>
<line x="26.25" y="21.99"/>
<line x="41.48" y="39.83"/>
<curve x1="41.03" y1="40.61" x2="40.76" y2="41.52" x3="40.76" y3="42.5"/>
<curve x1="40.76" y1="45.43" x2="43.11" y2="47.81" x3="46.02" y3="47.81"/>
<curve x1="46.25" y1="47.81" x2="46.48" y2="47.79" x3="46.7" y3="47.76"/>
<line x="46.7" y="47.76"/>
<line x="64.85" y="45.83"/>
<curve x1="66.86" y1="52.8" x2="73.22" y2="57.9" x3="80.76" y3="57.9"/>
<curve x1="87.89" y1="57.9" x2="93.97" y2="53.34" x3="96.31" y3="46.95"/>
<line x="97.8" y="47.54"/>
<curve x1="98.53" y1="45.55" x2="98.93" y2="43.39" x3="98.93" y3="41.14"/>
<curve x1="98.94" y1="34.71" x2="95.65" y2="29.04" x3="90.67" y3="25.77"/>
<close/>
<move x="29.08" y="41.16"/>
<curve x1="29.08" y1="48.14" x2="23.48" y2="53.8" x3="16.57" y3="53.8"/>
<curve x1="9.66" y1="53.8" x2="4.06" y2="48.15" x3="4.06" y3="41.16"/>
<curve x1="4.06" y1="34.18" x2="9.66" y2="28.52" x3="16.57" y3="28.52"/>
<curve x1="17.34" y1="28.52" x2="18.09" y2="28.59" x3="18.82" y3="28.73"/>
<line x="16.29" y="38.23"/>
<curve x1="14.77" y1="38.34" x2="13.57" y2="39.61" x3="13.57" y3="41.17"/>
<curve x1="13.57" y1="42.8" x2="14.88" y2="44.13" x3="16.49" y3="44.13"/>
<curve x1="18.1" y1="44.13" x2="19.41" y2="42.81" x3="19.41" y3="41.17"/>
<curve x1="19.41" y1="40.22" x2="18.96" y2="39.37" x3="18.26" y3="38.83"/>
<line x="21.39" y="29.5"/>
<curve x1="25.92" y1="31.41" x2="29.08" y2="35.91" x3="29.08" y3="41.16"/>
<close/>
<move x="68.7" y="37.86"/>
<curve x1="69.51" y1="34.84" x2="71.4" y2="32.26" x3="73.93" y3="30.59"/>
<line x="78.15" y="38.14"/>
<line x="68.7" y="37.86"/>
<close/>
<move x="80.77" y="53.81"/>
<curve x1="75.33" y1="53.81" x2="70.71" y2="50.31" x3="68.99" y3="45.41"/>
<line x="81.07" y="44.13"/>
<curve x1="82.68" y1="44.13" x2="83.99" y2="42.81" x3="83.99" y3="41.17"/>
<curve x1="83.99" y1="39.54" x2="82.68" y2="38.22" x3="81.07" y3="38.22"/>
<line x="80.64" y="38.21"/>
<line x="75.8" y="29.56"/>
<curve x1="77.32" y1="28.89" x2="79" y2="28.52" x3="80.77" y3="28.52"/>
<curve x1="87.68" y1="28.52" x2="93.28" y2="34.18" x3="93.28" y3="41.16"/>
<curve x1="93.28" y1="48.15" x2="87.68" y2="53.81" x3="80.77" y3="53.81"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Moped 2" h="54.65" w="98.67" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.43" y="0" perimeter="0" name="N"/>
<constraint x="0.5" y="0.74" perimeter="0" name="S"/>
<constraint x="0.025" y="0.5" perimeter="0" name="W"/>
<constraint x="0.97" y="0.5" perimeter="0" name="E"/>
<constraint x="0.17" y="1" perimeter="0" name="SW"/>
<constraint x="0.96" y="0.23" perimeter="0" name="NE"/>
<constraint x="0.83" y="1" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="70.22" y="21.29"/>
<curve x1="73.68" y1="18.66" x2="77.28" y2="18.22" x3="80.86" y3="17.68"/>
<line x="94.97" y="17.63"/>
<line x="94.87" y="12.64"/>
<line x="63.47" y="12.64"/>
<curve x1="62.28" y1="13.11" x2="61.44" y2="13.87" x3="62.11" y3="15.97"/>
<line x="70.22" y="21.29"/>
<close/>
<move x="81.27" y="19.39"/>
<curve x1="72.25" y1="19.39" x2="64.84" y2="26.34" x3="63.96" y3="35.25"/>
<line x="52.69" y="35.92"/>
<curve x1="48.59" y1="36.09" x2="45.96" y2="31.96" x3="46.62" y3="29.64"/>
<curve x1="47.19" y1="27.63" x2="47.65" y2="25.74" x3="47.1" y3="23.4"/>
<line x="40.55" y="13.94"/>
<curve x1="39.82" y1="13.03" x2="39.1" y2="12.92" x3="38.37" y3="12.69"/>
<line x="29.99" y="12.68"/>
<line x="32.13" y="7.39"/>
<curve x1="32.76" y1="5.59" x2="33.51" y2="4.95" x3="34.51" y3="5.05"/>
<line x="42.69" y="5.05"/>
<line x="42.73" y="0"/>
<line x="34.24" y="0"/>
<curve x1="31.49" y1="0.2" x2="29.38" y2="1.7" x3="27.88" y3="4.43"/>
<curve x1="27.88" y1="4.43" x2="24.78" y2="12.1" x3="21.64" y3="19.85"/>
<curve x1="20.28" y1="19.5" x2="18.86" y2="19.32" x3="17.4" y3="19.32"/>
<curve x1="7.79" y1="19.33" x2="0" y2="27.23" x3="0" y3="36.97"/>
<curve x1="0" y1="46.71" x2="7.79" y2="54.6" x3="17.4" y3="54.61"/>
<curve x1="27.01" y1="54.61" x2="34.8" y2="46.72" x3="34.8" y3="36.97"/>
<curve x1="34.8" y1="30.52" x2="31.39" y2="24.89" x3="26.29" y3="21.81"/>
<line x="28.68" y="15.89"/>
<curve x1="29.97" y1="18.51" x2="31.98" y2="20.66" x3="37.48" y3="28.7"/>
<curve x1="41.72" y1="34.91" x2="45.62" y2="40.64" x3="52.45" y3="40.85"/>
<line x="64.28" y="40.86"/>
<curve x1="66.01" y1="48.75" x2="72.96" y2="54.65" x3="81.26" y3="54.65"/>
<curve x1="90.87" y1="54.65" x2="98.66" y2="46.75" x3="98.66" y3="37.01"/>
<curve x1="98.67" y1="27.28" x2="90.88" y2="19.39" x3="81.27" y3="19.39"/>
<close/>
<move x="29.93" y="36.97"/>
<curve x1="29.93" y1="40.48" x2="28.53" y2="43.64" x3="26.26" y3="45.95"/>
<curve x1="23.98" y1="48.25" x2="20.87" y2="49.67" x3="17.4" y3="49.67"/>
<curve x1="13.93" y1="49.67" x2="10.82" y2="48.25" x3="8.54" y3="45.95"/>
<curve x1="6.27" y1="43.64" x2="4.87" y2="40.49" x3="4.87" y3="36.97"/>
<curve x1="4.87" y1="33.46" x2="6.27" y2="30.3" x3="8.54" y3="27.99"/>
<curve x1="10.81" y1="25.69" x2="13.93" y2="24.27" x3="17.4" y3="24.27"/>
<curve x1="18.21" y1="24.27" x2="19" y2="24.35" x3="19.77" y3="24.5"/>
<curve x1="17.37" y1="30.45" x2="15.35" y2="35.48" x3="15.24" y3="35.8"/>
<curve x1="14.03" y1="39.74" x2="18.59" y2="40.74" x3="19.79" y3="37.9"/>
<line x="24.42" y="26.44"/>
<curve x1="25.08" y1="26.89" x2="25.69" y2="27.41" x3="26.26" y3="27.98"/>
<curve x1="28.53" y1="30.29" x2="29.93" y2="33.45" x3="29.93" y3="36.97"/>
<close/>
<move x="90.13" y="46"/>
<curve x1="87.85" y1="48.3" x2="84.74" y2="49.72" x3="81.27" y3="49.72"/>
<curve x1="77.8" y1="49.72" x2="74.69" y2="48.3" x3="72.41" y3="46"/>
<curve x1="71.01" y1="44.58" x2="69.94" y2="42.83" x3="69.33" y3="40.88"/>
<line x="85.16" y="40.9"/>
<line x="85.24" y="33.99"/>
<line x="68.92" y="34.96"/>
<curve x1="69.35" y1="32.28" x2="70.61" y2="29.9" x3="72.42" y3="28.05"/>
<curve x1="74.69" y1="25.75" x2="77.81" y2="24.33" x3="81.28" y3="24.33"/>
<curve x1="84.75" y1="24.33" x2="87.86" y2="25.75" x3="90.14" y3="28.05"/>
<curve x1="92.41" y1="30.35" x2="93.81" y2="33.51" x3="93.81" y3="37.03"/>
<curve x1="93.79" y1="40.54" x2="92.4" y2="43.7" x3="90.13" y3="46"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Motorcycle" h="66.53" w="98.62" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.47" y="0" perimeter="0" name="N"/>
<constraint x="0.5" y="0.88" perimeter="0" name="S"/>
<constraint x="0.15" y="0.5" perimeter="0" name="W"/>
<constraint x="0.885" y="0.5" perimeter="0" name="E"/>
<constraint x="0.155" y="1" perimeter="0" name="SW"/>
<constraint x="0.82" y="1" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="87.31" y="33.88"/>
<line x="87.36" y="33.12"/>
<curve x1="87.36" y1="30.53" x2="86.66" y2="29.27" x3="84.62" y3="29.27"/>
<line x="69.4" y="29.27"/>
<curve x1="69.4" y1="27.58" x2="69.26" y2="25.7" x3="67.59" y3="23.96"/>
<line x="60.12" y="16.01"/>
<curve x1="59.19" y1="15.06" x2="58.97" y2="15.02" x3="58.27" y3="14.59"/>
<curve x1="57.52" y1="14.17" x2="54.37" y2="12.91" x3="53.49" y3="12.53"/>
<curve x1="52.61" y1="12.19" x2="52.1" y2="12.11" x3="51.59" y3="12.15"/>
<line x="51.59" y="9.98"/>
<curve x1="52.1" y1="9.05" x2="52.7" y2="9.09" x3="52.75" y3="6.08"/>
<curve x1="52.75" y1="2.73" x2="50.62" y2="0" x3="46.77" y3="0"/>
<curve x1="42.92" y1="0" x2="41.07" y2="2.73" x3="40.69" y3="6.08"/>
<line x="42.04" y="6.08"/>
<line x="42.04" y="10.77"/>
<curve x1="42.04" y1="12.46" x2="43.68" y2="13.84" x3="45.7" y3="13.84"/>
<line x="45.7" y="14.74"/>
<line x="41.52" y="21.84"/>
<line x="37.58" y="25.5"/>
<curve x1="35.91" y1="27.1" x2="33.91" y2="26.01" x3="34.38" y3="24.32"/>
<line x="37.58" y="10.78"/>
<curve x1="37.81" y1="9.9" x2="37.16" y2="9" x3="36.14" y3="10.59"/>
<line x="28.3" y="22.78"/>
<curve x1="26.44" y1="25.79" x2="21.62" y2="27.43" x3="18.6" y3="27.43"/>
<line x="14.75" y="27.43"/>
<line x="14.75" y="33.84"/>
<line x="15.03" y="33.79"/>
<curve x1="17.29" y1="33.79" x2="19.45" y2="34.25" x3="21.43" y3="35.07"/>
<line x="20.43" y="36.73"/>
<curve x1="18.79" y1="36.11" x2="17.02" y2="35.76" x3="15.17" y3="35.76"/>
<curve x1="6.8" y1="35.75" x2="0" y2="42.65" x3="0" y3="51.14"/>
<curve x1="0" y1="59.63" x2="6.8" y2="66.53" x3="15.17" y3="66.53"/>
<curve x1="23.54" y1="66.53" x2="30.34" y2="59.63" x3="30.34" y3="51.14"/>
<curve x1="30.34" y1="46.6" x2="28.38" y2="42.53" x3="25.3" y3="39.71"/>
<line x="26.28" y="38.1"/>
<curve x1="29.89" y1="41.29" x2="32.2" y2="45.97" x3="32.2" y3="51.14"/>
<curve x1="32.2" y1="54.81" x2="33.91" y2="58.62" x3="39.34" y3="58.62"/>
<curve x1="44.72" y1="58.62" x2="49.03" y2="58.62" x3="55.34" y3="58.52"/>
<line x="66.81" y="58.52"/>
<curve x1="69.39" y1="63.28" x2="74.38" y2="66.52" x3="80.11" y3="66.52"/>
<curve x1="88.45" y1="66.52" x2="95.22" y2="59.67" x3="95.27" y3="51.23"/>
<line x="98.62" y="51.23"/>
<curve x1="98.62" y1="43.47" x2="93.94" y2="36.79" x3="87.31" y3="33.88"/>
<close/>
<move x="15.12" y="60.64"/>
<curve x1="9.95" y1="60.64" x2="5.74" y2="56.38" x3="5.74" y3="51.13"/>
<curve x1="5.74" y1="45.89" x2="9.94" y2="41.63" x3="15.12" y3="41.63"/>
<curve x1="15.87" y1="41.63" x2="16.59" y2="41.73" x3="17.29" y3="41.9"/>
<line x="15.23" y="45.3"/>
<curve x1="15.19" y1="45.3" x2="15.16" y2="45.29" x3="15.12" y3="45.29"/>
<curve x1="11.94" y1="45.29" x2="9.36" y2="47.91" x3="9.36" y3="51.12"/>
<curve x1="9.36" y1="54.34" x2="11.94" y2="56.96" x3="15.12" y3="56.96"/>
<curve x1="18.29" y1="56.96" x2="20.87" y2="54.34" x3="20.87" y3="51.12"/>
<curve x1="20.87" y1="50.06" x2="20.59" y2="49.07" x3="20.1" y3="48.22"/>
<line x="22.14" y="44.86"/>
<curve x1="23.59" y1="46.53" x2="24.48" y2="48.72" x3="24.48" y3="51.12"/>
<curve x1="24.49" y1="56.38" x2="20.3" y2="60.64" x3="15.12" y3="60.64"/>
<close/>
<move x="46.85" y="35.71"/>
<line x="37.2" y="31.75"/>
<line x="49.08" y="24.84"/>
<curve x1="50.43" y1="26.96" x2="51.4" y2="27.95" x3="53.34" y3="29.11"/>
<line x="46.85" y="35.71"/>
<close/>
<move x="65.27" y="47.84"/>
<curve x1="65.13" y1="48.58" x2="64.29" y2="48.46" x3="64.29" y3="47.84"/>
<line x="64.29" y="37.92"/>
<line x="70.51" y="37.92"/>
<curve x1="71.25" y1="37.92" x2="71.34" y2="38.43" x3="70.93" y3="38.85"/>
<curve x1="68.1" y1="41.02" x2="66.02" y2="44.18" x3="65.27" y3="47.84"/>
<close/>
<move x="80.12" y="60.64"/>
<curve x1="74.95" y1="60.64" x2="70.75" y2="56.38" x3="70.75" y3="51.13"/>
<curve x1="70.75" y1="47.79" x2="72.46" y2="44.85" x3="75.04" y3="43.16"/>
<line x="76.27" y="46.81"/>
<curve x1="75.11" y1="47.88" x2="74.37" y2="49.41" x3="74.37" y3="51.13"/>
<curve x1="74.37" y1="54.35" x2="76.95" y2="56.97" x3="80.13" y3="56.97"/>
<curve x1="83.3" y1="56.97" x2="85.88" y2="54.35" x3="85.88" y3="51.13"/>
<curve x1="85.88" y1="48.22" x2="83.77" y2="45.81" x3="81.02" y3="45.37"/>
<line x="79.74" y="41.65"/>
<curve x1="79.87" y1="41.64" x2="80" y2="41.63" x3="80.13" y3="41.63"/>
<curve x1="85.3" y1="41.63" x2="89.5" y2="45.89" x3="89.5" y3="51.13"/>
<curve x1="89.48" y1="56.38" x2="85.28" y2="60.64" x3="80.12" y3="60.64"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Partially Submerged Wreck" h="76.34" w="98.42" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.38" y="0" perimeter="0" name="N"/>
<constraint x="0.5" y="1" perimeter="0" name="S"/>
<constraint x="0.13" y="0.725" perimeter="0" name="W"/>
<constraint x="0.84" y="0.5" perimeter="0" name="E"/>
<constraint x="0" y="1" perimeter="0" name="SW"/>
<constraint x="1" y="1" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="98.42" y="76.34"/>
<curve x1="96.27" y1="76.34" x2="94.2" y2="75.85" x3="92.38" y3="75.01"/>
<curve x1="90.47" y1="74.12" x2="88.34" y2="73.6" x3="86.13" y3="73.6"/>
<curve x1="83.92" y1="73.6" x2="81.77" y2="74.12" x3="79.9" y3="75.01"/>
<curve x1="78.03" y1="75.85" x2="75.98" y2="76.34" x3="73.83" y3="76.34"/>
<curve x1="71.68" y1="76.34" x2="69.61" y2="75.85" x3="67.76" y3="75.01"/>
<curve x1="65.87" y1="74.12" x2="63.75" y2="73.6" x3="61.53" y3="73.6"/>
<curve x1="59.29" y1="73.6" x2="57.17" y2="74.12" x3="55.28" y3="75.01"/>
<curve x1="53.44" y1="75.85" x2="51.36" y2="76.34" x3="49.21" y3="76.34"/>
<curve x1="47.06" y1="76.34" x2="44.99" y2="75.85" x3="43.17" y3="75.01"/>
<curve x1="41.26" y1="74.12" x2="39.13" y2="73.6" x3="36.92" y3="73.6"/>
<curve x1="34.71" y1="73.6" x2="32.56" y2="74.12" x3="30.69" y3="75.01"/>
<curve x1="28.85" y1="75.85" x2="26.77" y2="76.34" x3="24.62" y3="76.34"/>
<curve x1="22.47" y1="76.34" x2="20.4" y2="75.85" x3="18.55" y3="75.01"/>
<curve x1="16.66" y1="74.12" x2="14.54" y2="73.6" x3="12.32" y3="73.6"/>
<curve x1="10.1" y1="73.6" x2="7.96" y2="74.12" x3="6.07" y3="75.01"/>
<curve x1="4.2" y1="75.85" x2="2.15" y2="76.34" x3="0" y3="76.34"/>
<line x="0" y="67.12"/>
<curve x1="2.15" y1="67.12" x2="4.2" y2="66.62" x3="6.04" y3="65.78"/>
<curve x1="7.93" y1="64.89" x2="10.08" y2="64.37" x3="12.29" y3="64.37"/>
<curve x1="14.5" y1="64.37" x2="16.63" y2="64.89" x3="18.52" y3="65.78"/>
<curve x1="20.36" y1="66.62" x2="22.44" y2="67.12" x3="24.59" y3="67.12"/>
<curve x1="26.74" y1="67.12" x2="28.81" y2="66.62" x3="30.66" y3="65.78"/>
<curve x1="32.53" y1="64.89" x2="34.67" y2="64.37" x3="36.89" y3="64.37"/>
<curve x1="39.11" y1="64.37" x2="41.23" y2="64.89" x3="43.14" y3="65.78"/>
<curve x1="44.96" y1="66.62" x2="47.04" y2="67.12" x3="49.18" y3="67.12"/>
<curve x1="51.32" y1="67.12" x2="53.4" y2="66.62" x3="55.25" y3="65.78"/>
<curve x1="57.14" y1="64.89" x2="59.26" y2="64.37" x3="61.5" y3="64.37"/>
<curve x1="63.72" y1="64.37" x2="65.84" y2="64.89" x3="67.73" y3="65.78"/>
<curve x1="69.57" y1="66.62" x2="71.65" y2="67.12" x3="73.8" y3="67.12"/>
<curve x1="75.95" y1="67.12" x2="78" y2="66.62" x3="79.87" y3="65.78"/>
<curve x1="81.74" y1="64.89" x2="83.88" y2="64.37" x3="86.1" y3="64.37"/>
<curve x1="88.32" y1="64.37" x2="90.44" y2="64.89" x3="92.35" y3="65.78"/>
<curve x1="94.17" y1="66.62" x2="96.25" y2="67.12" x3="98.39" y3="67.12"/>
<line x="98.39" y="76.34"/>
<close/>
<move x="52.84" y="37.9"/>
<line x="43.95" y="16.38"/>
<line x="52.94" y="12.55"/>
<line x="50.63" y="6.95"/>
<line x="44.6" y="9.52"/>
<curve x1="44.6" y1="9.52" x2="43.4" y2="10.03" x3="41.65" y3="10.78"/>
<line x="37.18" y="0"/>
<line x="31.67" y="2.35"/>
<line x="36.13" y="13.14"/>
<curve x1="31.43" y1="15.14" x2="26.51" y2="17.24" x3="26.51" y3="17.24"/>
<line x="28.83" y="22.84"/>
<line x="38.43" y="18.74"/>
<line x="47.32" y="40.25"/>
<curve x1="29.03" y1="48.03" x2="11.2" y2="55.74" x3="12.3" y3="55.74"/>
<curve x1="14.52" y1="55.74" x2="16.64" y2="56.26" x3="18.53" y3="57.15"/>
<curve x1="20.37" y1="57.99" x2="22.45" y2="58.48" x3="24.6" y3="58.48"/>
<curve x1="26.75" y1="58.48" x2="28.82" y2="57.99" x3="30.67" y3="57.15"/>
<curve x1="32.54" y1="56.26" x2="34.68" y2="55.74" x3="36.9" y3="55.74"/>
<curve x1="39.12" y1="55.74" x2="41.24" y2="56.26" x3="43.15" y3="57.15"/>
<curve x1="44.97" y1="57.99" x2="47.05" y2="58.48" x3="49.19" y3="58.48"/>
<curve x1="51.33" y1="58.48" x2="53.41" y2="57.99" x3="55.26" y3="57.15"/>
<curve x1="57.15" y1="56.26" x2="59.27" y2="55.74" x3="61.51" y3="55.74"/>
<curve x1="63.73" y1="55.74" x2="65.85" y2="56.26" x3="67.74" y3="57.15"/>
<curve x1="69.58" y1="57.99" x2="71.66" y2="58.48" x3="73.81" y3="58.48"/>
<curve x1="74.42" y1="58.48" x2="75" y2="58.35" x3="75.58" y3="58.28"/>
<curve x1="76.68" y1="58.04" x2="77.77" y2="57.94" x3="78.82" y3="57.51"/>
<curve x1="78.84" y1="57.5" x2="78.87" y2="57.49" x3="78.89" y3="57.47"/>
<curve x1="80.83" y1="46.38" x2="85.33" y2="24.19" x3="85.33" y3="24.19"/>
<curve x1="85.33" y1="24.19" x2="69.66" y2="30.76" x3="52.84" y3="37.9"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Radiator Water" h="94.9" w="98.87" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.5" y="0.225" perimeter="0" name="N"/>
<constraint x="0.47" y="1" perimeter="0" name="S"/>
<constraint x="0.24" y="0.5" perimeter="0" name="W"/>
<constraint x="1" y="0.5" perimeter="0" name="E"/>
<constraint x="0" y="0" perimeter="0" name="NW"/>
<constraint x="0.2" y="0.84" perimeter="0" name="SW"/>
<constraint x="1" y="0.845" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="53.22" y="81.63"/>
<curve x1="53.22" y1="78.45" x2="50.67" y2="75.88" x3="47.49" y3="75.88"/>
<curve x1="44.36" y1="75.88" x2="41.78" y2="78.46" x3="41.78" y3="81.63"/>
<curve x1="41.78" y1="84.78" x2="44.35" y2="87.36" x3="47.49" y3="87.36"/>
<curve x1="50.67" y1="87.36" x2="53.22" y2="84.78" x3="53.22" y3="81.63"/>
<close/>
<move x="47.49" y="94.9"/>
<curve x1="40.22" y1="94.9" x2="34.33" y2="88.98" x3="34.33" y3="81.62"/>
<curve x1="34.33" y1="74.29" x2="40.22" y2="68.34" x3="47.49" y3="68.34"/>
<curve x1="54.8" y1="68.34" x2="60.69" y2="74.29" x3="60.69" y3="81.62"/>
<curve x1="60.69" y1="88.98" x2="54.8" y2="94.9" x3="47.49" y3="94.9"/>
<close/>
<move x="0" y="0"/>
<curve x1="5.7" y1="0" x2="23.9" y2="8.12" x3="31.21" y3="20.77"/>
<line x="23.55" y="27.05"/>
<curve x1="23.55" y1="27.05" x2="15.43" y2="15.97" x3="0.01" y3="13.08"/>
<line x="0.01" y="0"/>
<close/>
<move x="23.09" y="45.38"/>
<curve x1="23.09" y1="49.08" x2="26.06" y2="52.09" x3="29.74" y3="52.09"/>
<curve x1="33.42" y1="52.09" x2="36.41" y2="49.08" x3="36.41" y3="45.38"/>
<curve x1="36.41" y1="41.7" x2="29.74" y2="26.3" x3="29.74" y3="26.3"/>
<curve x1="29.74" y1="26.3" x2="23.09" y2="41.71" x3="23.09" y3="45.38"/>
<close/>
<move x="74.64" y="53.81"/>
<line x="83.33" y="39.13"/>
<curve x1="84.45" y1="37.29" x2="84.87" y2="36.46" x3="85.49" y3="35.88"/>
<curve x1="86.61" y1="34.83" x2="88.03" y2="34.9" x3="88.03" y3="34.9"/>
<line x="98.87" y="34.9"/>
<line x="98.87" y="29.79"/>
<line x="88.03" y="29.79"/>
<curve x1="83.76" y1="29.79" x2="81.67" y2="32.11" x3="81.08" y3="33.04"/>
<line x="68.73" y="53.31"/>
<line x="49.55" y="21.39"/>
<line x="43.62" y="21.39"/>
<line x="63.37" y="54.2"/>
<curve x1="55.51" y1="54.75" x2="36.21" y2="56.09" x3="25.13" y3="58.62"/>
<curve x1="23.23" y1="59.07" x2="20.55" y2="62.44" x3="19.6" y3="69.13"/>
<line x="18.44" y="76.98"/>
<curve x1="18.44" y1="78.89" x2="19.98" y2="80.44" x3="21.88" y3="80.44"/>
<line x="29.17" y="80.44"/>
<curve x1="29.74" y1="70.75" x2="37.67" y2="63.03" x3="47.44" y3="63.03"/>
<curve x1="57.21" y1="63.03" x2="65.15" y2="70.74" x3="65.74" y3="80.41"/>
<line x="98.87" y="80.41"/>
<line x="98.87" y="53.81"/>
<line x="74.64" y="53.81"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Scooter" h="64.45" w="99.43" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.63" y="0" perimeter="0" name="N"/>
<constraint x="0.5" y="0.78" perimeter="0" name="S"/>
<constraint x="0.05" y="0.5" perimeter="0" name="W"/>
<constraint x="0.98" y="0.5" perimeter="0" name="E"/>
<constraint x="0.23" y="1" perimeter="0" name="SW"/>
<constraint x="0.88" y="0.11" perimeter="0" name="NE"/>
<constraint x="0.87" y="1" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="86.24" y="37.62"/>
<curve x1="78.96" y1="37.62" x2="73.05" y2="43.61" x3="73.05" y3="51"/>
<curve x1="73.05" y1="58.37" x2="78.96" y2="64.34" x3="86.24" y3="64.34"/>
<curve x1="93.54" y1="64.34" x2="99.43" y2="58.37" x3="99.43" y3="51"/>
<curve x1="99.43" y1="43.6" x2="93.54" y2="37.62" x3="86.24" y3="37.62"/>
<close/>
<move x="10.57" y="53.78"/>
<curve x1="11.87" y1="59.77" x2="17.15" y2="64.45" x3="23.44" y3="64.45"/>
<curve x1="29.82" y1="64.45" x2="35.13" y2="59.87" x3="36.36" y3="53.78"/>
<line x="10.57" y="53.78"/>
<close/>
<move x="85.2" y="28.51"/>
<line x="81.77" y="16.86"/>
<curve x1="81.66" y1="16.42" x2="82.3" y2="16.21" x3="82.3" y3="16.21"/>
<line x="87.74" y="14.58"/>
<line x="86.99" y="6.81"/>
<line x="80.59" y="6.27"/>
<curve x1="78.77" y1="6.5" x2="78.35" y2="4.75" x3="78.35" y3="4.75"/>
<line x="77.6" y="2.05"/>
<curve x1="77.07" y1="0" x2="75.25" y2="0.22" x3="75.25" y3="0.22"/>
<line x="62.58" y="0.22"/>
<curve x1="60.76" y1="1.63" x2="62.9" y2="2.71" x3="62.9" y3="2.71"/>
<line x="70.68" y="2.71"/>
<curve x1="71.43" y1="2.58" x2="71.85" y2="3.47" x3="71.85" y3="3.47"/>
<line x="76.17" y="30.6"/>
<curve x1="71.28" y1="32.84" x2="66.92" y2="37.02" x3="64.55" y3="43.53"/>
<line x="50.42" y="43.53"/>
<curve x1="41.35" y1="36.61" x2="45.41" y2="26.68" x3="45.41" y3="26.68"/>
<line x="48.92" y="26.68"/>
<line x="48.92" y="19.46"/>
<line x="2.76" y="19.46"/>
<line x="2.76" y="26.68"/>
<line x="9.81" y="26.68"/>
<curve x1="0" y1="36.19" x2="0.74" y2="50.23" x3="0.74" y3="50.23"/>
<line x="69.23" y="50.23"/>
<curve x1="69.68" y1="41.08" x2="77.1" y2="33.78" x3="86.24" y3="33.78"/>
<curve x1="90.23" y1="33.78" x2="93.87" y2="35.24" x3="96.78" y3="37.56"/>
<line x="99.43" y="37.56"/>
<curve x1="98.85" y1="31.87" x2="92.47" y2="28.38" x3="85.2" y3="28.51"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Seat Belt" h="98.75" w="81.97" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.5" y="0" perimeter="0" name="N"/>
<constraint x="0.5" y="1" perimeter="0" name="S"/>
<constraint x="0.21" y="0.5" perimeter="0" name="W"/>
<constraint x="0.8" y="0.5" perimeter="0" name="E"/>
<constraint x="0" y="0.78" perimeter="0" name="SW"/>
<constraint x="0.81" y="0.11" perimeter="0" name="NE"/>
<constraint x="1" y="0.78" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="41.36" y="61.45"/>
<curve x1="50.59" y1="61.45" x2="59.07" y2="63.1" x3="66.13" y3="65.96"/>
<curve x1="66.33" y1="64.05" x2="66.39" y2="62.2" x3="66.28" y3="60.43"/>
<curve x1="65.03" y1="39.62" x2="62.63" y2="33" x3="55.94" y3="28.28"/>
<line x="19.26" y="64.97"/>
<curve x1="25.74" y1="62.73" x2="33.27" y2="61.45" x3="41.36" y3="61.45"/>
<close/>
<move x="17.51" y="71.42"/>
<curve x1="19.28" y1="79.27" x2="23.11" y2="88.17" x3="28.59" y3="98.07"/>
<curve x1="28.72" y1="98.31" x2="28.86" y2="98.53" x3="28.99" y3="98.75"/>
<line x="37.82" y="98.75"/>
<curve x1="29.36" y1="83.98" x2="28.08" y2="77.44" x3="29.69" y3="74.77"/>
<curve x1="29.69" y1="74.77" x2="38.64" y2="74.14" x3="41.63" y3="74.14"/>
<curve x1="44.62" y1="74.14" x2="53.57" y2="74.77" x3="53.57" y3="74.77"/>
<curve x1="55.18" y1="77.45" x2="53.9" y2="83.98" x3="45.44" y3="98.75"/>
<line x="53.76" y="98.75"/>
<curve x1="53.89" y1="98.53" x2="54.02" y2="98.31" x3="54.16" y3="98.07"/>
<curve x1="59.64" y1="88.17" x2="63.46" y2="79.27" x3="65.24" y3="71.43"/>
<curve x1="58.55" y1="68.49" x2="50.26" y2="66.71" x3="41.38" y3="66.71"/>
<curve x1="32.48" y1="66.7" x2="24.2" y2="68.48" x3="17.51" y3="71.42"/>
<close/>
<move x="70.05" y="14.17"/>
<line x="66.34" y="10.46"/>
<line x="51.29" y="25.52"/>
<curve x1="53.04" y1="26.43" x2="54.58" y2="27.32" x3="55.95" y3="28.28"/>
<line x="70.05" y="14.17"/>
<close/>
<move x="66.13" y="65.96"/>
<curve x1="65.95" y1="67.72" x2="65.64" y2="69.54" x3="65.22" y3="71.42"/>
<curve x1="70.92" y1="73.93" x2="75.45" y2="77.27" x3="78.15" y3="81.11"/>
<line x="81.97" y="77.3"/>
<curve x1="78.48" y1="72.64" x2="72.98" y2="68.73" x3="66.13" y3="65.96"/>
<close/>
<move x="16.45" y="60.43"/>
<curve x1="16.45" y1="60.4" x2="16.45" y2="60.38" x3="16.45" y3="60.35"/>
<line x="0" y="76.81"/>
<line x="3.71" y="80.52"/>
<line x="3.89" y="80.34"/>
<line x="4.61" y="81.06"/>
<curve x1="7.31" y1="77.24" x2="11.83" y2="73.92" x3="17.51" y3="71.42"/>
<curve x1="16.62" y1="67.49" x2="16.24" y2="63.82" x3="16.45" y3="60.43"/>
<close/>
<move x="46.53" y="23.17"/>
<line x="46.53" y="18.36"/>
<curve x1="49.39" y1="16.62" x2="51.31" y2="13.49" x3="51.31" y3="9.9"/>
<curve x1="51.31" y1="4.43" x2="46.87" y2="0" x3="41.41" y3="0"/>
<curve x1="35.95" y1="0" x2="31.51" y2="4.44" x3="31.51" y3="9.9"/>
<curve x1="31.51" y1="13.47" x2="33.41" y2="16.6" x3="36.25" y3="18.34"/>
<line x="36.25" y="23.16"/>
<curve x1="22.04" y1="30.03" x2="18.18" y2="31.85" x3="16.45" y3="60.36"/>
<line x="51.28" y="25.52"/>
<curve x1="49.84" y1="24.77" x2="48.27" y2="24.01" x3="46.53" y3="23.17"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Sea Plane" h="68.06" w="99.37" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.5" y="0.165" perimeter="0" name="N"/>
<constraint x="0.5" y="1" perimeter="0" name="S"/>
<constraint x="0.145" y="0.65" perimeter="0" name="W"/>
<constraint x="1" y="0.65" perimeter="0" name="E"/>
<constraint x="0" y="0.05" perimeter="0" name="NW"/>
<constraint x="0.04" y="1" perimeter="0" name="SW"/>
<constraint x="0.94" y="0.005" perimeter="0" name="NE"/>
<constraint x="0.96" y="1" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="95.43" y="68.06"/>
<curve x1="93.42" y1="68.06" x2="91.49" y2="67.6" x3="89.78" y3="66.83"/>
<curve x1="88.03" y1="66.01" x2="86.05" y2="65.52" x3="83.97" y3="65.52"/>
<curve x1="81.91" y1="65.52" x2="79.92" y2="66" x3="78.16" y3="66.83"/>
<curve x1="76.46" y1="67.6" x2="74.52" y2="68.06" x3="72.52" y3="68.06"/>
<curve x1="70.54" y1="68.06" x2="68.6" y2="67.6" x3="66.89" y3="66.83"/>
<curve x1="65.12" y1="66.01" x2="63.14" y2="65.52" x3="61.08" y3="65.52"/>
<curve x1="59.02" y1="65.52" x2="57.03" y2="66" x3="55.28" y3="66.83"/>
<curve x1="53.55" y1="67.6" x2="51.64" y2="68.06" x3="49.64" y3="68.06"/>
<curve x1="47.63" y1="68.06" x2="45.7" y2="67.6" x3="44" y3="66.83"/>
<curve x1="42.24" y1="66.01" x2="40.26" y2="65.52" x3="38.19" y3="65.52"/>
<curve x1="36.11" y1="65.52" x2="34.13" y2="66" x3="32.37" y3="66.83"/>
<curve x1="30.67" y1="67.6" x2="28.73" y2="68.06" x3="26.73" y3="68.06"/>
<curve x1="24.72" y1="68.06" x2="22.81" y2="67.6" x3="21.11" y3="66.83"/>
<curve x1="19.33" y1="66.01" x2="17.34" y2="65.52" x3="15.3" y3="65.52"/>
<curve x1="13.23" y1="65.52" x2="11.24" y2="66" x3="9.49" y3="66.83"/>
<curve x1="7.75" y1="67.6" x2="5.84" y2="68.06" x3="3.84" y3="68.06"/>
<line x="3.84" y="59.52"/>
<curve x1="5.84" y1="59.52" x2="7.76" y2="59.06" x3="9.49" y3="58.29"/>
<curve x1="11.24" y1="57.47" x2="13.22" y2="56.98" x3="15.3" y3="56.98"/>
<curve x1="17.34" y1="56.98" x2="19.32" y2="57.46" x3="21.11" y3="58.29"/>
<curve x1="22.81" y1="59.06" x2="24.72" y2="59.52" x3="26.73" y3="59.52"/>
<curve x1="28.74" y1="59.52" x2="30.67" y2="59.06" x3="32.37" y3="58.29"/>
<curve x1="34.13" y1="57.47" x2="36.11" y2="56.98" x3="38.19" y3="56.98"/>
<curve x1="40.25" y1="56.98" x2="42.24" y2="57.46" x3="44" y3="58.29"/>
<curve x1="45.7" y1="59.06" x2="47.64" y2="59.52" x3="49.64" y3="59.52"/>
<curve x1="51.64" y1="59.52" x2="53.56" y2="59.06" x3="55.28" y3="58.29"/>
<curve x1="57.04" y1="57.47" x2="59.02" y2="56.98" x3="61.08" y3="56.98"/>
<curve x1="63.13" y1="56.98" x2="65.11" y2="57.46" x3="66.89" y3="58.29"/>
<curve x1="68.6" y1="59.06" x2="70.54" y2="59.52" x3="72.52" y3="59.52"/>
<curve x1="74.53" y1="59.52" x2="76.46" y2="59.06" x3="78.16" y3="58.29"/>
<curve x1="79.92" y1="57.47" x2="81.9" y2="56.98" x3="83.97" y3="56.98"/>
<curve x1="86.05" y1="56.98" x2="88.03" y2="57.46" x3="89.78" y3="58.29"/>
<curve x1="91.49" y1="59.06" x2="93.43" y2="59.52" x3="95.43" y3="59.52"/>
<line x="95.43" y="68.06"/>
<close/>
<move x="74.84" y="15.98"/>
<curve x1="74.57" y1="16.44" x2="73.05" y2="19.08" x3="73.05" y3="19.08"/>
<curve x1="73.05" y1="19.08" x2="72.72" y2="19.75" x3="71.69" y3="19.75"/>
<line x="66.47" y="19.75"/>
<line x="63.49" y="10.8"/>
<curve x1="63.72" y1="10.75" x2="63.97" y2="10.71" x3="64.13" y3="10.68"/>
<curve x1="66" y1="10.34" x2="66.64" y2="10.34" x3="68.02" y3="11.06"/>
<curve x1="68.02" y1="11.06" x2="73.97" y2="14.16" x3="74.37" y3="14.39"/>
<curve x1="74.87" y1="14.63" x2="75.18" y2="15.38" x3="74.84" y3="15.98"/>
<move x="60.56" y="11.37"/>
<line x="63.37" y="19.75"/>
<line x="42.59" y="19.75"/>
<curve x1="42.14" y1="19.75" x2="41.66" y2="19.48" x3="41.66" y3="18.76"/>
<line x="41.66" y="17.63"/>
<curve x1="41.66" y1="17.02" x2="41.92" y2="16.64" x3="42.46" y3="16.37"/>
<curve x1="43.09" y1="16.08" x2="46.86" y2="14.56" x3="49.13" y3="13.95"/>
<curve x1="53.24" y1="12.91" x2="57.54" y2="11.97" x3="60.56" y3="11.37"/>
<move x="42.14" y="44.08"/>
<line x="45.51" y="34.9"/>
<line x="68.85" y="34.9"/>
<line x="72.22" y="44.04"/>
<line x="42.14" y="44.08"/>
<close/>
<move x="98.44" y="44"/>
<line x="74.91" y="44.02"/>
<line x="71.52" y="34.83"/>
<curve x1="74.23" y1="34.39" x2="79.33" y2="33.57" x3="82.27" y3="32.72"/>
<curve x1="83.54" y1="32.39" x2="84.84" y2="31.06" x3="85.21" y3="30.29"/>
<line x="92.22" y="19.5"/>
<line x="92.22" y="33.01"/>
<curve x1="92.22" y1="34.53" x2="94.46" y2="34.53" x3="94.46" y3="33.01"/>
<line x="94.46" y="19.07"/>
<line x="95.42" y="19.07"/>
<curve x1="98.1" y1="19.07" x2="98.1" y2="15.01" x3="95.42" y3="15.01"/>
<line x="94.46" y="15.01"/>
<line x="94.46" y="1.52"/>
<curve x1="94.46" y1="0" x2="92.22" y2="0" x3="92.22" y3="1.52"/>
<line x="92.22" y="15.01"/>
<line x="91.57" y="15.01"/>
<curve x1="89.18" y1="14.77" x2="77.95" y2="13.56" x3="75.79" y3="12.43"/>
<curve x1="73.61" y1="11.27" x2="71.32" y2="9.97" x3="69.19" y3="8.86"/>
<curve x1="67.23" y1="7.87" x2="66.09" y2="7.94" x3="63.97" y3="8.31"/>
<curve x1="62.77" y1="8.55" x2="55.7" y2="9.88" x3="48.86" y3="11.63"/>
<curve x1="40.41" y1="13.79" x2="29.97" y2="18.76" x3="29.97" y3="18.76"/>
<line x="18.04" y="18.81"/>
<curve x1="15.31" y1="18.01" x2="14.24" y2="12.85" x3="13.05" y3="10.58"/>
<line x="10.03" y="4.45"/>
<curve x1="9.81" y1="3.94" x2="9.26" y2="3.79" x3="8.74" y3="3.76"/>
<line x="1.14" y="3.3"/>
<curve x1="0" y1="3.23" x2="0.43" y2="4.2" x3="0.59" y3="4.75"/>
<line x="5.8" y="25.4"/>
<curve x1="6.35" y1="27.71" x2="9.52" y2="29.91" x3="11.75" y3="30.15"/>
<line x="42.45" y="34.91"/>
<line x="42.84" y="34.91"/>
<line x="39.47" y="44.09"/>
<line x="15.34" y="44.11"/>
<curve x1="14.75" y1="44.11" x2="14.27" y2="44.44" x3="14.27" y3="45.02"/>
<line x="14.27" y="46.57"/>
<curve x1="14.27" y1="47.22" x2="14.66" y2="47.65" x3="15.34" y3="47.87"/>
<curve x1="17.32" y1="48.47" x2="23.28" y2="50.12" x3="30.39" y3="51.87"/>
<curve x1="30.64" y1="51.78" x2="30.89" y2="51.73" x3="31.14" y3="51.61"/>
<curve x1="33.39" y1="50.55" x2="35.77" y2="50.02" x3="38.2" y3="50.02"/>
<curve x1="40.64" y1="50.02" x2="43.03" y2="50.55" x3="45.23" y3="51.59"/>
<curve x1="46.62" y1="52.24" x2="48.15" y2="52.56" x3="49.65" y3="52.56"/>
<curve x1="51.15" y1="52.56" x2="52.64" y2="52.24" x3="54.02" y3="51.62"/>
<curve x1="56.22" y1="50.58" x2="58.68" y2="50.03" x3="61.1" y3="50.03"/>
<curve x1="63.49" y1="50.03" x2="65.95" y2="50.58" x3="68.12" y3="51.6"/>
<curve x1="69.53" y1="52.25" x2="71.06" y2="52.57" x3="72.54" y3="52.57"/>
<curve x1="74.04" y1="52.57" x2="75.57" y2="52.25" x3="76.91" y3="51.63"/>
<curve x1="79.14" y1="50.59" x2="81.57" y2="50.04" x3="83.99" y3="50.04"/>
<curve x1="86.28" y1="50.04" x2="88.57" y2="50.55" x3="90.67" y3="51.47"/>
<curve x1="96.53" y1="49.51" x2="98.61" y2="47.91" x3="98.61" y3="47.91"/>
<curve x1="99.06" y1="47.53" x2="99.37" y2="47.14" x3="99.37" y3="46.54"/>
<line x="99.37" y="44.94"/>
<curve x1="99.35" y1="44.32" x2="99.02" y2="44" x3="98.44" y3="44"/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Ship 1" h="52.79" w="98.87" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.47" y="0" perimeter="0" name="N"/>
<constraint x="0.5" y="0.92" perimeter="0" name="S"/>
<constraint x="0.22" y="0.48" perimeter="0" name="W"/>
<constraint x="0.92" y="0.48" perimeter="0" name="E"/>
<constraint x="0.12" y="1" perimeter="0" name="SW"/>
<constraint x="0.85" y="0.2" perimeter="0" name="NE"/>
<constraint x="1" y="0.92" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="95.02" y="33.79"/>
<line x="92.85" y="29.58"/>
<line x="37.5" y="29.58"/>
<line x="38.83" y="25.37"/>
<line x="90.67" y="25.37"/>
<line x="88.5" y="21.14"/>
<line x="83.9" y="21.14"/>
<line x="83.9" y="10.64"/>
<line x="75.68" y="10.64"/>
<line x="69.86" y="21.15"/>
<line x="44.67" y="21.15"/>
<line x="41.28" y="17.46"/>
<line x="44.46" y="7.27"/>
<line x="48.78" y="7.27"/>
<line x="48.78" y="4.32"/>
<line x="45.39" y="4.32"/>
<line x="46.73" y="0"/>
<line x="44.67" y="0"/>
<line x="35.05" y="17.37"/>
<line x="26.1" y="17.37"/>
<line x="22.21" y="25.38"/>
<line x="30.63" y="25.38"/>
<line x="28.29" y="29.59"/>
<line x="20.17" y="29.59"/>
<line x="18.11" y="33.8"/>
<line x="0" y="33.8"/>
<line x="11.82" y="52.79"/>
<line x="11.95" y="52.78"/>
<curve x1="12.08" y1="52.78" x2="12.21" y2="52.79" x3="12.34" y3="52.79"/>
<curve x1="13.07" y1="52.79" x2="13.78" y2="52.75" x3="14.49" y3="52.67"/>
<line x="14.87" y="52.65"/>
<line x="16.37" y="52.4"/>
<line x="16.57" y="52.33"/>
<curve x1="17.95" y1="52.03" x2="19.28" y2="51.59" x3="20.54" y3="51.03"/>
<line x="20.76" y="50.96"/>
<line x="21" y="50.81"/>
<curve x1="22.15" y1="50.26" x2="23.23" y2="49.61" x3="24.25" y3="48.86"/>
<line x="24.73" y="48.57"/>
<line x="24.8" y="48.62"/>
<curve x1="26.83" y1="50.18" x2="29.17" y2="51.36" x3="31.7" y3="52.06"/>
<line x="31.71" y="52.06"/>
<line x="31.72" y="52.06"/>
<curve x1="33.16" y1="52.46" x2="34.66" y2="52.7" x3="36.21" y3="52.76"/>
<line x="36.32" y="52.78"/>
<line x="36.47" y="52.77"/>
<curve x1="36.66" y1="52.77" x2="36.85" y2="52.78" x3="37.03" y3="52.78"/>
<curve x1="38.29" y1="52.78" x2="39.52" y2="52.66" x3="40.72" y3="52.44"/>
<line x="40.95" y="52.42"/>
<line x="41.16" y="52.35"/>
<curve x1="42.58" y1="52.05" x2="43.95" y2="51.61" x3="45.24" y3="51.03"/>
<line x="45.39" y="50.98"/>
<line x="45.57" y="50.87"/>
<curve x1="46.77" y1="50.31" x2="47.91" y2="49.63" x3="48.96" y3="48.85"/>
<line x="49.42" y="48.57"/>
<line x="49.47" y="48.6"/>
<curve x1="51.89" y1="50.46" x2="54.73" y2="51.78" x3="57.82" y3="52.39"/>
<line x="57.9" y="52.41"/>
<line x="57.99" y="52.42"/>
<curve x1="59.2" y1="52.65" x2="60.45" y2="52.77" x3="61.73" y3="52.77"/>
<curve x1="61.94" y1="52.77" x2="62.15" y2="52.76" x3="62.36" y3="52.76"/>
<line x="62.53" y="52.77"/>
<line x="62.8" y="52.74"/>
<curve x1="63.66" y1="52.69" x2="64.5" y2="52.6" x3="65.33" y3="52.45"/>
<line x="65.62" y="52.42"/>
<line x="65.79" y="52.36"/>
<curve x1="67.25" y1="52.06" x2="68.65" y2="51.6" x3="69.98" y3="51"/>
<line x="70.07" y="50.97"/>
<line x="70.17" y="50.91"/>
<curve x1="71.44" y1="50.32" x2="72.64" y2="49.6" x3="73.75" y3="48.77"/>
<line x="74.1" y="48.56"/>
<line x="74.34" y="48.71"/>
<curve x1="75.9" y1="49.88" x2="77.63" y2="50.84" x3="79.49" y3="51.52"/>
<line x="79.59" y="51.57"/>
<line x="79.68" y="51.59"/>
<curve x1="80.58" y1="51.91" x2="81.51" y2="52.17" x3="82.46" y3="52.36"/>
<line x="82.59" y="52.4"/>
<line x="82.69" y="52.41"/>
<curve x1="83.9" y1="52.64" x2="85.15" y2="52.76" x3="86.43" y3="52.76"/>
<curve x1="86.64" y1="52.76" x2="86.85" y2="52.75" x3="87.06" y3="52.75"/>
<line x="87.23" y="52.76"/>
<line x="87.38" y="52.74"/>
<curve x1="88.86" y1="52.67" x2="90.29" y2="52.44" x3="91.67" y3="52.07"/>
<line x="91.82" y="52.05"/>
<line x="92.04" y="52"/>
<curve x1="93.46" y1="51.59" x2="94.82" y2="51.04" x3="96.09" y3="50.34"/>
<line x="96.23" y="50.28"/>
<line x="96.5" y="50.1"/>
<curve x1="97.13" y1="49.74" x2="97.73" y2="49.35" x3="98.32" y3="48.92"/>
<line x="98.87" y="48.57"/>
<line x="98.87" y="48.51"/>
<line x="98.87" y="42.31"/>
<line x="98.87" y="33.78"/>
<line x="95.02" y="33.78"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Ship 2" h="98.86" w="99.17" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.5" y="0" perimeter="0" name="N"/>
<constraint x="0.5" y="0.99" perimeter="0" name="S"/>
<constraint x="0.215" y="0.5" perimeter="0" name="W"/>
<constraint x="0.785" y="0.5" perimeter="0" name="E"/>
<constraint x="0.23" y="0.17" perimeter="0" name="NW"/>
<constraint x="0" y="0.99" perimeter="0" name="SW"/>
<constraint x="0.77" y="0.17" perimeter="0" name="NE"/>
<constraint x="1" y="0.99" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="56.55" y="96.52"/>
<curve x1="61.62" y1="94.41" x2="63.98" y2="94.7" x3="68.14" y3="96.78"/>
<curve x1="72.34" y1="98.86" x2="76.51" y2="98.86" x3="81.46" y3="96.47"/>
<curve x1="86.36" y1="94.08" x2="90.37" y2="95.44" x3="92.62" y3="96.73"/>
<curve x1="94.46" y1="97.8" x2="96.32" y2="98.23" x3="99.12" y3="98.23"/>
<line x="99.12" y="88.69"/>
<curve x1="94.91" y1="88.67" x2="93.11" y2="87.3" x3="93.11" y3="87.3"/>
<curve x1="88.78" y1="84.77" x2="84.8" y2="85.27" x3="79.35" y3="87.97"/>
<curve x1="76.22" y1="89.52" x2="71.28" y2="89.11" x3="67.76" y3="87.4"/>
<curve x1="62.97" y1="84.98" x2="60.24" y2="85.57" x3="55.2" y3="87.71"/>
<curve x1="51.28" y1="89.36" x2="47.75" y2="89.36" x3="43.88" y3="87.71"/>
<curve x1="38.81" y1="85.56" x2="36.21" y2="84.98" x3="31.37" y3="87.4"/>
<curve x1="27.89" y1="89.11" x2="22.88" y2="89.52" x3="19.78" y3="87.97"/>
<curve x1="14.31" y1="85.27" x2="10.4" y2="84.77" x3="6.08" y3="87.3"/>
<curve x1="6.08" y1="87.3" x2="4.2" y2="88.67" x3="0.07" y3="88.69"/>
<line x="0.07" y="98.23"/>
<curve x1="2.68" y1="98.23" x2="4.71" y2="97.75" x3="6.46" y3="96.73"/>
<curve x1="8.68" y1="95.43" x2="12.82" y2="94.08" x3="17.72" y3="96.47"/>
<curve x1="22.66" y1="98.86" x2="26.84" y2="98.86" x3="30.99" y3="96.78"/>
<curve x1="35.19" y1="94.7" x2="37.5" y2="94.33" x3="42.58" y3="96.42"/>
<curve x1="47.49" y1="98.81" x2="52.36" y2="98.59" x3="56.55" y3="96.52"/>
<line x="56.55" y="96.52"/>
<close/>
<move x="93.16" y="73.37"/>
<curve x1="84.64" y1="68.92" x2="80.93" y2="74.32" x3="76.37" y3="74.3"/>
<line x="76.37" y="52.74"/>
<line x="83.41" y="37.22"/>
<curve x1="84.49" y1="34.85" x2="83.42" y2="32.67" x3="80.86" y3="31.6"/>
<line x="76.58" y="29.95"/>
<line x="76.58" y="16.55"/>
<line x="68.3" y="16.55"/>
<line x="68.3" y="9.48"/>
<line x="56.76" y="9.48"/>
<line x="56.76" y="0"/>
<line x="49.56" y="0"/>
<line x="42.41" y="0"/>
<line x="42.41" y="9.49"/>
<line x="30.88" y="9.49"/>
<line x="30.88" y="16.56"/>
<line x="22.59" y="16.56"/>
<line x="22.59" y="29.97"/>
<line x="18.31" y="31.62"/>
<curve x1="15.75" y1="32.68" x2="14.68" y2="34.87" x3="15.76" y3="37.24"/>
<line x="22.8" y="52.76"/>
<line x="22.8" y="74.31"/>
<curve x1="18.23" y1="74.33" x2="14.34" y2="69.02" x3="6.01" y3="73.44"/>
<curve x1="6.01" y1="73.44" x2="3.62" y2="74.72" x3="0" y3="74.78"/>
<line x="0" y="84.06"/>
<curve x1="2.83" y1="83.85" x2="4.18" y2="83.42" x3="6.34" y3="82.31"/>
<curve x1="8.6" y1="81.08" x2="12.75" y2="79.9" x3="17.66" y3="82.31"/>
<curve x1="22.6" y1="84.68" x2="26.78" y2="84.68" x3="30.93" y3="82.62"/>
<curve x1="35.13" y1="80.53" x2="38.77" y2="80.42" x3="42.68" y3="82.31"/>
<curve x1="47.6" y1="84.68" x2="51.46" y2="84.71" x3="56.44" y3="82.36"/>
<curve x1="60.43" y1="80.41" x2="64.04" y2="80.52" x3="68.19" y3="82.62"/>
<curve x1="72.39" y1="84.69" x2="76.56" y2="84.69" x3="81.51" y3="82.31"/>
<curve x1="86.41" y1="79.9" x2="90.54" y2="81.11" x3="92.83" y3="82.31"/>
<curve x1="94.84" y1="83.31" x2="96.25" y2="83.85" x3="99.17" y3="84.06"/>
<line x="99.17" y="74.71"/>
<curve x1="95.47" y1="74.62" x2="93.16" y2="73.37" x3="93.16" y3="73.37"/>
<close/>
<move x="70.47" y="27.48"/>
<line x="49.56" y="19.28"/>
<line x="28.71" y="27.48"/>
<line x="28.71" y="22.07"/>
<line x="36.94" y="22.07"/>
<line x="36.94" y="15.11"/>
<line x="49.56" y="15.11"/>
<line x="62.23" y="15.11"/>
<line x="62.23" y="22.07"/>
<line x="70.46" y="22.07"/>
<line x="70.46" y="27.48"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Tank" h="50.74" w="100.54" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.5" y="0.065" perimeter="0" name="N"/>
<constraint x="0.5" y="1" perimeter="0" name="S"/>
<constraint x="0.01" y="0.6" perimeter="0" name="W"/>
<constraint x="0.99" y="0.5" perimeter="0" name="E"/>
<constraint x="0.01" y="0.12" perimeter="0" name="NW"/>
<constraint x="0.13" y="0.92" perimeter="0" name="SW"/>
<constraint x="0.85" y="0" perimeter="0" name="NE"/>
<constraint x="0.91" y="0.92" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="71.26" y="17.74"/>
<line x="49.64" y="17.74"/>
<line x="43" y="14.14"/>
<line x="43" y="3.97"/>
<line x="85.53" y="0"/>
<line x="85.53" y="13.27"/>
<line x="71.26" y="16.08"/>
<line x="71.26" y="17.74"/>
<line x="71.26" y="17.74"/>
<close/>
<move x="2.27" y="31.77"/>
<line x="99.73" y="31.94"/>
<line x="99.71" y="13.63"/>
<line x="71.76" y="19.83"/>
<line x="31.09" y="19.83"/>
<line x="2.27" y="27.61"/>
<curve x1="0.57" y1="28.31" x2="0" y2="31.77" x3="2.27" y3="31.77"/>
<close/>
<move x="30" y="40.03"/>
<curve x1="30" y1="43.53" x2="27.2" y2="46.37" x3="23.74" y3="46.38"/>
<curve x1="20.28" y1="46.39" x2="17.46" y2="43.56" x3="17.45" y3="40.07"/>
<curve x1="17.43" y1="36.57" x2="20.22" y2="33.72" x3="23.68" y3="33.69"/>
<curve x1="27.14" y1="33.66" x2="29.97" y2="36.47" x3="30.01" y3="39.97"/>
<close/>
<move x="44.13" y="40.03"/>
<curve x1="44.13" y1="43.53" x2="41.33" y2="46.37" x3="37.87" y3="46.38"/>
<curve x1="34.41" y1="46.39" x2="31.59" y2="43.56" x3="31.58" y3="40.07"/>
<curve x1="31.56" y1="36.57" x2="34.35" y2="33.72" x3="37.81" y3="33.69"/>
<curve x1="41.27" y1="33.66" x2="44.1" y2="36.47" x3="44.14" y3="39.97"/>
<close/>
<move x="58.01" y="40.03"/>
<curve x1="58.01" y1="43.53" x2="55.21" y2="46.37" x3="51.75" y3="46.38"/>
<curve x1="48.29" y1="46.39" x2="45.47" y2="43.56" x3="45.46" y3="40.07"/>
<curve x1="45.44" y1="36.57" x2="48.23" y2="33.72" x3="51.69" y3="33.69"/>
<curve x1="55.15" y1="33.66" x2="57.98" y2="36.47" x3="58.02" y3="39.97"/>
<close/>
<move x="72.23" y="40.03"/>
<curve x1="72.23" y1="43.53" x2="69.43" y2="46.37" x3="65.97" y3="46.38"/>
<curve x1="62.51" y1="46.39" x2="59.69" y2="43.56" x3="59.68" y3="40.07"/>
<curve x1="59.66" y1="36.57" x2="62.45" y2="33.72" x3="65.91" y3="33.69"/>
<curve x1="69.37" y1="33.66" x2="72.2" y2="36.47" x3="72.24" y3="39.97"/>
<close/>
<move x="7.93" y="33.77"/>
<line x="5.01" y="33.91"/>
<curve x1="3.38" y1="38.01" x2="4.74" y2="41.76" x3="9.22" y3="44.53"/>
<curve x1="14.27" y1="47.66" x2="20.34" y2="50.67" x3="22.1" y3="50.72"/>
<line x="81.82" y="50.74"/>
<curve x1="83.58" y1="50.69" x2="89.65" y2="47.68" x3="94.7" y3="44.55"/>
<curve x1="99.18" y1="41.77" x2="100.54" y2="38.01" x3="98.91" y3="33.92"/>
<line x="95.98" y="33.79"/>
<curve x1="96.86" y1="37.62" x2="97.62" y2="40.21" x3="92.13" y3="42.84"/>
<curve x1="87.64" y1="44.99" x2="82.89" y2="47.55" x3="82.15" y3="47.7"/>
<line x="21.76" y="47.69"/>
<curve x1="21.02" y1="47.54" x2="16.28" y2="44.97" x3="11.79" y3="42.82"/>
<curve x1="6.3" y1="40.19" x2="7.05" y2="37.61" x3="7.93" y3="33.77"/>
<close/>
<move x="0.8" y="5.92"/>
<line x="0.8" y="10.12"/>
<line x="41.58" y="11.52"/>
<line x="41.58" y="5.85"/>
<line x="0.8" y="5.92"/>
<close/>
<move x="86.33" y="40.36"/>
<curve x1="86.33" y1="43.86" x2="83.53" y2="46.7" x3="80.07" y3="46.71"/>
<curve x1="76.61" y1="46.72" x2="73.79" y2="43.9" x3="73.78" y3="40.4"/>
<curve x1="73.76" y1="36.9" x2="76.55" y2="34.05" x3="80.01" y3="34.02"/>
<curve x1="83.47" y1="33.99" x2="86.3" y2="36.8" x3="86.34" y3="40.3"/>
<close/>
<move x="95.04" y="37.41"/>
<curve x1="95.04" y1="39.41" x2="93.44" y2="41.02" x3="91.47" y3="41.03"/>
<curve x1="89.5" y1="41.04" x2="87.89" y2="39.43" x3="87.88" y3="37.43"/>
<curve x1="87.87" y1="35.44" x2="89.46" y2="33.81" x3="91.43" y3="33.8"/>
<curve x1="93.4" y1="33.78" x2="95.02" y2="35.39" x3="95.04" y3="37.38"/>
<close/>
<move x="15.97" y="37.41"/>
<curve x1="15.97" y1="39.41" x2="14.37" y2="41.02" x3="12.4" y3="41.03"/>
<curve x1="10.43" y1="41.04" x2="8.82" y2="39.43" x3="8.81" y3="37.43"/>
<curve x1="8.8" y1="35.44" x2="10.39" y2="33.81" x3="12.36" y3="33.8"/>
<curve x1="14.33" y1="33.78" x2="15.95" y2="35.39" x3="15.97" y3="37.38"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Taxi" h="94.23" w="98.5" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.5" y="0" perimeter="0" name="N"/>
<constraint x="0.5" y="0.8" perimeter="0" name="S"/>
<constraint x="0" y="0.5" perimeter="0" name="W"/>
<constraint x="1" y="0.5" perimeter="0" name="E"/>
<constraint x="0.22" y="0.11" perimeter="0" name="NW"/>
<constraint x="0.15" y="0.97" perimeter="0" name="SW"/>
<constraint x="0.78" y="0.11" perimeter="0" name="NE"/>
<constraint x="0.85" y="0.97" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="89.6" y="37.19"/>
<line x="81.5" y="16.16"/>
<curve x1="80" y1="12.19" x2="76.7" y2="8.78" x3="70.47" y3="8.8"/>
<line x="59.08" y="8.8"/>
<line x="59.08" y="3.3"/>
<curve x1="59.06" y1="1.11" x2="57.89" y2="0" x3="55.98" y3="0.02"/>
<line x="49.28" y="0.02"/>
<line x="42.7" y="0.02"/>
<curve x1="40.77" y1="0" x2="39.6" y2="1.11" x3="39.59" y3="3.3"/>
<line x="39.59" y="8.8"/>
<line x="28.02" y="8.8"/>
<curve x1="21.82" y1="8.78" x2="18.52" y2="12.19" x3="16.99" y3="16.16"/>
<line x="8.89" y="37.19"/>
<curve x1="5.7" y1="37.58" x2="0.02" y2="41.36" x3="0" y3="48.51"/>
<line x="0" y="75.22"/>
<line x="7.92" y="75.22"/>
<line x="7.92" y="83.76"/>
<curve x1="7.9" y1="94.23" x2="22.68" y2="94.11" x3="22.66" y3="83.76"/>
<line x="22.66" y="75.22"/>
<line x="49.28" y="75.22"/>
<line x="75.84" y="75.22"/>
<line x="75.84" y="83.76"/>
<curve x1="75.86" y1="94.11" x2="90.64" y2="94.23" x3="90.64" y3="83.76"/>
<line x="90.64" y="75.22"/>
<line x="98.5" y="75.22"/>
<line x="98.5" y="48.51"/>
<curve x1="98.5" y1="41.36" x2="92.82" y2="37.58" x3="89.6" y3="37.19"/>
<close/>
<move x="15.53" y="58.9"/>
<curve x1="11.75" y1="58.9" x2="8.69" y2="55.73" x3="8.71" y3="51.85"/>
<curve x1="8.69" y1="47.92" x2="11.75" y2="44.75" x3="15.53" y3="44.74"/>
<curve x1="19.29" y1="44.75" x2="22.35" y2="47.92" x3="22.35" y3="51.85"/>
<curve x1="22.35" y1="55.73" x2="19.29" y2="58.89" x3="15.53" y3="58.9"/>
<close/>
<move x="49.28" y="36.69"/>
<line x="49.22" y="36.69"/>
<line x="17.3" y="36.69"/>
<line x="23.39" y="20.42"/>
<curve x1="24.14" y1="18.11" x2="25.28" y2="16.44" x3="27.96" y3="16.4"/>
<line x="49.22" y="16.4"/>
<line x="49.28" y="16.4"/>
<line x="70.6" y="16.4"/>
<curve x1="73.25" y1="16.44" x2="74.39" y2="18.11" x3="75.17" y3="20.42"/>
<line x="81.26" y="36.69"/>
<line x="49.28" y="36.69"/>
<close/>
<move x="83.02" y="58.9"/>
<curve x1="79.23" y1="58.9" x2="76.17" y2="55.73" x3="76.2" y3="51.85"/>
<curve x1="76.18" y1="47.92" x2="79.23" y2="44.75" x3="83.02" y3="44.74"/>
<curve x1="86.77" y1="44.75" x2="89.83" y2="47.92" x3="89.85" y3="51.85"/>
<curve x1="89.83" y1="55.73" x2="86.77" y2="58.89" x3="83.02" y3="58.9"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Tow Away" h="31.51" w="98.67" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.55" y="0" perimeter="0" name="N"/>
<constraint x="0.61" y="0.81" perimeter="0" name="S"/>
<constraint x="0" y="0.5" perimeter="0" name="W"/>
<constraint x="1" y="0.5" perimeter="0" name="E"/>
<constraint x="0" y="0.1" perimeter="0" name="NW"/>
<constraint x="0.21" y="0.9" perimeter="0" name="SW"/>
<constraint x="0.805" y="1" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="79.49" y="17.81"/>
<curve x1="83.21" y1="17.81" x2="86.25" y2="20.89" x3="86.25" y3="24.66"/>
<curve x1="86.25" y1="28.43" x2="83.21" y2="31.51" x3="79.49" y3="31.51"/>
<curve x1="75.77" y1="31.51" x2="72.73" y2="28.43" x3="72.73" y3="24.66"/>
<curve x1="72.73" y1="20.89" x2="75.76" y2="17.81" x3="79.49" y3="17.81"/>
<close/>
<move x="20.62" y="14.73"/>
<curve x1="24.34" y1="14.73" x2="27.38" y2="17.81" x3="27.38" y3="21.58"/>
<curve x1="27.38" y1="25.35" x2="24.34" y2="28.43" x3="20.62" y3="28.43"/>
<curve x1="16.9" y1="28.43" x2="13.86" y2="25.35" x3="13.86" y3="21.58"/>
<curve x1="13.86" y1="17.8" x2="16.9" y2="14.73" x3="20.62" y3="14.73"/>
<close/>
<move x="20.62" y="12.44"/>
<curve x1="24.14" y1="12.44" x2="27.38" y2="14.51" x3="28.85" y3="17.73"/>
<line x="36.04" y="15.71"/>
<line x="55.76" y="2.36"/>
<line x="62.12" y="2.36"/>
<line x="68.39" y="12.44"/>
<line x="59.97" y="12.44"/>
<line x="59.97" y="25.51"/>
<line x="70.52" y="25.48"/>
<curve x1="70.16" y1="20.15" x2="74.04" y2="15.53" x3="79.48" y3="15.53"/>
<curve x1="85.26" y1="15.53" x2="88.49" y2="20.13" x3="88.46" y3="25.51"/>
<line x="98.67" y="25.48"/>
<line x="98.67" y="12.47"/>
<line x="86.99" y="12.46"/>
<line x="63.88" y="0"/>
<line x="54.62" y="0"/>
<line x="54.57" y="1.8"/>
<line x="35.91" y="14.25"/>
<line x="35.91" y="13.16"/>
<line x="32.53" y="14.34"/>
<line x="29.78" y="5.86"/>
<line x="20.3" y="8.03"/>
<line x="11.3" y="1.51"/>
<line x="0" y="3.26"/>
<line x="0" y="4.77"/>
<line x="10.78" y="3.29"/>
<line x="14.99" y="9.26"/>
<line x="0" y="11.89"/>
<line x="0" y="24.22"/>
<line x="11.65" y="22.37"/>
<curve x1="11.44" y1="17.05" x2="15.08" y2="12.44" x3="20.62" y3="12.44"/>
<close/>
<move x="81.47" y="12.44"/>
<line x="70.72" y="12.44"/>
<line x="64.54" y="3"/>
<line x="81.47" y="12.44"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Tractor 1" h="76.18" w="99.26" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.455" y="0.295" perimeter="0" name="N"/>
<constraint x="0.49" y="0.72" perimeter="0" name="S"/>
<constraint x="0.035" y="0.5" perimeter="0" name="W"/>
<constraint x="0.91" y="0.5" perimeter="0" name="E"/>
<constraint x="0.01" y="0.34" perimeter="0" name="NW"/>
<constraint x="0.13" y="0.985" perimeter="0" name="SW"/>
<constraint x="0.73" y="0" perimeter="0" name="NE"/>
<constraint x="0.79" y="1" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="66.95" y="5.19"/>
<curve x1="66.95" y1="2.32" x2="69.26" y2="0" x3="72.12" y3="0"/>
<curve x1="74.97" y1="0" x2="77.28" y2="2.32" x3="77.28" y3="5.2"/>
<curve x1="77.28" y1="8.08" x2="74.97" y2="10.4" x3="72.12" y3="10.4"/>
<curve x1="69.26" y1="10.4" x2="66.95" y2="8.07" x3="66.95" y3="5.19"/>
<close/>
<move x="74.04" y="11.9"/>
<curve x1="74.04" y1="11.9" x2="78.59" y2="11.46" x3="78.59" y3="16.49"/>
<curve x1="78.5" y1="16.49" x2="78.59" y2="30.15" x3="78.59" y3="30.15"/>
<curve x1="78.59" y1="30.15" x2="78.76" y2="32.44" x3="75.52" y3="32.97"/>
<curve x1="75.61" y1="32.89" x2="61.17" y2="36.14" x3="61.17" y3="36.14"/>
<curve x1="61.17" y1="36.14" x2="60.12" y2="36.23" x3="59.77" y3="37.29"/>
<curve x1="59.77" y1="37.37" x2="55.74" y2="52.19" x3="55.74" y3="52.19"/>
<curve x1="55.74" y1="52.19" x2="55.31" y2="54.58" x3="52.42" y3="53.86"/>
<curve x1="52.68" y1="53.86" x2="49.44" y2="53.69" x3="50.23" y3="50.16"/>
<curve x1="50.31" y1="50.25" x2="54.16" y2="33.93" x3="54.16" y3="33.93"/>
<curve x1="54.16" y1="33.93" x2="54.6" y2="30.85" x3="58.19" y3="30.14"/>
<curve x1="58.28" y1="30.14" x2="67.91" y2="28.2" x3="67.91" y3="28.2"/>
<curve x1="67.91" y1="28.2" x2="68.78" y2="27.94" x3="68.52" y3="27.23"/>
<curve x1="68.52" y1="27.14" x2="67.04" y2="23.09" x3="67.04" y3="23.09"/>
<curve x1="67.04" y1="23.09" x2="66.6" y2="22.38" x3="65.64" y3="22.91"/>
<curve x1="65.73" y1="22.91" x2="56.01" y2="27.67" x3="56.01" y3="27.67"/>
<curve x1="56.01" y1="27.67" x2="53.47" y2="28.82" x3="52.42" y3="26.44"/>
<curve x1="52.5" y1="26.44" x2="50.76" y2="23.8" x3="53.47" y3="22.12"/>
<curve x1="53.56" y1="22.03" x2="70.62" y2="12.6" x3="70.62" y3="12.6"/>
<curve x1="70.62" y1="12.6" x2="71.94" y2="11.81" x3="74.04" y3="11.9"/>
<close/>
<move x="12.95" y="48.84"/>
<curve x1="5.8" y1="48.84" x2="0" y2="54.69" x3="0" y3="61.89"/>
<curve x1="0" y1="69.09" x2="5.8" y2="74.94" x3="12.95" y3="74.94"/>
<curve x1="20.1" y1="74.94" x2="25.91" y2="69.1" x3="25.91" y3="61.89"/>
<curve x1="25.91" y1="54.68" x2="20.11" y2="48.84" x3="12.95" y3="48.84"/>
<close/>
<move x="12.95" y="67.19"/>
<curve x1="10.05" y1="67.19" x2="7.7" y2="64.82" x3="7.7" y3="61.9"/>
<curve x1="7.7" y1="58.97" x2="10.05" y2="56.61" x3="12.95" y3="56.61"/>
<curve x1="15.85" y1="56.61" x2="18.2" y2="58.97" x3="18.2" y3="61.9"/>
<curve x1="18.21" y1="64.82" x2="15.86" y2="67.19" x3="12.95" y3="67.19"/>
<close/>
<move x="78.6" y="34.56"/>
<curve x1="67.19" y1="34.56" x2="57.94" y2="43.88" x3="57.94" y3="55.37"/>
<curve x1="57.94" y1="66.87" x2="67.19" y2="76.18" x3="78.6" y3="76.18"/>
<curve x1="90" y1="76.18" x2="99.26" y2="66.87" x3="99.26" y3="55.37"/>
<curve x1="99.25" y1="43.88" x2="90" y2="34.56" x3="78.6" y3="34.56"/>
<close/>
<move x="78.6" y="63.39"/>
<curve x1="74.2" y1="63.39" x2="70.63" y2="59.8" x3="70.63" y3="55.37"/>
<curve x1="70.63" y1="50.94" x2="74.2" y2="47.35" x3="78.6" y3="47.35"/>
<curve x1="83" y1="47.35" x2="86.56" y2="50.94" x3="86.56" y3="55.37"/>
<curve x1="86.56" y1="59.8" x2="82.99" y2="63.39" x3="78.6" y3="63.39"/>
<close/>
<move x="52.36" y="29.05"/>
<line x="46.07" y="22.72"/>
<curve x1="45.64" y1="22.29" x2="44.88" y2="22.29" x3="44.45" y3="22.72"/>
<line x="43.22" y="23.96"/>
<curve x1="43" y1="24.18" x2="42.89" y2="24.47" x3="42.89" y3="24.78"/>
<curve x1="42.89" y1="25.09" x2="43.01" y2="25.38" x3="43.22" y3="25.6"/>
<line x="44.53" y="26.92"/>
<curve x1="44.91" y1="27.3" x2="44.91" y2="27.91" x3="44.53" y3="28.29"/>
<line x="43.54" y="29.29"/>
<curve x1="43.19" y1="29.64" x2="42.81" y2="29.54" x3="42.68" y3="29.05"/>
<line x="42.06" y="26.67"/>
<curve x1="41.9" y1="26.07" x2="41.27" y2="25.57" x3="40.65" y3="25.57"/>
<line x="1.44" y="25.57"/>
<curve x1="1.13" y1="25.57" x2="0.87" y2="25.69" x3="0.7" y3="25.91"/>
<curve x1="0.53" y1="26.13" x2="0.48" y2="26.41" x3="0.56" y3="26.72"/>
<line x="5.88" y="47.23"/>
<curve x1="6.04" y1="47.83" x2="6.67" y2="48.33" x3="7.29" y3="48.33"/>
<line x="46.5" y="48.33"/>
<curve x1="46.81" y1="48.33" x2="47.07" y2="48.21" x3="47.24" y3="47.99"/>
<curve x1="47.41" y1="47.77" x2="47.46" y2="47.49" x3="47.38" y3="47.18"/>
<line x="44.11" y="34.57"/>
<curve x1="43.97" y1="34.04" x2="44.18" y2="33.27" x3="44.56" y3="32.88"/>
<line x="46.82" y="30.6"/>
<curve x1="47.18" y1="30.24" x2="47.82" y2="30.24" x3="48.18" y3="30.6"/>
<line x="49.49" y="31.92"/>
<curve x1="49.92" y1="32.35" x2="50.68" y2="32.35" x3="51.11" y3="31.92"/>
<line x="52.34" y="30.68"/>
<curve x1="52.56" y1="30.46" x2="52.67" y2="30.17" x3="52.67" y3="29.86"/>
<curve x1="52.67" y1="29.55" x2="52.58" y2="29.27" x3="52.36" y3="29.05"/>
<close/>
<move x="49.17" y="53.98"/>
<line x="48.24" y="50.38"/>
<curve x1="48.08" y1="49.78" x2="47.45" y2="49.28" x3="46.83" y3="49.28"/>
<line x="22.25" y="49.28"/>
<curve x1="21.93" y1="49.28" x2="21.71" y2="49.38" x3="21.63" y3="49.56"/>
<curve x1="21.55" y1="49.75" x2="21.62" y2="49.98" x3="21.84" y3="50.21"/>
<line x="25.55" y="54.3"/>
<curve x1="25.96" y1="54.75" x2="26.78" y2="55.11" x3="27.38" y3="55.11"/>
<line x="48.29" y="55.11"/>
<curve x1="48.6" y1="55.11" x2="48.86" y2="54.99" x3="49.03" y3="54.77"/>
<curve x1="49.2" y1="54.57" x2="49.25" y2="54.28" x3="49.17" y3="53.98"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Tractor 2" h="75.8" w="99.11" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.64" y="0" perimeter="0" name="N"/>
<constraint x="0.5" y="0.73" perimeter="0" name="S"/>
<constraint x="0" y="0.5" perimeter="0" name="W"/>
<constraint x="0.94" y="0.5" perimeter="0" name="E"/>
<constraint x="0.225" y="0" perimeter="0" name="NW"/>
<constraint x="0.12" y="1" perimeter="0" name="SW"/>
<constraint x="0.78" y="1" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="76.88" y="30.94"/>
<curve x1="64.6" y1="30.94" x2="54.65" y2="40.98" x3="54.65" y3="53.37"/>
<curve x1="54.65" y1="65.76" x2="64.6" y2="75.8" x3="76.88" y3="75.8"/>
<curve x1="89.16" y1="75.8" x2="99.11" y2="65.76" x3="99.11" y3="53.37"/>
<curve x1="99.11" y1="40.98" x2="89.16" y2="30.94" x3="76.88" y3="30.94"/>
<close/>
<move x="76.88" y="65.16"/>
<curve x1="70.43" y1="65.16" x2="65.2" y2="59.88" x3="65.2" y3="53.38"/>
<curve x1="65.2" y1="46.88" x2="70.43" y2="41.6" x3="76.88" y3="41.6"/>
<curve x1="83.33" y1="41.6" x2="88.56" y2="46.88" x3="88.56" y3="53.38"/>
<curve x1="88.56" y1="59.88" x2="83.33" y2="65.16" x3="76.88" y3="65.16"/>
<close/>
<move x="12.43" y="50.68"/>
<curve x1="5.56" y1="50.68" x2="0" y2="56.29" x3="0" y3="63.22"/>
<curve x1="0" y1="70.15" x2="5.57" y2="75.76" x3="12.43" y3="75.76"/>
<curve x1="19.3" y1="75.76" x2="24.86" y2="70.14" x3="24.86" y3="63.22"/>
<curve x1="24.86" y1="56.3" x2="19.3" y2="50.68" x3="12.43" y3="50.68"/>
<close/>
<move x="12.42" y="69.58"/>
<curve x1="8.95" y1="69.58" x2="6.13" y2="66.74" x3="6.13" y3="63.23"/>
<curve x1="6.13" y1="59.72" x2="8.95" y2="56.88" x3="12.42" y3="56.88"/>
<curve x1="15.9" y1="56.88" x2="18.71" y2="59.72" x3="18.71" y3="63.23"/>
<curve x1="18.71" y1="66.74" x2="15.9" y2="69.58" x3="12.42" y3="69.58"/>
<close/>
<move x="76.88" y="24.64"/>
<curve x1="75.08" y1="24.64" x2="73.32" y2="24.81" x3="71.61" y3="25.14"/>
<curve x1="71.03" y1="15.36" x2="68.17" y2="13.17" x3="67.33" y3="10.16"/>
<curve x1="67.04" y1="9.11" x2="67.92" y2="7.04" x3="67.92" y3="5.1"/>
<curve x1="67.92" y1="4.72" x2="67.82" y2="0" x3="63.81" y3="0"/>
<curve x1="59.97" y1="0" x2="59.02" y2="2.93" x3="59.02" y3="2.93"/>
<line x="59.02" y="9.28"/>
<curve x1="59.02" y1="9.83" x2="59.5" y2="10.28" x3="60.08" y3="10.28"/>
<line x="61.47" y="10.28"/>
<line x="57.19" y="18.95"/>
<line x="50.61" y="24.18"/>
<line x="48.74" y="21.98"/>
<line x="24.85" y="27.57"/>
<line x="24.85" y="0"/>
<line x="22.18" y="0"/>
<line x="22.18" y="28.19"/>
<line x="21.96" y="28.24"/>
<line x="0.07" y="29.37"/>
<line x="0.07" y="44.4"/>
<line x="3.02" y="51.78"/>
<curve x1="5.57" y1="49.64" x2="8.85" y2="48.35" x3="12.42" y3="48.35"/>
<curve x1="17.56" y1="48.35" x2="22.09" y2="51.02" x3="24.73" y3="55.06"/>
<line x="52.4" y="55.06"/>
<curve x1="52.36" y1="54.5" x2="52.34" y2="53.94" x3="52.34" y3="53.37"/>
<curve x1="52.34" y1="39.72" x2="63.35" y2="28.62" x3="76.87" y3="28.62"/>
<curve x1="82.01" y1="28.62" x2="86.78" y2="30.22" x3="90.73" y3="32.96"/>
<line x="92.98" y="29.69"/>
<curve x1="88.41" y1="26.51" x2="82.86" y2="24.64" x3="76.88" y3="24.64"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Train 1" h="98.71" w="51.45" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.5" y="0" perimeter="0" name="N"/>
<constraint x="0.5" y="0.96" perimeter="0" name="S"/>
<constraint x="0" y="0.5" perimeter="0" name="W"/>
<constraint x="1" y="0.5" perimeter="0" name="E"/>
<constraint x="0.06" y="0.11" perimeter="0" name="NW"/>
<constraint x="0.165" y="1" perimeter="0" name="SW"/>
<constraint x="0.94" y="0.11" perimeter="0" name="NE"/>
<constraint x="0.835" y="1" perimeter="0" name="SE"/>
</connections>
<foreground>
<path>
<move x="41.44" y="8"/>
<line x="25.72" y="8"/>
<line x="10.01" y="8"/>
<curve x1="4.48" y1="8" x2="0" y2="12.43" x3="0" y3="17.88"/>
<line x="0" y="63.44"/>
<curve x1="0" y1="68.38" x2="3.68" y2="72.48" x3="8.48" y3="73.21"/>
<line x="8.48" y="73.32"/>
<line x="8.48" y="78.67"/>
<line x="8.48" y="82.79"/>
<line x="3.78" y="82.79"/>
<line x="3.78" y="86.63"/>
<line x="8.48" y="86.63"/>
<line x="8.48" y="90.75"/>
<line x="3.78" y="90.75"/>
<line x="3.78" y="94.59"/>
<line x="8.48" y="94.59"/>
<line x="8.48" y="98.71"/>
<line x="13.9" y="98.71"/>
<line x="13.9" y="94.59"/>
<line x="25.72" y="94.59"/>
<line x="37.54" y="94.59"/>
<line x="37.54" y="98.71"/>
<line x="42.96" y="98.71"/>
<line x="42.96" y="94.59"/>
<line x="47.66" y="94.59"/>
<line x="47.66" y="90.75"/>
<line x="42.96" y="90.75"/>
<line x="42.96" y="86.63"/>
<line x="47.66" y="86.63"/>
<line x="47.66" y="82.79"/>
<line x="42.96" y="82.79"/>
<line x="42.96" y="78.67"/>
<line x="42.96" y="73.32"/>
<line x="42.96" y="73.21"/>
<curve x1="47.76" y1="72.48" x2="51.44" y2="68.39" x3="51.44" y3="63.44"/>
<line x="51.44" y="17.88"/>
<curve x1="51.45" y1="12.43" x2="46.97" y2="8" x3="41.44" y3="8"/>
<close/>
<move x="11.5" y="67.28"/>
<curve x1="8.47" y1="67.28" x2="6.01" y2="64.85" x3="6.01" y3="61.86"/>
<curve x1="6.01" y1="58.87" x2="8.47" y2="56.44" x3="11.5" y3="56.44"/>
<curve x1="14.53" y1="56.44" x2="16.99" y2="58.87" x3="16.99" y3="61.86"/>
<curve x1="16.99" y1="64.85" x2="14.53" y2="67.28" x3="11.5" y3="67.28"/>
<close/>
<move x="37.55" y="90.75"/>
<line x="25.72" y="90.75"/>
<line x="13.9" y="90.75"/>
<line x="13.9" y="86.63"/>
<line x="25.72" y="86.63"/>
<line x="37.54" y="86.63"/>
<line x="37.54" y="90.75"/>
<close/>
<move x="37.55" y="82.79"/>
<line x="25.72" y="82.79"/>
<line x="13.9" y="82.79"/>
<line x="13.9" y="78.67"/>
<line x="25.72" y="78.67"/>
<line x="37.54" y="78.67"/>
<line x="37.54" y="82.79"/>
<close/>
<move x="39.95" y="67.28"/>
<curve x1="36.92" y1="67.28" x2="34.46" y2="64.85" x3="34.46" y3="61.86"/>
<curve x1="34.46" y1="58.87" x2="36.92" y2="56.44" x3="39.95" y3="56.44"/>
<curve x1="42.98" y1="56.44" x2="45.44" y2="58.87" x3="45.44" y3="61.86"/>
<curve x1="45.44" y1="64.85" x2="42.99" y2="67.28" x3="39.95" y3="67.28"/>
<close/>
</path>
<fillstroke/>
<ellipse x="17.8" y="0" w="6.68" h="6.68"/>
<fillstroke/>
<ellipse x="26.97" y="0" w="6.68" h="6.68"/>
<fillstroke/>
</foreground>
</shape>
<shape name="Train 2" h="99.15" w="66.46" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.5" y="0" perimeter="0" name="N"/>
<constraint x="0.5" y="0.845" perimeter="0" name="S"/>
<constraint x="0.07" y="0.5" perimeter="0" name="W"/>
<constraint x="0.93" y="0.5" perimeter="0" name="E"/>
<constraint x="0.14" y="0.11" perimeter="0" name="NW"/>
<constraint x="0" y="1" perimeter="0" name="SW"/>
<constraint x="0.86" y="0.11" perimeter="0" name="NE"/>
<constraint x="1" y="1" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="28.55" y="6.99"/>
<curve x1="26.62" y1="6.98" x2="25.04" y2="5.42" x3="25.04" y3="3.51"/>
<curve x1="25.04" y1="1.57" x2="26.62" y2="0" x3="28.55" y3="0.02"/>
<curve x1="30.5" y1="0" x2="32.08" y2="1.56" x3="32.06" y3="3.5"/>
<curve x1="32.08" y1="5.42" x2="30.5" y2="6.98" x3="28.55" y3="6.99"/>
<line x="28.55" y="6.99"/>
<close/>
<move x="37.91" y="6.99"/>
<curve x1="39.85" y1="6.98" x2="41.42" y2="5.42" x3="41.42" y3="3.51"/>
<curve x1="41.42" y1="1.57" x2="39.84" y2="0.01" x3="37.91" y3="0.03"/>
<curve x1="35.96" y1="0.01" x2="34.38" y2="1.57" x3="34.4" y3="3.51"/>
<curve x1="34.39" y1="5.42" x2="35.96" y2="6.98" x3="37.91" y3="6.99"/>
<line x="37.91" y="6.99"/>
<close/>
<move x="51.86" y="77.41"/>
<curve x1="56.73" y1="76.61" x2="61.59" y2="71.56" x3="61.58" y3="65.41"/>
<line x="61.58" y="20.46"/>
<curve x1="61.59" y1="14.12" x2="56.2" y2="8.29" x3="48.9" y3="8.3"/>
<line x="33.28" y="8.3"/>
<line x="17.61" y="8.3"/>
<curve x1="10.27" y1="8.29" x2="4.88" y2="14.12" x3="4.89" y3="20.46"/>
<line x="4.89" y="65.41"/>
<curve x1="4.88" y1="71.57" x2="9.74" y2="76.61" x3="14.61" y3="77.41"/>
<line x="0" y="99.15"/>
<line x="8.45" y="99.15"/>
<line x="18.88" y="83.91"/>
<line x="33.23" y="83.91"/>
<line x="47.58" y="83.91"/>
<line x="58.06" y="99.15"/>
<line x="66.46" y="99.15"/>
<line x="51.86" y="77.41"/>
<close/>
<move x="24.99" y="12.94"/>
<curve x1="24.99" y1="11.81" x2="25.96" y2="10.89" x3="27.07" y3="10.87"/>
<line x="33.23" y="10.87"/>
<line x="39.39" y="10.87"/>
<curve x1="40.51" y1="10.89" x2="41.48" y2="11.81" x3="41.48" y3="12.94"/>
<line x="41.48" y="16.47"/>
<curve x1="41.48" y1="17.59" x2="40.56" y2="18.54" x3="39.39" y3="18.54"/>
<line x="33.23" y="18.54"/>
<line x="27.07" y="18.54"/>
<curve x1="25.9" y1="18.54" x2="24.99" y2="17.59" x3="24.99" y3="16.47"/>
<line x="24.99" y="12.94"/>
<close/>
<move x="17.3" y="70.85"/>
<curve x1="14.24" y1="70.83" x2="11.75" y2="68.36" x3="11.75" y3="65.3"/>
<curve x1="11.74" y1="62.26" x2="14.24" y2="59.79" x3="17.3" y3="59.8"/>
<curve x1="20.39" y1="59.78" x2="22.88" y2="62.25" x3="22.9" y3="65.3"/>
<curve x1="22.89" y1="68.36" x2="20.39" y2="70.83" x3="17.3" y3="70.85"/>
<close/>
<move x="18.01" y="41.64"/>
<curve x1="14.5" y1="41.62" x2="11.64" y2="39.24" x3="11.65" y3="35.33"/>
<line x="11.65" y="27.26"/>
<curve x1="11.67" y1="23.89" x2="13.87" y2="20.96" x3="18.01" y3="20.95"/>
<line x="33.23" y="20.95"/>
<line x="48.45" y="20.95"/>
<curve x1="52.6" y1="20.96" x2="54.79" y2="23.89" x3="54.81" y3="27.26"/>
<line x="54.81" y="35.33"/>
<curve x1="54.82" y1="39.24" x2="51.96" y2="41.62" x3="48.45" y3="41.64"/>
<line x="33.23" y="41.64"/>
<line x="18.01" y="41.64"/>
<close/>
<move x="43.46" y="65.3"/>
<curve x1="43.45" y1="62.26" x2="45.94" y2="59.79" x3="49" y3="59.8"/>
<curve x1="52.09" y1="59.78" x2="54.58" y2="62.25" x3="54.6" y3="65.3"/>
<curve x1="54.58" y1="68.35" x2="52.09" y2="70.83" x3="49" y3="70.85"/>
<curve x1="45.94" y1="70.83" x2="43.45" y2="68.36" x3="43.46" y3="65.3"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Train 3" h="62.19" w="99.13" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.56" y="0.1" perimeter="0" name="N"/>
<constraint x="0.56" y="1" perimeter="0" name="S"/>
<constraint x="0.015" y="0.5" perimeter="0" name="W"/>
<constraint x="0.955" y="0.5" perimeter="0" name="E"/>
<constraint x="0.06" y="0" perimeter="0" name="NW"/>
<constraint x="0" y="1" perimeter="0" name="SW"/>
<constraint x="0.86" y="0.07" perimeter="0" name="NE"/>
<constraint x="1" y="1" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="87.28" y="58.04"/>
<curve x1="89.62" y1="56.46" x2="91.16" y2="53.77" x3="91.16" y3="50.71"/>
<curve x1="91.16" y1="48.81" x2="90.56" y2="47.05" x3="89.54" y3="45.61"/>
<line x="94.57" y="45.61"/>
<line x="94.57" y="16.59"/>
<line x="85.07" y="16.59"/>
<line x="85.07" y="4.15"/>
<line x="76.83" y="4.15"/>
<line x="76.83" y="16.59"/>
<line x="61.57" y="16.59"/>
<line x="61.57" y="10.17"/>
<curve x1="61.57" y1="9.72" x2="59.22" y2="6.33" x3="55.39" y3="6.32"/>
<curve x1="51.56" y1="6.32" x2="49.21" y2="9.72" x3="49.21" y3="10.17"/>
<line x="49.21" y="16.59"/>
<line x="26.53" y="16.59"/>
<line x="26.53" y="6.23"/>
<line x="26.53" y="0"/>
<line x="5.9" y="0"/>
<line x="5.9" y="6.23"/>
<line x="20.34" y="6.23"/>
<line x="20.34" y="28.45"/>
<line x="7.95" y="28.45"/>
<line x="7.95" y="20.73"/>
<line x="1.82" y="20.73"/>
<line x="1.82" y="28.45"/>
<line x="1.82" y="45.61"/>
<line x="13.48" y="45.61"/>
<curve x1="12.46" y1="47.05" x2="11.86" y2="48.81" x3="11.86" y3="50.71"/>
<curve x1="11.86" y1="53.77" x2="13.4" y2="56.46" x3="15.74" y3="58.04"/>
<line x="0" y="58.04"/>
<line x="0" y="62.19"/>
<line x="99.13" y="62.19"/>
<line x="99.13" y="58.04"/>
<line x="87.28" y="58.04"/>
<close/>
<move x="58.63" y="45.62"/>
<line x="75.32" y="45.62"/>
<curve x1="74.3" y1="47.06" x2="73.7" y2="48.82" x3="73.7" y3="50.72"/>
<curve x1="73.7" y1="53.78" x2="75.24" y2="56.47" x3="77.59" y3="58.05"/>
<line x="56.36" y="58.05"/>
<curve x1="58.7" y1="56.47" x2="60.25" y2="53.78" x3="60.25" y3="50.72"/>
<curve x1="60.25" y1="48.81" x2="59.64" y2="47.06" x3="58.63" y3="45.62"/>
<close/>
<move x="29.33" y="50.72"/>
<curve x1="29.33" y1="48.82" x2="28.73" y2="47.06" x3="27.71" y3="45.62"/>
<line x="44.4" y="45.62"/>
<curve x1="43.38" y1="47.06" x2="42.78" y2="48.82" x3="42.78" y3="50.72"/>
<curve x1="42.78" y1="53.78" x2="44.32" y2="56.47" x3="46.66" y3="58.05"/>
<line x="25.45" y="58.05"/>
<curve x1="27.79" y1="56.46" x2="29.33" y2="53.77" x3="29.33" y3="50.72"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Train Station" h="99.13" w="98.76" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.5" y="0" perimeter="0" name="N"/>
<constraint x="0.5" y="1" perimeter="0" name="S"/>
<constraint x="0.045" y="0.545" perimeter="0" name="W"/>
<constraint x="0.98" y="0.585" perimeter="0" name="E"/>
<constraint x="0.01" y="0" perimeter="0" name="NW"/>
<constraint x="0" y="1" perimeter="0" name="SW"/>
<constraint x="1" y="0" perimeter="0" name="NE"/>
<constraint x="1" y="1" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="2.08" y="0"/>
<curve x1="2.08" y1="0" x2="2.08" y2="0" x3="2.08" y3="0"/>
<curve x1="2.08" y1="0" x2="2.08" y2="0" x3="2.08" y3="0"/>
<line x="2.06" y="0"/>
<line x="2.06" y="0"/>
<curve x1="1.12" y1="0.01" x2="0.36" y2="0.79" x3="0.36" y3="1.74"/>
<curve x1="0.36" y1="2.69" x2="1.12" y2="3.47" x3="2.06" y3="3.48"/>
<line x="2.06" y="3.48"/>
<line x="98.76" y="12.42"/>
<line x="98.76" y="0"/>
<line x="2.08" y="0"/>
<close/>
<move x="11.74" y="10.31"/>
<curve x1="5.45" y1="10.31" x2="0.36" y2="15.46" x3="0.36" y3="21.81"/>
<curve x1="0.36" y1="28.16" x2="5.46" y2="33.31" x3="11.74" y3="33.31"/>
<curve x1="18.03" y1="33.31" x2="23.12" y2="28.16" x3="23.12" y3="21.81"/>
<curve x1="23.12" y1="15.46" x2="18.02" y2="10.31" x3="11.74" y3="10.31"/>
<close/>
<move x="11.74" y="30.85"/>
<curve x1="6.79" y1="30.85" x2="2.79" y2="26.8" x3="2.79" y3="21.8"/>
<curve x1="2.79" y1="16.8" x2="6.8" y2="12.75" x3="11.74" y3="12.75"/>
<curve x1="16.69" y1="12.75" x2="20.69" y2="16.8" x3="20.69" y3="21.8"/>
<curve x1="20.69" y1="26.8" x2="16.68" y2="30.85" x3="11.74" y3="30.85"/>
<close/>
<move x="11.77" y="95.01"/>
<line x="0" y="95.01"/>
<line x="0" y="99.13"/>
<line x="98.48" y="99.13"/>
<line x="98.48" y="95.01"/>
<line x="82.84" y="95.01"/>
<curve x1="85.17" y1="93.44" x2="86.7" y2="90.76" x3="86.7" y3="87.72"/>
<curve x1="86.7" y1="85.83" x2="86.1" y2="84.08" x3="85.09" y3="82.65"/>
<line x="96.68" y="82.65"/>
<line x="96.68" y="65.58"/>
<line x="96.68" y="57.9"/>
<line x="90.59" y="57.9"/>
<line x="90.59" y="65.58"/>
<line x="78.28" y="65.58"/>
<line x="78.28" y="43.47"/>
<line x="92.63" y="43.47"/>
<line x="92.63" y="37.28"/>
<line x="72.13" y="37.28"/>
<line x="72.13" y="43.47"/>
<line x="72.13" y="53.78"/>
<line x="49.6" y="53.78"/>
<line x="49.6" y="47.4"/>
<curve x1="49.6" y1="46.95" x2="47.27" y2="43.58" x3="43.46" y3="43.57"/>
<curve x1="39.65" y1="43.57" x2="37.32" y2="46.95" x3="37.32" y3="47.4"/>
<line x="37.32" y="53.78"/>
<line x="22.16" y="53.78"/>
<line x="22.16" y="41.41"/>
<line x="13.97" y="41.41"/>
<line x="13.97" y="53.78"/>
<line x="4.53" y="53.78"/>
<line x="4.53" y="82.65"/>
<line x="9.53" y="82.65"/>
<curve x1="8.52" y1="84.08" x2="7.92" y2="85.83" x3="7.92" y3="87.72"/>
<curve x1="7.91" y1="90.76" x2="9.45" y2="93.44" x3="11.77" y3="95.01"/>
<line x="11.77" y="95.01"/>
<close/>
<move x="38.63" y="87.73"/>
<curve x1="38.63" y1="90.77" x2="40.16" y2="93.44" x3="42.49" y3="95.02"/>
<line x="21.41" y="95.02"/>
<curve x1="23.74" y1="93.45" x2="25.27" y2="90.77" x3="25.27" y3="87.73"/>
<curve x1="25.27" y1="85.84" x2="24.67" y2="84.09" x3="23.66" y3="82.66"/>
<line x="40.24" y="82.66"/>
<curve x1="39.23" y1="84.08" x2="38.63" y2="85.83" x3="38.63" y3="87.73"/>
<close/>
<move x="73.2" y="95.01"/>
<line x="52.12" y="95.01"/>
<curve x1="54.45" y1="93.44" x2="55.98" y2="90.76" x3="55.98" y3="87.72"/>
<curve x1="55.98" y1="85.83" x2="55.38" y2="84.08" x3="54.37" y3="82.65"/>
<line x="70.95" y="82.65"/>
<curve x1="69.94" y1="84.08" x2="69.34" y2="85.83" x3="69.34" y3="87.72"/>
<curve x1="69.34" y1="90.76" x2="70.88" y2="93.44" x3="73.2" y3="95.01"/>
<close/>
<move x="14.46" y="18.62"/>
<curve x1="13.89" y1="19.19" x2="13.32" y2="19.76" x3="12.75" y3="20.33"/>
<curve x1="12.75" y1="19.02" x2="12.75" y2="17.7" x3="12.75" y3="16.38"/>
<curve x1="12.75" y1="15.06" x2="10.72" y2="15.06" x3="10.72" y3="16.38"/>
<curve x1="10.72" y1="18.49" x2="10.72" y2="20.61" x3="10.72" y3="22.72"/>
<curve x1="10.72" y1="22.77" x2="10.72" y2="22.82" x3="10.73" y3="22.87"/>
<curve x1="10.77" y1="23.31" x2="11.04" y2="23.6" x3="11.38" y3="23.71"/>
<curve x1="11.7" y1="23.85" x2="12.08" y2="23.83" x3="12.41" y3="23.54"/>
<curve x1="12.42" y1="23.53" x2="12.43" y2="23.52" x3="12.44" y3="23.51"/>
<curve x1="12.44" y1="23.51" x2="12.45" y2="23.51" x3="12.45" y3="23.5"/>
<curve x1="13.6" y1="22.35" x2="14.74" y2="21.21" x3="15.89" y3="20.07"/>
<curve x1="16.83" y1="19.13" x2="15.39" y2="17.69" x3="14.46" y3="18.62"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Tram 1" h="51.46" w="98.78" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.5" y="0" perimeter="0" name="N"/>
<constraint x="0.5" y="0.84" perimeter="0" name="S"/>
<constraint x="0.035" y="0.5" perimeter="0" name="W"/>
<constraint x="0.965" y="0.5" perimeter="0" name="E"/>
<constraint x="0.315" y="0" perimeter="0" name="NW"/>
<constraint x="0.14" y="0.965" perimeter="0" name="SW"/>
<constraint x="0.685" y="0" perimeter="0" name="NE"/>
<constraint x="0.86" y="0.965" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="9.08" y="44.9"/>
<curve x1="9.12" y1="51.46" x2="18.4" y2="51.46" x3="18.4" y3="44.96"/>
<close/>
<move x="28.31" y="44.9"/>
<curve x1="28.35" y1="51.46" x2="37.63" y2="51.46" x3="37.63" y3="44.96"/>
<close/>
<move x="19.41" y="47.89"/>
<line x="27.22" y="47.89"/>
<curve x1="26.82" y1="47.19" x2="26.64" y2="46.45" x3="26.67" y3="44.94"/>
<line x="20.1" y="44.94"/>
<curve x1="20.05" y1="46.48" x2="19.81" y2="47.19" x3="19.41" y3="47.89"/>
<close/>
<move x="80.53" y="44.96"/>
<curve x1="80.53" y1="51.46" x2="89.81" y2="51.46" x3="89.85" y3="44.9"/>
<close/>
<move x="61.29" y="44.96"/>
<curve x1="61.29" y1="51.46" x2="70.57" y2="51.46" x3="70.61" y3="44.9"/>
<close/>
<move x="92.53" y="20.05"/>
<line x="94.34" y="20.05"/>
<line x="94.34" y="17.06"/>
<line x="77.76" y="17.06"/>
<line x="76.94" y="16.06"/>
<line x="69.24" y="16.06"/>
<line x="80.44" y="8.6"/>
<line x="67.54" y="0"/>
<line x="54.92" y="8.59"/>
<line x="65.87" y="16.06"/>
<line x="58.45" y="16.06"/>
<line x="57.51" y="17.06"/>
<line x="49.39" y="17.06"/>
<line x="41.27" y="17.06"/>
<line x="40.33" y="16.06"/>
<line x="32.91" y="16.06"/>
<line x="43.86" y="8.59"/>
<line x="31.24" y="0"/>
<line x="18.33" y="8.6"/>
<line x="29.53" y="16.06"/>
<line x="21.83" y="16.06"/>
<line x="21.01" y="17.06"/>
<line x="4.44" y="17.06"/>
<line x="4.44" y="20.05"/>
<line x="6.25" y="20.05"/>
<line x="0" y="32.63"/>
<line x="0" y="40.36"/>
<curve x1="0" y1="41.76" x2="1.63" y2="43.21" x3="2.87" y3="43.21"/>
<line x="49.39" y="43.21"/>
<line x="95.91" y="43.21"/>
<curve x1="97.15" y1="43.21" x2="98.78" y2="41.76" x3="98.78" y3="40.36"/>
<line x="98.78" y="32.63"/>
<line x="92.53" y="20.05"/>
<close/>
<move x="11.92" y="32.89"/>
<line x="6.53" y="32.89"/>
<curve x1="5.29" y1="32.89" x2="3.19" y2="31.38" x3="3.94" y3="28.54"/>
<line x="8.07" y="20.04"/>
<line x="11.93" y="20.04"/>
<line x="11.92" y="32.89"/>
<close/>
<move x="21.05" y="39.62"/>
<curve x1="20.88" y1="40.58" x2="20.22" y2="40.75" x3="19.69" y3="41.27"/>
<line x="15.2" y="41.27"/>
<curve x1="14.67" y1="40.74" x2="14" y2="40.57" x3="13.83" y3="39.61"/>
<line x="13.83" y="21.33"/>
<curve x1="13.83" y1="20.92" x2="14.4" y2="20.51" x3="15.06" y3="20.05"/>
<line x="19.82" y="20.05"/>
<curve x1="20.49" y1="20.52" x2="21.07" y2="20.93" x3="21.07" y3="21.35"/>
<line x="21.05" y="39.62"/>
<close/>
<move x="20.28" y="8.6"/>
<line x="31.23" y="1.29"/>
<line x="41.95" y="8.59"/>
<line x="31.24" y="15.9"/>
<line x="20.28" y="8.6"/>
<close/>
<move x="39.25" y="31.26"/>
<curve x1="39.09" y1="32.2" x2="38.44" y2="32.39" x3="37.92" y3="32.89"/>
<line x="24.48" y="32.89"/>
<curve x1="23.95" y1="32.37" x2="23.26" y2="32.24" x3="23.09" y3="31.28"/>
<line x="23" y="31.28"/>
<line x="23.02" y="21.32"/>
<curve x1="23.02" y1="20.95" x2="23.62" y2="20.53" x3="24.28" y3="20.06"/>
<line x="38.05" y="20.06"/>
<curve x1="38.7" y1="20.52" x2="39.26" y2="20.92" x3="39.26" y3="21.33"/>
<line x="39.25" y="31.26"/>
<close/>
<move x="57.56" y="31.28"/>
<curve x1="57.41" y1="32.23" x2="56.74" y2="32.38" x3="56.22" y3="32.88"/>
<line x="49.39" y="32.88"/>
<line x="42.56" y="32.88"/>
<curve x1="42.03" y1="32.38" x2="41.37" y2="32.23" x3="41.22" y3="31.28"/>
<line x="41.22" y="21.27"/>
<curve x1="41.22" y1="20.91" x2="41.79" y2="20.49" x3="42.43" y3="20.04"/>
<line x="49.39" y="20.04"/>
<line x="56.35" y="20.04"/>
<curve x1="56.99" y1="20.5" x2="57.56" y2="20.91" x3="57.56" y3="21.27"/>
<line x="57.56" y="31.28"/>
<close/>
<move x="56.83" y="8.59"/>
<line x="67.55" y="1.29"/>
<line x="78.5" y="8.6"/>
<line x="67.54" y="15.9"/>
<line x="56.83" y="8.59"/>
<close/>
<move x="75.69" y="31.27"/>
<curve x1="75.52" y1="32.23" x2="74.83" y2="32.36" x3="74.3" y3="32.89"/>
<line x="60.87" y="32.89"/>
<curve x1="60.35" y1="32.39" x2="59.7" y2="32.21" x3="59.54" y3="31.26"/>
<line x="59.53" y="21.32"/>
<curve x1="59.53" y1="20.91" x2="60.09" y2="20.51" x3="60.74" y3="20.05"/>
<line x="74.51" y="20.05"/>
<curve x1="75.17" y1="20.52" x2="75.77" y2="20.95" x3="75.77" y3="21.31"/>
<line x="75.79" y="31.27"/>
<line x="75.69" y="31.27"/>
<close/>
<move x="84.94" y="39.6"/>
<curve x1="84.77" y1="40.57" x2="84.1" y2="40.74" x3="83.57" y3="41.26"/>
<line x="79.08" y="41.26"/>
<curve x1="78.55" y1="40.75" x2="77.89" y2="40.57" x3="77.73" y3="39.61"/>
<line x="77.72" y="21.35"/>
<curve x1="77.72" y1="20.93" x2="78.3" y2="20.52" x3="78.97" y3="20.05"/>
<line x="83.73" y="20.05"/>
<curve x1="84.38" y1="20.51" x2="84.95" y2="20.92" x3="84.95" y3="21.33"/>
<line x="84.94" y="39.6"/>
<close/>
<move x="92.26" y="32.89"/>
<line x="86.87" y="32.89"/>
<line x="86.85" y="20.05"/>
<line x="90.71" y="20.05"/>
<line x="94.84" y="28.55"/>
<curve x1="95.59" y1="31.39" x2="93.5" y2="32.89" x3="92.26" y3="32.89"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Tram 2" h="52.08" w="99.13" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.39" y="0" perimeter="0" name="N"/>
<constraint x="0.5" y="1" perimeter="0" name="S"/>
<constraint x="0.085" y="0.5" perimeter="0" name="W"/>
<constraint x="0.915" y="0.5" perimeter="0" name="E"/>
<constraint x="0" y="1" perimeter="0" name="SW"/>
<constraint x="1" y="1" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="79.49" y="48.97"/>
<curve x1="81.01" y1="48.65" x2="82.24" y2="47.51" x3="82.7" y3="46.04"/>
<line x="92.26" y="46.04"/>
<line x="92.26" y="32.3"/>
<line x="88.49" y="18.48"/>
<line x="49.56" y="18.48"/>
<line x="40.95" y="18.48"/>
<line x="40.95" y="16.8"/>
<line x="52.1" y="9.24"/>
<line x="38.49" y="0"/>
<line x="24.89" y="9.23"/>
<line x="36.04" y="16.79"/>
<line x="36.04" y="18.47"/>
<line x="10.63" y="18.47"/>
<line x="6.86" y="32.29"/>
<line x="6.86" y="46.03"/>
<line x="16.42" y="46.03"/>
<curve x1="16.88" y1="47.51" x2="18.11" y2="48.64" x3="19.63" y3="48.96"/>
<line x="0" y="48.96"/>
<line x="0" y="52.08"/>
<line x="99.13" y="52.08"/>
<line x="99.13" y="48.96"/>
<line x="79.49" y="48.96"/>
<close/>
<move x="81.63" y="20.87"/>
<line x="86.67" y="20.87"/>
<line x="89.78" y="32.3"/>
<line x="81.62" y="32.3"/>
<line x="81.62" y="20.87"/>
<close/>
<move x="69.31" y="20.87"/>
<line x="79.26" y="20.87"/>
<line x="79.26" y="32.3"/>
<line x="69.31" y="32.3"/>
<line x="69.31" y="20.87"/>
<close/>
<move x="77.72" y="48.97"/>
<line x="69.97" y="48.97"/>
<curve x1="71.05" y1="48.74" x2="71.99" y2="48.11" x3="72.6" y3="47.23"/>
<line x="75.09" y="47.23"/>
<curve x1="75.7" y1="48.11" x2="76.64" y2="48.74" x3="77.72" y3="48.97"/>
<close/>
<move x="56.98" y="20.87"/>
<line x="66.93" y="20.87"/>
<line x="66.93" y="32.3"/>
<line x="56.98" y="32.3"/>
<line x="56.98" y="20.87"/>
<close/>
<move x="68.21" y="48.97"/>
<line x="30.9" y="48.97"/>
<curve x1="31.98" y1="48.74" x2="32.92" y2="48.11" x3="33.53" y3="47.23"/>
<line x="49.56" y="47.23"/>
<line x="65.58" y="47.23"/>
<curve x1="66.2" y1="48.11" x2="67.13" y2="48.74" x3="68.21" y3="48.97"/>
<close/>
<move x="44.51" y="20.87"/>
<line x="54.6" y="20.87"/>
<line x="54.6" y="32.3"/>
<line x="44.51" y="32.3"/>
<line x="44.51" y="20.87"/>
<close/>
<move x="29.15" y="9.23"/>
<line x="38.5" y="2.89"/>
<line x="47.85" y="9.23"/>
<line x="38.5" y="15.57"/>
<line x="29.15" y="9.23"/>
<close/>
<move x="32.19" y="20.87"/>
<line x="42.14" y="20.87"/>
<line x="42.14" y="32.3"/>
<line x="32.19" y="32.3"/>
<line x="32.19" y="20.87"/>
<close/>
<move x="19.86" y="20.87"/>
<line x="29.81" y="20.87"/>
<line x="29.81" y="32.3"/>
<line x="19.86" y="32.3"/>
<line x="19.86" y="20.87"/>
<close/>
<move x="17.49" y="32.3"/>
<line x="9.33" y="32.3"/>
<line x="12.44" y="20.87"/>
<line x="17.48" y="20.87"/>
<line x="17.48" y="32.3"/>
<close/>
<move x="24.03" y="47.23"/>
<line x="26.52" y="47.23"/>
<curve x1="27.14" y1="48.11" x2="28.07" y2="48.74" x3="29.15" y3="48.97"/>
<line x="21.4" y="48.97"/>
<curve x1="22.48" y1="48.74" x2="23.41" y2="48.11" x3="24.03" y3="47.23"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Truck 1" h="51.03" w="99.28" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.5" y="0" perimeter="0" name="N"/>
<constraint x="0.5" y="0.84" perimeter="0" name="S"/>
<constraint x="0" y="0.5" perimeter="0" name="W"/>
<constraint x="1" y="0.5" perimeter="0" name="E"/>
<constraint x="0.065" y="0.19" perimeter="0" name="NW"/>
<constraint x="0.14" y="1" perimeter="0" name="SW"/>
<constraint x="1" y="0" perimeter="0" name="NE"/>
<constraint x="0.77" y="1" perimeter="0" name="SE"/>
</connections>
<foreground>
<ellipse x="5.67" y="34.65" w="16.38" h="16.38"/>
<fillstroke/>
<ellipse x="67.78" y="34.65" w="16.38" h="16.38"/>
<fillstroke/>
<path>
<move x="32.13" y="0"/>
<line x="32.13" y="32.32"/>
<line x="99.28" y="32.32"/>
<line x="99.28" y="0"/>
<close/>
</path>
<fillstroke/>
<path>
<move x="69.62" y="34.59"/>
<line x="27.87" y="34.59"/>
<line x="27.87" y="8"/>
<line x="6.39" y="9.65"/>
<curve x1="6.39" y1="9.65" x2="1.68" y2="21.4" x3="0" y3="25.53"/>
<line x="0" y="36.73"/>
<line x="0" y="40.75"/>
<curve x1="0" y1="41.9" x2="0.93" y2="42.83" x3="2.07" y3="42.83"/>
<line x="3.49" y="42.83"/>
<curve x1="3.49" y1="37.06" x2="8.13" y2="32.39" x3="13.85" y3="32.39"/>
<curve x1="19.58" y1="32.39" x2="24.21" y2="37.06" x3="24.21" y3="42.83"/>
<line x="65.59" y="42.83"/>
<curve x1="65.61" y1="39.48" x2="67.18" y2="36.5" x3="69.62" y3="34.59"/>
<close/>
<move x="19.59" y="23.68"/>
<line x="3.06" y="25.78"/>
<line x="7.84" y="13.29"/>
<line x="19.6" y="12.39"/>
<line x="19.6" y="23.68"/>
<close/>
</path>
<fillstroke/>
<path>
<move x="99.23" y="34.59"/>
<line x="82.32" y="34.59"/>
<curve x1="84.76" y1="36.5" x2="86.34" y2="39.48" x3="86.34" y3="42.84"/>
<line x="88.76" y="42.84"/>
<line x="93.05" y="42.84"/>
<line x="99.25" y="40.63"/>
<line x="99.23" y="34.59"/>
<close/>
</path>
<fillstroke/>
</foreground>
</shape>
<shape name="Truck 2" h="49.9" w="99.17" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.5" y="0" perimeter="0" name="N"/>
<constraint x="0.5" y="0.79" perimeter="0" name="S"/>
<constraint x="0.03" y="0.5" perimeter="0" name="W"/>
<constraint x="1" y="0.5" perimeter="0" name="E"/>
<constraint x="0.18" y="0.15" perimeter="0" name="NW"/>
<constraint x="0.19" y="1" perimeter="0" name="SW"/>
<constraint x="1" y="0" perimeter="0" name="NE"/>
<constraint x="0.81" y="1" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="88.5" y="39.3"/>
<line x="99.17" y="39.3"/>
<line x="99.17" y="0"/>
<line x="31.68" y="0"/>
<line x="31.68" y="6.75"/>
<line x="22.42" y="6.75"/>
<curve x1="18.63" y1="6.75" x2="16.27" y2="6.75" x3="14.71" y3="12.07"/>
<line x="12.13" y="22.46"/>
<line x="6.1" y="22.46"/>
<curve x1="3.14" y1="22.46" x2="3.14" y2="22.46" x3="3.14" y3="25.37"/>
<curve x1="3.14" y1="30.01" x2="3.14" y2="34.65" x3="3.14" y3="39.3"/>
<line x="0" y="39.3"/>
<line x="0" y="42.51"/>
<line x="11.3" y="42.51"/>
<curve x1="11.89" y1="46.9" x2="14.63" y2="49.89" x3="18.95" y3="49.89"/>
<curve x1="23.25" y1="49.89" x2="26.16" y2="46.83" x3="27.13" y3="42.51"/>
<line x="31.68" y="42.51"/>
<line x="31.68" y="39.3"/>
<line x="71.45" y="39.3"/>
<curve x1="71.37" y1="39.72" x2="71.34" y2="40.61" x3="71.34" y3="41.07"/>
<curve x1="71.34" y1="45.94" x2="75.24" y2="49.9" x3="80.01" y3="49.9"/>
<curve x1="84.78" y1="49.9" x2="88.67" y2="45.94" x3="88.67" y3="41.07"/>
<curve x1="88.67" y1="40.52" x2="88.61" y2="39.81" x3="88.5" y3="39.3"/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Truck 3" h="44.39" w="98.95" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.5" y="0" perimeter="0" name="N"/>
<constraint x="0.5" y="0.82" perimeter="0" name="S"/>
<constraint x="0" y="0.5" perimeter="0" name="W"/>
<constraint x="1" y="0.5" perimeter="0" name="E"/>
<constraint x="0.07" y="0.14" perimeter="0" name="NW"/>
<constraint x="0.17" y="1" perimeter="0" name="SW"/>
<constraint x="1" y="0" perimeter="0" name="NE"/>
<constraint x="0.81" y="1" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="64.41" y="44.29"/>
<curve x1="68.23" y1="44.29" x2="71.32" y2="41.15" x3="71.32" y3="37.29"/>
<curve x1="71.32" y1="33.43" x2="68.23" y2="30.31" x3="64.41" y3="30.31"/>
<curve x1="60.59" y1="30.31" x2="57.48" y2="33.43" x3="57.48" y3="37.29"/>
<curve x1="57.48" y1="41.15" x2="60.59" y2="44.29" x3="64.41" y3="44.29"/>
<close/>
<move x="17.09" y="44.39"/>
<curve x1="20.91" y1="44.39" x2="24" y2="41.27" x3="24" y3="37.41"/>
<curve x1="24" y1="33.55" x2="20.91" y2="30.41" x3="17.09" y3="30.41"/>
<curve x1="13.27" y1="30.41" x2="10.16" y2="33.55" x3="10.16" y3="37.41"/>
<curve x1="10.16" y1="41.27" x2="13.27" y2="44.39" x3="17.09" y3="44.39"/>
<close/>
<move x="80.25" y="44.29"/>
<curve x1="84.07" y1="44.29" x2="87.16" y2="41.15" x3="87.16" y3="37.29"/>
<curve x1="87.16" y1="33.43" x2="84.07" y2="30.31" x3="80.25" y3="30.31"/>
<curve x1="76.43" y1="30.31" x2="73.32" y2="33.43" x3="73.32" y3="37.29"/>
<curve x1="73.32" y1="41.15" x2="76.42" y2="44.29" x3="80.25" y3="44.29"/>
<close/>
<move x="24.64" y="0"/>
<line x="24.47" y="24.86"/>
<curve x1="24.47" y1="24.86" x2="23.76" y2="25.31" x3="23.63" y3="24.38"/>
<curve x1="23.18" y1="21.07" x2="22.31" y2="11.9" x3="21.6" y3="6.13"/>
<line x="6.95" y="6.13"/>
<line x="0.39" y="21.45"/>
<line x="1.9" y="32.94"/>
<line x="0" y="32.94"/>
<line x="0" y="36.65"/>
<line x="9.48" y="36.65"/>
<curve x1="9.6" y1="27.19" x2="24.47" y2="27.42" x3="24.64" y3="36.44"/>
<line x="56.49" y="36.27"/>
<curve x1="57.62" y1="27.72" x2="68.25" y2="29.12" x3="73.16" y3="29.12"/>
<curve x1="77.97" y1="29.12" x2="87.07" y2="27.57" x3="87.82" y3="36.4"/>
<line x="98.95" y="36.4"/>
<line x="98.95" y="0"/>
<line x="24.64" y="0"/>
<close/>
<move x="5.11" y="20.26"/>
<line x="9.31" y="9.53"/>
<line x="18.58" y="9.53"/>
<line x="18.75" y="10.04"/>
<line x="19.23" y="20.25"/>
<line x="5.11" y="20.25"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Truck 4" h="33.35" w="99.1" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.5" y="0" perimeter="0" name="N"/>
<constraint x="0.5" y="0.78" perimeter="0" name="S"/>
<constraint x="0.02" y="0.5" perimeter="0" name="W"/>
<constraint x="1" y="0.5" perimeter="0" name="E"/>
<constraint x="0.11" y="0.205" perimeter="0" name="NW"/>
<constraint x="0.115" y="1" perimeter="0" name="SW"/>
<constraint x="1" y="0" perimeter="0" name="NE"/>
<constraint x="0.86" y="0.99" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="36.12" y="26.79"/>
<line x="42.43" y="26.79"/>
<line x="39.81" y="23.76"/>
<line x="21.81" y="23.76"/>
<line x="21.8" y="6.71"/>
<line x="13.26" y="6.71"/>
<curve x1="11.03" y1="6.71" x2="9.63" y2="6.71" x3="8.71" y3="9.99"/>
<line x="7.17" y="16.4"/>
<line x="3.63" y="16.4"/>
<curve x1="1.88" y1="16.4" x2="1.88" y2="16.4" x3="1.88" y3="18.2"/>
<curve x1="1.88" y1="21.06" x2="1.88" y2="23.93" x3="1.88" y3="26.8"/>
<line x="0" y="26.8"/>
<line x="0" y="28.79"/>
<line x="6.7" y="28.79"/>
<curve x1="7.03" y1="31.49" x2="8.66" y2="33.35" x3="11.23" y3="33.35"/>
<curve x1="13.77" y1="33.35" x2="15.51" y2="31.46" x3="16.07" y3="28.79"/>
<line x="18.75" y="28.79"/>
<line x="18.75" y="26.8"/>
<line x="26.02" y="26.8"/>
<curve x1="25.98" y1="27.05" x2="25.96" y2="27.61" x3="25.96" y3="27.89"/>
<curve x1="25.96" y1="30.9" x2="28.26" y2="33.34" x3="31.09" y3="33.34"/>
<curve x1="33.91" y1="33.34" x2="36.21" y2="30.89" x3="36.21" y3="27.89"/>
<curve x1="36.21" y1="27.54" x2="36.18" y2="27.11" x3="36.12" y3="26.79"/>
<close/>
<move x="85.08" y="33.1"/>
<curve x1="88.11" y1="33.1" x2="90.57" y2="30.47" x3="90.57" y3="27.25"/>
<curve x1="90.57" y1="26.84" x2="90.54" y2="26.44" x3="90.45" y3="26.06"/>
<line x="99.1" y="26.06"/>
<line x="99.1" y="0"/>
<line x="23.84" y="0"/>
<line x="23.84" y="21.09"/>
<line x="41.79" y="21.09"/>
<line x="46.05" y="26.06"/>
<line x="79.72" y="26.06"/>
<curve x1="79.64" y1="26.45" x2="79.61" y2="26.85" x3="79.61" y3="27.25"/>
<curve x1="79.6" y1="30.47" x2="82.06" y2="33.1" x3="85.08" y3="33.1"/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Truck 5" h="27.2" w="99.06" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.5" y="0" perimeter="0" name="N"/>
<constraint x="0.5" y="0.79" perimeter="0" name="S"/>
<constraint x="0.015" y="0.5" perimeter="0" name="W"/>
<constraint x="1" y="0.5" perimeter="0" name="E"/>
<constraint x="0.17" y="0" perimeter="0" name="NW"/>
<constraint x="0.1" y="1" perimeter="0" name="SW"/>
<constraint x="1" y="0" perimeter="0" name="NE"/>
<constraint x="0.915" y="0.995" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="90.44" y="27.06"/>
<curve x1="93.06" y1="27.06" x2="95.21" y2="24.89" x3="95.21" y3="22.23"/>
<curve x1="95.21" y1="21.92" x2="95.18" y2="21.61" x3="95.11" y3="21.31"/>
<line x="99.06" y="21.31"/>
<line x="99.06" y="0"/>
<line x="56.27" y="0"/>
<line x="56.27" y="19.52"/>
<line x="53.97" y="19.52"/>
<line x="53.97" y="0"/>
<line x="17.34" y="0.01"/>
<line x="17.34" y="3.73"/>
<line x="12.28" y="3.73"/>
<curve x1="10.21" y1="3.73" x2="8.92" y2="3.73" x3="8.07" y3="6.62"/>
<line x="6.64" y="12.26"/>
<line x="3.35" y="12.26"/>
<curve x1="1.73" y1="12.26" x2="1.73" y2="12.26" x3="1.73" y3="13.84"/>
<curve x1="1.73" y1="16.36" x2="1.73" y2="18.89" x3="1.73" y3="21.41"/>
<line x="0" y="21.41"/>
<line x="0" y="23.17"/>
<line x="6.19" y="23.17"/>
<curve x1="6.5" y1="25.55" x2="8" y2="27.18" x3="10.38" y3="27.18"/>
<curve x1="12.73" y1="27.18" x2="14.33" y2="25.51" x3="14.85" y3="23.17"/>
<line x="17.33" y="23.17"/>
<line x="17.33" y="21.41"/>
<line x="33.84" y="21.41"/>
<curve x1="33.8" y1="21.63" x2="33.79" y2="22.13" x3="33.79" y3="22.37"/>
<curve x1="33.79" y1="25.02" x2="35.92" y2="27.17" x3="38.53" y3="27.17"/>
<curve x1="41.14" y1="27.17" x2="43.27" y2="25.02" x3="43.27" y3="22.37"/>
<curve x1="43.27" y1="22.07" x2="43.23" y2="21.69" x3="43.18" y3="21.41"/>
<line x="61.06" y="21.41"/>
<curve x1="61" y1="21.72" x2="60.96" y2="22.05" x3="60.96" y3="22.38"/>
<curve x1="60.96" y1="25.03" x2="63.1" y2="27.2" x3="65.72" y3="27.2"/>
<curve x1="68.34" y1="27.2" x2="70.48" y2="25.03" x3="70.48" y3="22.38"/>
<curve x1="70.48" y1="22.05" x2="70.45" y2="21.55" x3="70.39" y3="21.24"/>
<line x="85.77" y="21.29"/>
<curve x1="85.71" y1="21.59" x2="85.68" y2="21.91" x3="85.68" y3="22.22"/>
<curve x1="85.68" y1="24.89" x2="87.83" y2="27.06" x3="90.44" y3="27.06"/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Truck 6" h="98.99" w="79.99" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.5" y="0" perimeter="0" name="N"/>
<constraint x="0.5" y="0.85" perimeter="0" name="S"/>
<constraint x="0" y="0.5" perimeter="0" name="W"/>
<constraint x="1" y="0.5" perimeter="0" name="E"/>
<constraint x="0.03" y="0.02" perimeter="0" name="NW"/>
<constraint x="0.14" y="1" perimeter="0" name="SW"/>
<constraint x="0.97" y="0.02" perimeter="0" name="NE"/>
<constraint x="0.86" y="1" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="65.81" y="51.91"/>
<line x="64.8" y="37.09"/>
<curve x1="64.62" y1="34.94" x2="62.8" y2="33.28" x3="60.58" y3="33.28"/>
<line x="19.41" y="33.28"/>
<curve x1="17.19" y1="33.28" x2="15.37" y2="34.94" x3="15.18" y3="37.09"/>
<line x="14.2" y="51.91"/>
<line x="65.81" y="51.91"/>
<close/>
<move x="74.48" y="67.11"/>
<curve x1="74.48" y1="64.07" x2="72" y2="61.59" x3="68.93" y3="61.59"/>
<curve x1="65.86" y1="61.59" x2="63.36" y2="64.07" x3="63.36" y3="67.11"/>
<curve x1="63.36" y1="70.15" x2="65.86" y2="72.6" x3="68.93" y3="72.6"/>
<curve x1="72" y1="72.6" x2="74.48" y2="70.15" x3="74.48" y3="67.11"/>
<move x="58.25" y="75.36"/>
<line x="58.25" y="61.48"/>
<curve x1="58.25" y1="60.1" x2="57.11" y2="58.98" x3="55.72" y3="58.98"/>
<line x="24.17" y="58.98"/>
<curve x1="22.82" y1="58.98" x2="21.68" y2="60.1" x3="21.68" y3="61.48"/>
<line x="21.68" y="75.36"/>
<line x="58.25" y="75.36"/>
<close/>
<move x="11.06" y="72.61"/>
<curve x1="14.12" y1="72.61" x2="16.61" y2="70.16" x3="16.61" y3="67.12"/>
<curve x1="16.61" y1="64.08" x2="14.12" y2="61.6" x3="11.06" y3="61.6"/>
<curve x1="7.99" y1="61.6" x2="5.5" y2="64.08" x3="5.5" y3="67.12"/>
<curve x1="5.5" y1="70.15" x2="7.99" y2="72.61" x3="11.06" y3="72.61"/>
<move x="60.58" y="29.39"/>
<curve x1="64.84" y1="29.39" x2="68.35" y2="32.66" x3="68.7" y3="36.8"/>
<line x="69.73" y="52.07"/>
<line x="79.99" y="58.21"/>
<line x="79.96" y="84"/>
<line x="75.38" y="84"/>
<line x="75.41" y="92.43"/>
<curve x1="75.41" y1="96.08" x2="72.43" y2="98.99" x3="68.75" y3="98.99"/>
<curve x1="65.1" y1="98.99" x2="62.13" y2="96.08" x3="62.13" y3="92.43"/>
<line x="62.13" y="84"/>
<line x="17.85" y="84"/>
<line x="17.88" y="92.43"/>
<curve x1="17.88" y1="96.08" x2="14.9" y2="98.99" x3="11.22" y3="98.99"/>
<curve x1="7.57" y1="98.99" x2="4.6" y2="96.08" x3="4.6" y3="92.43"/>
<line x="4.6" y="84"/>
<line x="0.03" y="84"/>
<line x="0" y="58.21"/>
<line x="10.26" y="52.07"/>
<line x="11.29" y="36.8"/>
<curve x1="11.61" y1="32.66" x2="15.12" y2="29.39" x3="19.41" y3="29.39"/>
<line x="60.58" y="29.39"/>
<close/>
<move x="72.63" y="0"/>
<curve x1="76.68" y1="0" x2="79.96" y2="3.25" x3="79.96" y3="7.23"/>
<line x="79.96" y="54.05"/>
<line x="73.21" y="49.95"/>
<line x="72.33" y="36.28"/>
<curve x1="71.73" y1="30.39" x2="66.68" y2="25.78" x3="60.57" y3="25.78"/>
<line x="19.4" y="25.78"/>
<curve x1="13.27" y1="25.78" x2="8.26" y2="30.39" x3="7.66" y3="36.28"/>
<line x="6.77" y="49.95"/>
<line x="0" y="54.05"/>
<line x="0.02" y="7.23"/>
<curve x1="0.02" y1="3.24" x2="3.3" y2="0" x3="7.33" y3="0"/>
<line x="72.63" y="0"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Truck 7" h="41.22" w="99.21" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.5" y="0" perimeter="0" name="N"/>
<constraint x="0.5" y="1" perimeter="0" name="S"/>
<constraint x="0" y="0.5" perimeter="0" name="W"/>
<constraint x="1" y="0.5" perimeter="0" name="E"/>
<constraint x="0.05" y="0.14" perimeter="0" name="NW"/>
<constraint x="0.12" y="1" perimeter="0" name="SW"/>
<constraint x="1" y="0" perimeter="0" name="NE"/>
<constraint x="0.9" y="1" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="73.72" y="25.12"/>
<curve x1="69.62" y1="25.12" x2="65.94" y2="31.72" x3="65.94" y3="35.39"/>
<line x="68.64" y="35.39"/>
<curve x1="69.12" y1="26.98" x2="78.38" y2="26.03" x3="81.24" y3="29.77"/>
<line x="81.23" y="30.11"/>
<line x="83.93" y="30.11"/>
<line x="83.92" y="29.77"/>
<curve x1="86.77" y1="26.03" x2="96.04" y2="26.98" x3="96.52" y3="35.39"/>
<line x="99.21" y="35.39"/>
<curve x1="99.21" y1="31.73" x2="95.52" y2="25.12" x3="91.43" y3="25.12"/>
<line x="73.72" y="25.12"/>
<close/>
<move x="81.79" y="35.16"/>
<curve x1="81.79" y1="38.49" x2="79.11" y2="41.2" x3="75.81" y3="41.21"/>
<curve x1="72.5" y1="41.22" x2="69.81" y2="38.53" x3="69.8" y3="35.19"/>
<curve x1="69.79" y1="31.85" x2="72.45" y2="29.14" x3="75.75" y3="29.11"/>
<curve x1="79.06" y1="29.08" x2="81.76" y2="31.76" x3="81.79" y3="35.09"/>
<close/>
<move x="95.03" y="35.16"/>
<curve x1="95.03" y1="38.49" x2="92.35" y2="41.2" x3="89.05" y3="41.21"/>
<curve x1="85.74" y1="41.22" x2="83.05" y2="38.53" x3="83.04" y3="35.19"/>
<curve x1="83.03" y1="31.85" x2="85.69" y2="29.14" x3="88.99" y3="29.11"/>
<curve x1="92.3" y1="29.08" x2="95" y2="31.76" x3="95.03" y3="35.09"/>
<close/>
<move x="18.51" y="35.16"/>
<curve x1="18.51" y1="38.49" x2="15.83" y2="41.2" x3="12.53" y3="41.21"/>
<curve x1="9.22" y1="41.22" x2="6.53" y2="38.53" x3="6.52" y3="35.19"/>
<curve x1="6.51" y1="31.85" x2="9.17" y2="29.14" x3="12.47" y3="29.11"/>
<curve x1="15.78" y1="29.08" x2="18.48" y2="31.76" x3="18.51" y3="35.09"/>
<close/>
<move x="42.15" y="35.16"/>
<curve x1="42.15" y1="38.49" x2="39.47" y2="41.2" x3="36.17" y3="41.21"/>
<curve x1="32.86" y1="41.22" x2="30.17" y2="38.53" x3="30.16" y3="35.19"/>
<curve x1="30.15" y1="31.85" x2="32.81" y2="29.14" x3="36.11" y3="29.11"/>
<curve x1="39.42" y1="29.08" x2="42.12" y2="31.76" x3="42.15" y3="35.09"/>
<close/>
<move x="26.43" y="0"/>
<line x="26.41" y="23.28"/>
<line x="99.04" y="23.26"/>
<line x="99.04" y="0.08"/>
<line x="26.43" y="0"/>
<close/>
<move x="38.6" y="25.08"/>
<line x="19.85" y="25.08"/>
<line x="19.95" y="5.82"/>
<line x="5.29" y="5.78"/>
<line x="0" y="20.06"/>
<line x="0" y="33.63"/>
<curve x1="0" y1="34.57" x2="0.61" y2="35.44" x3="1.7" y3="35.44"/>
<line x="4.69" y="35.44"/>
<curve x1="6.96" y1="26.32" x2="15.68" y2="24.97" x3="19.55" y3="32.62"/>
<line x="29.13" y="32.62"/>
<curve x1="33.4" y1="25.34" x2="43.2" y2="26.69" x3="43.69" y3="35.35"/>
<line x="46.38" y="35.35"/>
<curve x1="46.39" y1="31.69" x2="42.7" y2="25.08" x3="38.6" y3="25.08"/>
<close/>
<move x="1.77" y="19.21"/>
<line x="5.33" y="9.13"/>
<line x="14.33" y="9.1"/>
<line x="14.36" y="17.87"/>
<line x="1.77" y="19.21"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Uneven Road" h="68.57" w="99" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.5" y="0.045" perimeter="0" name="N"/>
<constraint x="0.5" y="1" perimeter="0" name="S"/>
<constraint x="0.14" y="0.5" perimeter="0" name="W"/>
<constraint x="0.865" y="0.5" perimeter="0" name="E"/>
<constraint x="0.27" y="0.01" perimeter="0" name="NW"/>
<constraint x="0" y="1" perimeter="0" name="SW"/>
<constraint x="0.82" y="0.13" perimeter="0" name="NE"/>
<constraint x="1" y="1" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="91.21" y="63.89"/>
<line x="76.97" y="63.89"/>
<line x="78.37" y="53.37"/>
<line x="82.75" y="53.97"/>
<line x="85.96" y="29.93"/>
<line x="83.34" y="25.71"/>
<line x="82.45" y="11.63"/>
<curve x1="82.45" y1="11.63" x2="81.92" y2="7.67" x3="78.58" y3="7.21"/>
<line x="28.9" y="0.45"/>
<curve x1="25.56" y1="0" x2="24.01" y2="3.67" x3="24.01" y3="3.67"/>
<line x="19.46" y="17.01"/>
<line x="15.82" y="20.38"/>
<line x="12.61" y="44.42"/>
<line x="16.37" y="44.93"/>
<line x="14.94" y="55.63"/>
<line x="23.92" y="56.85"/>
<line x="25.35" y="46.15"/>
<line x="69.4" y="52.15"/>
<line x="67.97" y="62.85"/>
<line x="75.62" y="63.89"/>
<line x="54.35" y="63.89"/>
<line x="54.35" y="56.87"/>
<line x="0" y="56.87"/>
<line x="0" y="68.57"/>
<line x="99" y="68.57"/>
<line x="91.21" y="63.89"/>
<close/>
<move x="46.65" y="20.07"/>
<curve x1="46.07" y1="18.85" x2="45.14" y2="17.55" x3="43.71" y3="16.88"/>
<curve x1="42.15" y1="16.14" x2="41.47" y2="14.86" x3="41.19" y3="13.75"/>
<curve x1="41.79" y1="13.06" x2="42.23" y2="12.1" x3="42.37" y3="11.01"/>
<curve x1="42.69" y1="8.62" x2="41.5" y2="6.49" x3="39.71" y3="6.25"/>
<curve x1="37.92" y1="6.01" x2="36.22" y2="7.75" x3="35.9" y3="10.13"/>
<curve x1="35.7" y1="11.61" x2="36.08" y2="12.99" x3="36.82" y3="13.88"/>
<line x="36.54" y="14.83"/>
<curve x1="36.54" y1="14.83" x2="35.2" y2="14.55" x3="33.43" y3="14.82"/>
<curve x1="33.46" y1="14.14" x2="33.36" y2="13.42" x3="32.71" y3="13.84"/>
<curve x1="32.71" y1="13.84" x2="32.14" y2="13.42" x3="32.02" y3="13.96"/>
<curve x1="32.02" y1="13.96" x2="31.43" y2="13.48" x3="31.33" y3="14.08"/>
<curve x1="31.33" y1="14.08" x2="30.66" y2="13.83" x3="30.58" y3="14.4"/>
<curve x1="30.58" y1="14.4" x2="29.42" y2="15.41" x3="29.2" y3="16.59"/>
<curve x1="28.83" y1="16.87" x2="28.48" y2="17.19" x3="28.13" y3="17.56"/>
<line x="24.76" y="17.1"/>
<line x="26.59" y="3.39"/>
<line x="78.99" y="10.52"/>
<line x="77.16" y="24.23"/>
<line x="46.65" y="20.07"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
<shape name="Vehicle Ferry" h="66.62" w="99.25" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.5" y="0" perimeter="0" name="N"/>
<constraint x="0.5" y="1" perimeter="0" name="S"/>
<constraint x="0" y="0.5" perimeter="0" name="W"/>
<constraint x="1" y="0.5" perimeter="0" name="E"/>
<constraint x="0.155" y="0.01" perimeter="0" name="NW"/>
<constraint x="0" y="1" perimeter="0" name="SW"/>
<constraint x="0.845" y="0.01" perimeter="0" name="NE"/>
<constraint x="1" y="1" perimeter="0" name="SE"/>
</connections>
<background>
<path>
<move x="99.23" y="66.62"/>
<curve x1="97.08" y1="66.62" x2="94.98" y2="66.12" x3="93.13" y3="65.3"/>
<curve x1="91.23" y1="64.4" x2="89.08" y2="63.86" x3="86.83" y3="63.86"/>
<curve x1="84.61" y1="63.86" x2="82.46" y2="64.41" x3="80.56" y3="65.3"/>
<curve x1="78.68" y1="66.12" x2="76.61" y2="66.62" x3="74.43" y3="66.62"/>
<curve x1="72.26" y1="66.62" x2="70.18" y2="66.12" x3="68.33" y3="65.3"/>
<curve x1="66.43" y1="64.4" x2="64.28" y2="63.86" x3="62.03" y3="63.86"/>
<curve x1="59.81" y1="63.86" x2="57.66" y2="64.41" x3="55.75" y3="65.3"/>
<curve x1="53.87" y1="66.12" x2="51.8" y2="66.62" x3="49.62" y3="66.62"/>
<curve x1="47.45" y1="66.62" x2="45.37" y2="66.12" x3="43.52" y3="65.3"/>
<curve x1="41.62" y1="64.4" x2="39.47" y2="63.86" x3="37.22" y3="63.86"/>
<curve x1="34.97" y1="63.86" x2="32.82" y2="64.41" x3="30.92" y3="65.3"/>
<curve x1="29.07" y1="66.12" x2="26.99" y2="66.62" x3="24.82" y3="66.62"/>
<curve x1="22.65" y1="66.62" x2="20.57" y2="66.12" x3="18.72" y3="65.3"/>
<curve x1="16.79" y1="64.4" x2="14.64" y2="63.86" x3="12.42" y3="63.86"/>
<curve x1="10.17" y1="63.86" x2="8.02" y2="64.41" x3="6.12" y3="65.3"/>
<curve x1="4.25" y1="66.12" x2="2.17" y2="66.62" x3="0" y3="66.62"/>
<line x="0" y="57.38"/>
<curve x1="2.17" y1="57.38" x2="4.25" y2="56.91" x3="6.1" y3="56.06"/>
<curve x1="8" y1="55.16" x2="10.15" y2="54.64" x3="12.4" y3="54.64"/>
<curve x1="14.62" y1="54.64" x2="16.77" y2="55.16" x3="18.7" y3="56.06"/>
<curve x1="20.55" y1="56.91" x2="22.63" y2="57.38" x3="24.8" y3="57.38"/>
<curve x1="26.97" y1="57.38" x2="29.05" y2="56.91" x3="30.9" y3="56.06"/>
<curve x1="32.8" y1="55.16" x2="34.95" y2="54.64" x3="37.2" y3="54.64"/>
<curve x1="39.45" y1="54.64" x2="41.6" y2="55.16" x3="43.5" y3="56.06"/>
<curve x1="45.35" y1="56.91" x2="47.43" y2="57.38" x3="49.6" y3="57.38"/>
<curve x1="51.77" y1="57.38" x2="53.85" y2="56.91" x3="55.73" y3="56.06"/>
<curve x1="57.63" y1="55.16" x2="59.78" y2="54.64" x3="62.01" y3="54.64"/>
<curve x1="64.26" y1="54.64" x2="66.41" y2="55.16" x3="68.31" y3="56.06"/>
<curve x1="70.16" y1="56.91" x2="72.24" y2="57.38" x3="74.41" y3="57.38"/>
<curve x1="76.58" y1="57.38" x2="78.66" y2="56.91" x3="80.54" y3="56.06"/>
<curve x1="82.44" y1="55.16" x2="84.59" y2="54.64" x3="86.81" y3="54.64"/>
<curve x1="89.06" y1="54.64" x2="91.21" y2="55.16" x3="93.11" y3="56.06"/>
<curve x1="94.96" y1="56.91" x2="97.06" y2="57.38" x3="99.21" y3="57.38"/>
<line x="99.21" y="66.62"/>
<close/>
<move x="87.12" y="31.24"/>
<curve x1="88.16" y1="30.74" x2="88.87" y2="29.7" x3="88.87" y3="28.45"/>
<line x="88.87" y="25.36"/>
<line x="91.98" y="25.36"/>
<line x="91.98" y="15.28"/>
<line x="91.98" y="15.28"/>
<curve x1="91.98" y1="13.09" x2="90.5" y2="11.25" x3="88.5" y3="10.7"/>
<line x="84.94" y="2.14"/>
<curve x1="84.42" y1="0.87" x2="83.19" y2="0" x3="81.76" y3="0"/>
<line x="63.47" y="0"/>
<curve x1="62.04" y1="0" x2="60.8" y2="0.87" x3="60.28" y3="2.14"/>
<line x="56.72" y="10.7"/>
<curve x1="54.72" y1="11.25" x2="53.24" y2="13.09" x3="53.24" y3="15.28"/>
<line x="53.24" y="15.28"/>
<line x="53.24" y="25.36"/>
<line x="56.35" y="25.36"/>
<line x="56.35" y="28.45"/>
<curve x1="56.35" y1="29.7" x2="57.07" y2="30.74" x3="58.1" y3="31.24"/>
<line x="41.29" y="31.24"/>
<curve x1="42.33" y1="30.74" x2="43.07" y2="29.7" x3="43.07" y3="28.45"/>
<line x="43.05" y="25.36"/>
<line x="46.16" y="25.36"/>
<line x="46.16" y="15.28"/>
<line x="46.16" y="15.28"/>
<curve x1="46.16" y1="13.09" x2="44.68" y2="11.25" x3="42.68" y3="10.7"/>
<line x="39.12" y="2.14"/>
<curve x1="38.59" y1="0.87" x2="37.36" y2="0" x3="35.92" y3="0"/>
<line x="17.64" y="0"/>
<curve x1="16.21" y1="0" x2="14.97" y2="0.87" x3="14.45" y3="2.14"/>
<line x="10.89" y="10.7"/>
<curve x1="8.89" y1="11.25" x2="7.41" y2="13.09" x3="7.41" y3="15.28"/>
<line x="7.41" y="15.28"/>
<line x="7.41" y="25.36"/>
<line x="10.52" y="25.36"/>
<line x="10.52" y="28.45"/>
<curve x1="10.52" y1="29.7" x2="11.24" y2="30.74" x3="12.27" y3="31.24"/>
<line x="0" y="31.24"/>
<line x="0" y="39.07"/>
<line x="8.4" y="39.07"/>
<line x="15.24" y="47.11"/>
<curve x1="16.45" y1="47.36" x2="17.61" y2="47.76" x3="18.7" y3="48.26"/>
<curve x1="20.55" y1="49.11" x2="22.63" y2="49.58" x3="24.8" y3="49.58"/>
<curve x1="26.97" y1="49.58" x2="29.05" y2="49.11" x3="30.9" y3="48.26"/>
<curve x1="32.8" y1="47.36" x2="34.95" y2="46.84" x3="37.2" y3="46.84"/>
<curve x1="39.45" y1="46.84" x2="41.6" y2="47.36" x3="43.5" y3="48.26"/>
<curve x1="45.35" y1="49.11" x2="47.43" y2="49.58" x3="49.6" y3="49.58"/>
<curve x1="51.77" y1="49.58" x2="53.85" y2="49.11" x3="55.73" y3="48.26"/>
<curve x1="57.63" y1="47.36" x2="59.78" y2="46.84" x3="62.01" y3="46.84"/>
<curve x1="64.26" y1="46.84" x2="66.41" y2="47.36" x3="68.31" y3="48.26"/>
<curve x1="70.16" y1="49.11" x2="72.24" y2="49.58" x3="74.41" y3="49.58"/>
<curve x1="76.58" y1="49.58" x2="78.66" y2="49.11" x3="80.54" y3="48.26"/>
<curve x1="81.85" y1="47.64" x2="83.28" y2="47.21" x3="84.79" y3="46.99"/>
<line x="91.46" y="38.98"/>
<line x="99.25" y="38.98"/>
<line x="99.25" y="31.25"/>
<line x="87.12" y="31.25"/>
<close/>
<move x="14.85" y="31.24"/>
<curve x1="15.89" y1="30.74" x2="16.63" y2="29.7" x3="16.63" y3="28.45"/>
<line x="16.61" y="25.36"/>
<line x="36.97" y="25.36"/>
<line x="36.97" y="28.45"/>
<curve x1="36.97" y1="29.7" x2="37.69" y2="30.74" x3="38.72" y3="31.24"/>
<line x="14.85" y="31.24"/>
<close/>
<move x="60.68" y="31.24"/>
<curve x1="61.72" y1="30.74" x2="62.43" y2="29.7" x3="62.43" y3="28.45"/>
<line x="62.43" y="25.36"/>
<line x="82.79" y="25.36"/>
<line x="82.79" y="28.45"/>
<curve x1="82.79" y1="29.7" x2="83.51" y2="30.74" x3="84.54" y3="31.24"/>
<line x="60.68" y="31.24"/>
<close/>
<move x="11.04" y="17.09"/>
<curve x1="11.04" y1="15.37" x2="12.42" y2="13.99" x3="14.13" y3="13.99"/>
<curve x1="15.81" y1="13.99" x2="17.22" y2="15.37" x3="17.22" y3="17.09"/>
<curve x1="17.22" y1="18.81" x2="15.81" y2="20.19" x3="14.13" y3="20.19"/>
<curve x1="12.43" y1="20.19" x2="11.04" y2="18.81" x3="11.04" y3="17.09"/>
<close/>
<move x="39.46" y="20.19"/>
<curve x1="37.75" y1="20.19" x2="36.37" y2="18.81" x3="36.37" y3="17.09"/>
<curve x1="36.37" y1="15.37" x2="37.75" y2="13.99" x3="39.46" y3="13.99"/>
<curve x1="41.14" y1="13.99" x2="42.57" y2="15.37" x3="42.57" y3="17.09"/>
<curve x1="42.57" y1="18.81" x2="41.14" y2="20.19" x3="39.46" y3="20.19"/>
<close/>
<move x="13.96" y="10.53"/>
<line x="17.02" y="3.14"/>
<curve x1="17.14" y1="2.77" x2="17.49" y2="2.49" x3="17.91" y3="2.49"/>
<line x="35.65" y="2.49"/>
<curve x1="36.07" y1="2.49" x2="36.42" y2="2.76" x3="36.56" y3="3.14"/>
<line x="39.62" y="10.53"/>
<line x="13.96" y="10.53"/>
<close/>
<move x="56.88" y="17.09"/>
<curve x1="56.88" y1="15.37" x2="58.26" y2="13.99" x3="59.97" y3="13.99"/>
<curve x1="61.65" y1="13.99" x2="63.06" y2="15.37" x3="63.06" y3="17.09"/>
<curve x1="63.06" y1="18.81" x2="61.65" y2="20.19" x3="59.97" y3="20.19"/>
<curve x1="58.26" y1="20.19" x2="56.88" y2="18.81" x3="56.88" y3="17.09"/>
<close/>
<move x="85.29" y="20.19"/>
<curve x1="83.59" y1="20.19" x2="82.2" y2="18.81" x3="82.2" y3="17.09"/>
<curve x1="82.2" y1="15.37" x2="83.58" y2="13.99" x3="85.29" y3="13.99"/>
<curve x1="86.97" y1="13.99" x2="88.38" y2="15.37" x3="88.38" y3="17.09"/>
<curve x1="88.38" y1="18.81" x2="86.97" y2="20.19" x3="85.29" y3="20.19"/>
<close/>
<move x="59.79" y="10.53"/>
<line x="62.85" y="3.14"/>
<curve x1="62.97" y1="2.77" x2="63.32" y2="2.49" x3="63.74" y3="2.49"/>
<line x="81.48" y="2.49"/>
<curve x1="81.9" y1="2.49" x2="82.25" y2="2.76" x3="82.37" y3="3.14"/>
<line x="85.43" y="10.53"/>
<line x="59.79" y="10.53"/>
<close/>
</path>
</background>
<foreground>
<fillstroke/>
</foreground>
</shape>
</shapes>
``` | /content/code_sandbox/src/main/webapp/stencils/signs/transportation.xml | xml | 2016-09-06T12:59:15 | 2024-08-16T13:28:41 | drawio | jgraph/drawio | 40,265 | 142,401 |
```xml
import * as path from "path";
import * as vs from "vscode";
import { fsPath } from "../../../shared/utils/fs";
import { activate, ensureFileContent, ensureTestContent, executeCodeAction, extApi, helloWorldFolder, rangeOf, sb, setTestContent, tryDelete } from "../../helpers";
describe("move top level to file refactor", () => {
beforeEach("activate", () => activate());
beforeEach("check capabilities", function () {
if (!extApi.isLsp || !extApi.dartCapabilities.supportsMoveTopLevelToFile)
this.skip();
});
it("can move a simple class", async () => {
const newFile = vs.Uri.file(path.join(fsPath(helloWorldFolder), "lib/my_new_class.dart"));
const showSaveDialog = sb.stub(vs.window, "showSaveDialog");
showSaveDialog.resolves(newFile);
await setTestContent(`
class A {}
class B {}
class C {}
`);
await executeCodeAction({ title: "Move 'B' to file" }, rangeOf("class |B|"));
await ensureTestContent(`
class A {}
class C {}
`);
await ensureFileContent(newFile, `
class B {}
`);
tryDelete(newFile);
});
});
``` | /content/code_sandbox/src/test/dart/refactors/move_top_level_to_file.test.ts | xml | 2016-07-30T13:49:11 | 2024-08-10T16:23:15 | Dart-Code | Dart-Code/Dart-Code | 1,472 | 268 |
```xml
/*
* This software is released under MIT license.
* The full license information can be found in LICENSE in the root directory of this project.
*/
import { renderIcon } from '../icon.renderer.js';
import { IconShapeTuple } from '../interfaces/icon.interfaces.js';
const icon = {
outline:
'<path d="M14.68,14.81a6.76,6.76,0,1,1,6.76-6.75A6.77,6.77,0,0,1,14.68,14.81Zm0-11.51a4.76,4.76,0,1,0,4.76,4.76A4.76,4.76,0,0,0,14.68,3.3Z"/><path d="M16.42,31.68A2.14,2.14,0,0,1,15.8,30H4V24.22a14.81,14.81,0,0,1,11.09-4.68l.72,0a2.2,2.2,0,0,1,.62-1.85l.12-.11c-.47,0-1-.06-1.46-.06A16.47,16.47,0,0,0,2.2,23.26a1,1,0,0,0-.2.6V30a2,2,0,0,0,2,2H16.7Z"/><path d="M26.87,16.29a.37.37,0,0,1,.15,0,.42.42,0,0,0-.15,0Z" /><path d="M33.68,23.32l-2-.61a7.21,7.21,0,0,0-.58-1.41l1-1.86A.38.38,0,0,0,32,19l-1.45-1.45a.36.36,0,0,0-.44-.07l-1.84,1a7.15,7.15,0,0,0-1.43-.61l-.61-2a.36.36,0,0,0-.36-.24H23.82a.36.36,0,0,0-.35.26l-.61,2a7,7,0,0,0-1.44.6l-1.82-1a.35.35,0,0,0-.43.07L17.69,19a.38.38,0,0,0-.06.44l1,1.82A6.77,6.77,0,0,0,18,22.69l-2,.6a.36.36,0,0,0-.26.35v2.05A.35.35,0,0,0,16,26l2,.61a7,7,0,0,0,.6,1.41l-1,1.91a.36.36,0,0,0,.06.43l1.45,1.45a.38.38,0,0,0,.44.07l1.87-1a7.09,7.09,0,0,0,1.4.57l.6,2a.38.38,0,0,0,.35.26h2.05a.37.37,0,0,0,.35-.26l.61-2.05a6.92,6.92,0,0,0,1.38-.57l1.89,1a.36.36,0,0,0,.43-.07L32,30.4A.35.35,0,0,0,32,30l-1-1.88a7,7,0,0,0,.58-1.39l2-.61a.36.36,0,0,0,.26-.35V23.67A.36.36,0,0,0,33.68,23.32ZM24.85,28a3.34,3.34,0,1,1,3.33-3.33A3.34,3.34,0,0,1,24.85,28Z"/>',
solid:
'<circle cx="14.67" cy="8.3" r="6"/><path d="M16.44,31.82a2.15,2.15,0,0,1-.38-2.55l.53-1-1.09-.33A2.14,2.14,0,0,1,14,25.84V23.79a2.16,2.16,0,0,1,1.53-2.07l1.09-.33-.52-1a2.17,2.17,0,0,1,.35-2.52,18.92,18.92,0,0,0-2.32-.16A15.58,15.58,0,0,0,2,23.07v7.75a1,1,0,0,0,1,1H16.44Z"/><path d="M33.7,23.46l-2-.6a6.73,6.73,0,0,0-.58-1.42l1-1.86a.35.35,0,0,0-.07-.43l-1.45-1.46a.38.38,0,0,0-.43-.07l-1.85,1a7.74,7.74,0,0,0-1.43-.6l-.61-2a.38.38,0,0,0-.36-.25H23.84a.38.38,0,0,0-.35.26l-.6,2a6.85,6.85,0,0,0-1.45.61l-1.81-1a.38.38,0,0,0-.44.06l-1.47,1.44a.37.37,0,0,0-.07.44l1,1.82A7.24,7.24,0,0,0,18,22.83l-2,.61a.36.36,0,0,0-.26.35v2.05a.36.36,0,0,0,.26.35l2,.61a7.29,7.29,0,0,0,.6,1.41l-1,1.9a.37.37,0,0,0,.07.44L19.16,32a.38.38,0,0,0,.44.06l1.87-1a7.09,7.09,0,0,0,1.4.57l.6,2.05a.38.38,0,0,0,.36.26h2.05a.38.38,0,0,0,.35-.26l.6-2.05a6.68,6.68,0,0,0,1.38-.57l1.89,1a.38.38,0,0,0,.44-.06L32,30.55a.38.38,0,0,0,.06-.44l-1-1.88a6.92,6.92,0,0,0,.57-1.38l2-.61a.39.39,0,0,0,.27-.35V23.82A.4.4,0,0,0,33.7,23.46Zm-8.83,4.72a3.34,3.34,0,1,1,3.33-3.34A3.34,3.34,0,0,1,24.87,28.18Z"/>',
};
export const administratorIconName = 'administrator';
export const administratorIcon: IconShapeTuple = [administratorIconName, renderIcon(icon)];
``` | /content/code_sandbox/packages/core/src/icon/shapes/administrator.ts | xml | 2016-09-29T17:24:17 | 2024-08-11T17:06:15 | clarity | vmware-archive/clarity | 6,431 | 1,812 |
```xml
export * from "./Contract";
export * from "./ImageGeneratorModule";
``` | /content/code_sandbox/src/main/Core/ImageGenerator/index.ts | xml | 2016-10-11T04:59:52 | 2024-08-16T11:53:31 | ueli | oliverschwendener/ueli | 3,543 | 15 |
```xml
/*
* @license Apache-2.0
*
*
*
* path_to_url
*
* Unless required by applicable law or agreed to in writing, software
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
// TypeScript Version: 4.1
/**
* Evaluates the ramp function.
*
* ## Notes
*
* - If `x >= 0`, the function returns `x`; otherwise, the function returns zero.
*
* @param x - input value
* @returns function value
*
* @example
* var v = ramp( 3.14 );
* // returns 3.14
*
* @example
* var v = ramp( -3.14 );
* // returns 0.0
*
* @example
* var v = ramp( NaN );
* // returns NaN
*/
declare function ramp( x: number ): number;
// EXPORTS //
export = ramp;
``` | /content/code_sandbox/lib/node_modules/@stdlib/math/base/special/ramp/docs/types/index.d.ts | xml | 2016-03-24T04:19:52 | 2024-08-16T09:03:19 | stdlib | stdlib-js/stdlib | 4,266 | 196 |
```xml
import { Component, OnInit } from '@angular/core';
import { CatService } from '../services/cat.service';
import { ToastComponent } from '../shared/toast/toast.component';
import { Cat } from '../shared/models/cat.model';
@Component({
selector: 'app-cats',
templateUrl: './cats.component.html',
styleUrls: ['./cats.component.scss']
})
export class CatsComponent implements OnInit {
cat = new Cat();
cats: Cat[] = [];
isLoading = true;
isEditing = false;
constructor(private catService: CatService,
public toast: ToastComponent) { }
ngOnInit(): void {
this.getCats();
}
getCats(): void {
this.catService.getCats().subscribe({
next: data => this.cats = data,
error: error => console.log(error),
complete: () => this.isLoading = false
});
}
enableEditing(cat: Cat): void {
this.isEditing = true;
this.cat = cat;
}
cancelEditing(): void {
this.isEditing = false;
this.cat = new Cat();
this.toast.setMessage('Item editing cancelled.', 'warning');
// reload the cats to reset the editing
this.getCats();
}
editCat(cat: Cat): void {
this.catService.editCat(cat).subscribe({
next: () => {
this.isEditing = false;
this.cat = cat;
this.toast.setMessage('Item edited successfully.', 'success');
},
error: error => console.log(error)
});
}
deleteCat(cat: Cat): void {
if (window.confirm('Are you sure you want to permanently delete this item?')) {
this.catService.deleteCat(cat).subscribe({
next: () => {
this.cats = this.cats.filter(elem => elem._id !== cat._id);
this.toast.setMessage('Item deleted successfully.', 'success');
},
error: error => console.log(error)
});
}
}
}
``` | /content/code_sandbox/client/app/cats/cats.component.ts | xml | 2016-05-14T14:21:49 | 2024-08-10T00:30:46 | Angular-Full-Stack | DavideViolante/Angular-Full-Stack | 1,480 | 416 |
```xml
import { factory } from '@stoplight/prism-core';
import { IHttpOperation } from '@stoplight/types';
import { defaults } from 'lodash';
import forward from './forwarder';
import mock from './mocker';
import route from './router';
import { validateInput, validateOutput, validateSecurity } from './validator';
export * from './types';
export * from './mocker/errors';
export * from './router/errors';
export * from './mocker/serializer/style';
export { generate as generateHttpParam } from './mocker/generator/HttpParamGenerator';
export { resetJSONSchemaGenerator } from './mocker';
import { IHttpConfig, IHttpResponse, IHttpRequest, PickRequired, PrismHttpComponents, IHttpProxyConfig } from './types';
export { getHttpOperationsFromSpec } from './utils/operations';
export { createAndCallPrismInstanceWithSpec, PrismErrorResult, PrismOkResult } from './instanceWithSpec';
export const createInstance = (
defaultConfig: IHttpConfig | IHttpProxyConfig,
components: PickRequired<Partial<PrismHttpComponents>, 'logger'>
) =>
factory<IHttpOperation, IHttpRequest, IHttpResponse, IHttpConfig>(
defaultConfig,
defaults(components, {
route,
validateInput,
validateOutput,
validateSecurity,
mock,
forward,
})
);
``` | /content/code_sandbox/packages/http/src/index.ts | xml | 2016-03-18T03:52:09 | 2024-08-16T09:16:35 | prism | stoplightio/prism | 4,175 | 278 |
```xml
/*
* @license Apache-2.0
*
*
*
* path_to_url
*
* Unless required by applicable law or agreed to in writing, software
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
import fallingFactorial = require( './index' );
// TESTS //
// The function returns a number...
{
fallingFactorial( 0.8, 2 ); // $ExpectType number
}
// The compiler throws an error if the function is provided values other than two numbers...
{
fallingFactorial( true, 3 ); // $ExpectError
fallingFactorial( false, 2 ); // $ExpectError
fallingFactorial( '5', 1 ); // $ExpectError
fallingFactorial( [], 1 ); // $ExpectError
fallingFactorial( {}, 2 ); // $ExpectError
fallingFactorial( ( x: number ): number => x, 2 ); // $ExpectError
fallingFactorial( 0.9, true ); // $ExpectError
fallingFactorial( 0.9, false ); // $ExpectError
fallingFactorial( 0.5, '5' ); // $ExpectError
fallingFactorial( 0.8, [] ); // $ExpectError
fallingFactorial( 0.9, {} ); // $ExpectError
fallingFactorial( 0.8, ( x: number ): number => x ); // $ExpectError
fallingFactorial( [], true ); // $ExpectError
fallingFactorial( {}, false ); // $ExpectError
fallingFactorial( false, '5' ); // $ExpectError
fallingFactorial( {}, [] ); // $ExpectError
fallingFactorial( '5', ( x: number ): number => x ); // $ExpectError
}
// The compiler throws an error if the function is provided insufficient arguments...
{
fallingFactorial(); // $ExpectError
fallingFactorial( 0.3 ); // $ExpectError
}
``` | /content/code_sandbox/lib/node_modules/@stdlib/math/base/special/falling-factorial/docs/types/test.ts | xml | 2016-03-24T04:19:52 | 2024-08-16T09:03:19 | stdlib | stdlib-js/stdlib | 4,266 | 437 |
```xml
/*
* one or more contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright ownership.
*/
import {Chart, Scale, Tick} from 'chart.js';
import {t} from 'translation';
import {FilterData} from 'types';
import {UNAUTHORIZED_TENANT_ID} from './tenantService';
export function getHighlightedText(
text: string,
highlight?: string,
matchFromStart?: boolean
): string | JSX.Element[] {
if (!highlight) {
return text;
}
// we need to escape special characters in the highlight text
// path_to_url
let regex = highlight.replace(/[-\\^$*+?.()|[\]{}]/g, '\\$&');
if (matchFromStart) {
regex = '^' + regex;
}
// Split on highlight term and include term into parts, ignore case
const parts = text.split(new RegExp(`(${regex})`, 'gi'));
return parts.map((part, i) => (
<span
key={i}
className={part.toLowerCase() === highlight.toLowerCase() ? 'textBold' : undefined}
>
{part}
</span>
));
}
export function duration(
timeObject?: FilterData | number | string | null,
precision?: number | null,
shortNotation?: boolean
): string {
// In case the precision from the report configuration is passed to the function but it is turned off, its value is set to null
// In this case we want to set the default value of the precision to be 3
if (precision === null) {
precision = 3;
}
if (!timeObject && timeObject !== 0) {
return '--';
}
const time =
typeof timeObject === 'object'
? +timeObject.value * Number(timeUnits[timeObject.unit]?.value)
: Number(timeObject);
if (time >= 0 && time < 1) {
return `${Number(time.toFixed(2)) || 0}ms`;
}
const timeSegments: string[] = [];
let remainingTime = time;
let remainingPrecision = precision || 0;
Object.values(timeUnits)
.sort((a, b) => b.value - a.value)
.filter(({value}) => value <= time)
.forEach((currentUnit) => {
if (precision) {
if (remainingPrecision-- > 0) {
let number = Math.floor(remainingTime / currentUnit.value);
if (!remainingPrecision || currentUnit.abbreviation === 'ms') {
number = Math.round(remainingTime / currentUnit.value);
}
if (number === 0) {
remainingPrecision++;
} else {
const longLabel = `\u00A0${t(
`common.unit.${currentUnit.label}.label${number !== 1 ? '-plural' : ''}`
)}`;
timeSegments.push(`${number}${shortNotation ? currentUnit.abbreviation : longLabel}`);
}
remainingTime -= number * currentUnit.value;
}
} else if (remainingTime >= currentUnit.value) {
let numberOfUnits = Math.floor(remainingTime / currentUnit.value);
// allow numbers with ms abreviation to have floating numbers (avoid flooring)
// e.g 1.2ms => 1.2 ms. On the other hand, 1.2 seconds => 1 seconds 200ms
if (currentUnit.abbreviation === 'ms') {
numberOfUnits = Number((remainingTime / currentUnit.value).toFixed(2));
}
timeSegments.push(numberOfUnits + currentUnit.abbreviation);
remainingTime -= numberOfUnits * currentUnit.value;
}
});
return timeSegments.join('\u00A0');
}
export const convertDurationToObject = (value: number): FilterData => {
// sort the time units in descending order, then find the first one
// that fits the provided value without any decimal places
const [divisor, unit] = (Object.keys(timeUnits) as (keyof typeof timeUnits)[])
.map<[number, keyof typeof timeUnits]>((key) => [timeUnits[key]!.value, key])
.sort(([a], [b]) => b - a)
.find(([divisor]) => value % divisor === 0)!;
return {
value: (value / divisor).toString(),
unit,
};
};
export const convertToDecimalTimeUnit = (value: number): FilterData => {
// sort the time units in descending order, then find
// the biggest one that fits the provided value even if it
// has decimal places
const possibleUnits = (Object.keys(timeUnits) as (keyof typeof timeUnits)[])
.map<[number, keyof typeof timeUnits]>((key) => [timeUnits[key]!.value, key])
.sort(([a], [b]) => b - a);
const [divisor = 1, unit] =
possibleUnits.find(([divisor]) => value / divisor >= 1) ||
possibleUnits[possibleUnits.length - 1]!;
return {
value: String(Number((value / divisor).toFixed(3))),
unit,
};
};
export const convertDurationToSingleNumber = (
threshold:
| {
value?: number | string;
unit: string;
}
| string
| number
): number => {
if (typeof threshold === 'number' || typeof threshold === 'string') {
return +threshold;
}
return +(threshold.value || 0) * (timeUnits[threshold.unit]?.value || 0);
};
export function convertToMilliseconds(value: number, unit: string) {
return value * (timeUnits[unit]?.value || 1);
}
const timeUnits: Record<string, {value: number; abbreviation: string; label: string}> = {
millis: {value: 1, abbreviation: 'ms', label: 'milli'},
seconds: {value: 1000, abbreviation: 's', label: 'second'},
minutes: {value: 60 * 1000, abbreviation: 'min', label: 'minute'},
hours: {value: 60 * 60 * 1000, abbreviation: 'h', label: 'hour'},
days: {value: 24 * 60 * 60 * 1000, abbreviation: 'd', label: 'day'},
weeks: {value: 7 * 24 * 60 * 60 * 1000, abbreviation: 'wk', label: 'week'},
months: {value: 30 * 24 * 60 * 60 * 1000, abbreviation: 'm', label: 'month'},
years: {value: 12 * 30 * 24 * 60 * 60 * 1000, abbreviation: 'y', label: 'year'},
};
interface DurationFormattingOptions {
callback: (this: Scale, value: string | number, index: number, ticks: Tick[]) => string;
stepSize: number;
}
export function createDurationFormattingOptions(
targetLine: number | null,
dataMinStep: number,
logScale?: boolean
): DurationFormattingOptions | undefined {
// since the duration is given in milliseconds, chart.js cannot create nice y axis
// ticks. So we define our own set of possible stepSizes and find one that the maximum
// value of the dataset fits into or the maximum target line value if it is defined.
const targetLineMinStep = targetLine ? targetLine : 0;
const minimumStepSize = Math.max(targetLineMinStep, dataMinStep) / 10;
const steps: {value: number; unit: string; base: number}[] = [
{value: 1, unit: 'ms', base: 1},
{value: 10, unit: 'ms', base: 1},
{value: 100, unit: 'ms', base: 1},
{value: 1000, unit: 's', base: 1000},
{value: 1000 * 10, unit: 's', base: 1000},
{value: 1000 * 60, unit: 'min', base: 1000 * 60},
{value: 1000 * 60 * 10, unit: 'min', base: 1000 * 60},
{value: 1000 * 60 * 60, unit: 'h', base: 1000 * 60 * 60},
{value: 1000 * 60 * 60 * 6, unit: 'h', base: 1000 * 60 * 60},
{value: 1000 * 60 * 60 * 24, unit: 'd', base: 1000 * 60 * 60 * 24},
{value: 1000 * 60 * 60 * 24 * 7, unit: 'wk', base: 1000 * 60 * 60 * 24 * 7},
{value: 1000 * 60 * 60 * 24 * 30, unit: 'm', base: 1000 * 60 * 60 * 24 * 30},
{value: 1000 * 60 * 60 * 24 * 30 * 6, unit: 'm', base: 1000 * 60 * 60 * 24 * 30},
{value: 1000 * 60 * 60 * 24 * 30 * 12, unit: 'y', base: 1000 * 60 * 60 * 24 * 30 * 12},
{value: 10 * 1000 * 60 * 60 * 24 * 30 * 12, unit: 'y', base: 1000 * 60 * 60 * 24 * 30 * 12}, //10s of years
{value: 100 * 1000 * 60 * 60 * 24 * 30 * 12, unit: 'y', base: 1000 * 60 * 60 * 24 * 30 * 12}, //100s of years
];
const niceStepSize = steps.find(({value}) => value > minimumStepSize);
if (!niceStepSize) {
return;
}
return {
callback: function (this: Scale, value: string | number, index: number, ticks: Tick[]) {
let durationMs = Number(value);
if (this.type === 'category') {
const labels = this.getLabels();
durationMs = Number(labels[Number(value)]);
}
if (logScale) {
const logValue = Chart.defaults.scales.logarithmic.ticks.callback.call(
this,
value,
index,
ticks
);
if (!logValue) {
return '';
}
}
return +(durationMs / niceStepSize.base).toFixed(2) + niceStepSize.unit;
},
stepSize: niceStepSize.value,
};
}
export function formatFileName(name: string) {
return name.replace(/[^a-zA-Z0-9-_.]/gi, '_').toLowerCase();
}
export function formatTenantName({id, name}: {id?: string | null; name?: string}) {
if (!id) {
return t('common.definitionSelection.tenant.notDefined');
}
if (id === UNAUTHORIZED_TENANT_ID) {
return t('home.sources.unauthorizedTenant');
}
return name || id;
}
``` | /content/code_sandbox/optimize/client/src/modules/services/formatters.tsx | xml | 2016-03-20T03:38:04 | 2024-08-16T19:59:58 | camunda | camunda/camunda | 3,172 | 2,501 |
```xml
type ThemeOptionProps = {
themeName: string;
accentColors: {
light: string;
dark: string;
};
};
export const ThemeOption = ({ themeName, accentColors }: ThemeOptionProps) => {
return (
<div
style={{
display: "flex",
flexDirection: "row",
justifyContent: "flex-start",
alignItems: "center",
gap: 8,
}}
>
<div
style={{
background: `linear-gradient(320deg, ${accentColors.light} 0%, ${accentColors.dark} 100%)`,
height: 16,
width: 16,
borderRadius: "50%",
}}
></div>
{themeName}
</div>
);
};
``` | /content/code_sandbox/src/renderer/Core/Settings/Pages/ThemeOption.tsx | xml | 2016-10-11T04:59:52 | 2024-08-16T11:53:31 | ueli | oliverschwendener/ueli | 3,543 | 164 |
```xml
import configQueries from './configs';
import accountQueries from './accounts';
import fetch from 'node-fetch';
export default {
...configQueries,
...accountQueries,
golomtBankRates: async (_root, _args, _context) => {
try {
return await fetch('path_to_url =>
res.json(),
);
} catch (e) {
console.error(e);
throw new Error(e.message);
}
},
};
``` | /content/code_sandbox/packages/plugin-golomtbank-api/src/graphql/resolvers/queries/index.ts | xml | 2016-11-11T06:54:50 | 2024-08-16T10:26:06 | erxes | erxes/erxes | 3,479 | 96 |
```xml
import React from 'react';
import Chip from '../index';
import { renderWithWrapper } from '../../../.ci/testHelper';
describe('Chip Component', () => {
it.each`
type
${'solid'}
${'outline'}
`('should render $type', ({ type }) => {
const { queryByText } = renderWithWrapper(
<Chip title={type} type={type} />
);
expect(queryByText(type)).not.toBeNull();
});
});
``` | /content/code_sandbox/packages/themed/src/Chip/__tests__/Chip.test.tsx | xml | 2016-09-08T14:21:41 | 2024-08-16T10:11:29 | react-native-elements | react-native-elements/react-native-elements | 24,875 | 102 |
```xml
import { IExtendedSemanticColors } from '../IExtendedSemanticColors';
import { IToggleStyleProps, IToggleStyles } from '@fluentui/react/lib/Toggle';
import * as StyleConstants from '../Constants';
export const ToggleStyles = (props: IToggleStyleProps): Partial<IToggleStyles> => {
const { theme, disabled, checked } = props;
const { semanticColors } = theme;
const extendedSemanticColors = semanticColors as IExtendedSemanticColors;
return {
container: {},
pill: [
{
height: StyleConstants.choiceFieldHeight,
backgroundColor: semanticColors.bodyBackground,
selectors: {
'&:hover': {
backgroundColor: extendedSemanticColors.radioButtonPillUncheckedHover,
},
'&::after': {
outlineColor: `${extendedSemanticColors.ButtonBorderFocus} !important`,
},
},
},
checked && [
{
backgroundColor: extendedSemanticColors.controlAccent,
selectors: {
'&:hover': {
backgroundColor: extendedSemanticColors.radioButtonPillCheckedHover,
},
},
},
disabled && {
backgroundColor: extendedSemanticColors.checkBoxDisabled,
selectors: {
'&:hover': {
backgroundColor: `${extendedSemanticColors.checkBoxDisabled}`,
},
},
},
],
!checked && [
{
backgroundColor: extendedSemanticColors.bodyBackground,
border: `1px solid ${extendedSemanticColors.ButtonBorderFocus} !important`,
selectors: {
'&:hover': {
border: `1px solid ${extendedSemanticColors.buttonTextHovered} !important`,
},
},
},
disabled && {
border: `1px solid ${extendedSemanticColors.checkBoxDisabled} !important`,
selectors: {
'&:hover': {
backgroundColor: extendedSemanticColors.bodyBackground,
border: `1px solid ${extendedSemanticColors.checkBoxDisabled} !important`,
},
},
},
],
],
// toggle circle
thumb: [
{
borderWidth: 5.5,
height: StyleConstants.choiceFieldCircle,
width: StyleConstants.choiceFieldCircle,
},
checked && [
{
backgroundColor: extendedSemanticColors.buttonBackground,
},
disabled && {
backgroundColor: semanticColors.primaryButtonBackgroundDisabled,
},
],
!checked && [
{
backgroundColor: extendedSemanticColors.ButtonBorderFocus,
selectors: {
'&:hover': {
backgroundColor: extendedSemanticColors.buttonTextHovered,
},
},
},
disabled && {
backgroundColor: extendedSemanticColors.checkBoxDisabled,
selectors: {
'&:hover': {
backgroundColor: extendedSemanticColors.checkBoxDisabled,
},
},
},
],
],
root: [
{
fontSize: theme.fonts.medium.fontSize,
selectors: {
'.ms-Toggle-stateText': {
color: semanticColors.bodyText,
},
'&:hover': {
'.ms-Toggle-stateText': {
color: extendedSemanticColors.buttonTextHovered,
},
},
},
},
disabled && {
selectors: {
'.ms-Toggle-stateText': {
color: semanticColors.disabledBodyText,
},
'&:hover': {
'.ms-Toggle-stateText': {
color: semanticColors.disabledBodyText,
},
},
},
},
],
};
};
``` | /content/code_sandbox/packages/azure-themes/src/azure/styles/Toggle.styles.ts | xml | 2016-06-06T15:03:44 | 2024-08-16T18:49:29 | fluentui | microsoft/fluentui | 18,221 | 701 |
```xml
<?xml version="1.0" encoding="utf-8"?>
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file. -->
<selector xmlns:android="path_to_url">
<item android:state_pressed="true" android:drawable="@drawable/btn_new_tab_incognito_pressed" />
<item android:state_selected="true" android:drawable="@drawable/btn_new_tab_incognito_pressed" />
<item android:state_focused="true" android:drawable="@drawable/btn_new_tab_incognito_pressed" />
<item android:drawable="@drawable/btn_new_tab_incognito_normal" />
</selector>
``` | /content/code_sandbox/libraries_res/chrome_res/src/main/res/drawable/btn_new_tab_incognito.xml | xml | 2016-07-04T07:28:36 | 2024-08-15T05:20:42 | AndroidChromium | JackyAndroid/AndroidChromium | 3,090 | 143 |
```xml
<ResourceDictionary xmlns="path_to_url"
xmlns:x="path_to_url"
xmlns:converters="clr-namespace:Dopamine.Converters"
xmlns:utils="clr-namespace:Dopamine.Utils"
xmlns:base="clr-namespace:Dopamine.Core.Base;assembly=Dopamine.Core"
xmlns:pc="clr-namespace:Dopamine.Controls">
<converters:InvertingBooleanConverter x:Key="InvertingBooleanConverter" />
<converters:BooleanToCollapsedConverter x:Key="BooleanToCollapsedConverter" />
<converters:BooleanToVisibilityConverter x:Key="BooleanToVisibilityConverter" />
<converters:InvertingBooleanToVisibilityConverter x:Key="InvertingBooleanToVisibilityConverter" />
<converters:AddEllipsisConverter x:Key="AddEllipsisConverter" />
<!-- ContextMenu -->
<ContextMenu x:Key="ListBoxTracksContextMenu" x:Shared="False">
<ContextMenu.Resources>
<utils:BindingProxy x:Key="NewPlaylistProxy" Data="{DynamicResource Language_New_Playlist}"/>
<CollectionViewSource x:Key="PlaylistsDataSource" Source="{Binding DataContext.ContextMenuPlaylists, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}}"/>
</ContextMenu.Resources>
<MenuItem Header="{DynamicResource Language_View_In_Explorer}" InputGestureText="{DynamicResource Language_Ctrl_E}" Command="{Binding ViewInExplorerCommand, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}}"/>
<MenuItem Header="{DynamicResource Language_Jump_To_Playing_Song}" InputGestureText="{DynamicResource Language_Ctrl_J}" Command="{Binding JumpToPlayingTrackCommand, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}}"/>
<Separator/>
<MenuItem
InputGestureText=""
Command="{Binding DataContext.EditTracksCommand, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}}">
<MenuItem.Header>
<StackPanel Orientation="Horizontal">
<TextBlock Text="{DynamicResource Language_Edit}"/>
<pc:SyncRing Width="11" Margin="15,0,0,0" VerticalAlignment="Center" Visibility="{Binding DataContext.IsIndexing, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}, Converter={StaticResource BooleanToVisibilityConverter}}"/>
</StackPanel>
</MenuItem.Header>
</MenuItem>
<Separator/>
<MenuItem Header="{DynamicResource Language_Play_Selected}" InputGestureText="" Command="{Binding DataContext.PlaySelectedCommand, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}}"/>
<MenuItem Header="{DynamicResource Language_Play_Next}" InputGestureText="" Command="{Binding DataContext.PlayNextCommand, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}}"/>
<MenuItem Header="{DynamicResource Language_Add_To_Now_Playing}" InputGestureText="" Command="{Binding DataContext.AddTracksToNowPlayingCommand, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}}"/>
<MenuItem Header="{DynamicResource Language_Add_To_Playlist}" DisplayMemberPath="Name">
<MenuItem.ItemContainerStyle>
<Style TargetType="MenuItem">
<Setter Property="Command" Value="{Binding DataContext.AddTracksToPlaylistCommand, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}}" />
<Setter Property="CommandParameter" Value="{Binding Name}"/>
</Style>
</MenuItem.ItemContainerStyle>
<MenuItem.ItemsSource>
<CompositeCollection>
<MenuItem Header="{Binding Source={StaticResource NewPlaylistProxy}, Path=Data, Converter={StaticResource AddEllipsisConverter}}"/>
<Separator/>
<CollectionContainer Collection="{Binding Source={StaticResource PlaylistsDataSource}}"/>
</CompositeCollection>
</MenuItem.ItemsSource>
</MenuItem>
<Separator/>
<MenuItem Header="{DynamicResource Language_Search_Online}" ItemsSource="{Binding DataContext.ContextMenuSearchProviders, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}}" DisplayMemberPath="Name" IsEnabled="{Binding DataContext.HasContextMenuSearchProviders, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}}">
<MenuItem.ItemContainerStyle>
<Style TargetType="MenuItem">
<Setter Property="Foreground" Value="{DynamicResource Brush_ContextMenuText}" />
<Setter Property="Command" Value="{Binding DataContext.SearchOnlineCommand, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}}"/>
<Setter Property="CommandParameter" Value="{Binding Id}"/>
</Style>
</MenuItem.ItemContainerStyle>
</MenuItem>
<Separator/>
<MenuItem
InputGestureText="{DynamicResource Language_Key_Del}"
Command="{Binding DataContext.RemoveSelectedTracksCommand, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}}">
<MenuItem.Header>
<StackPanel Orientation="Horizontal">
<TextBlock Text="{DynamicResource Language_Remove}"/>
<pc:SyncRing Width="11" Margin="15,0,0,0" VerticalAlignment="Center" Visibility="{Binding DataContext.IsIndexing, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}, Converter={StaticResource BooleanToVisibilityConverter}}"/>
</StackPanel>
</MenuItem.Header>
</MenuItem>
<MenuItem>
<MenuItem.Command>
<Binding Path="DataContext.RemoveSelectedTracksFromDiskCommand" RelativeSource="{RelativeSource FindAncestor, AncestorType={x:Type UserControl}}"/>
</MenuItem.Command>
<MenuItem.Visibility>
<Binding Path="DataContext.ShowRemoveFromDisk" RelativeSource="{RelativeSource FindAncestor, AncestorType={x:Type UserControl}}" Converter="{StaticResource BooleanToCollapsedConverter}" UpdateSourceTrigger="PropertyChanged" Mode="OneWay"/>
</MenuItem.Visibility>
<MenuItem.Header>
<StackPanel Orientation="Horizontal">
<TextBlock Text="{DynamicResource Language_Remove_From_Disk}"/>
<pc:SyncRing Width="11" Margin="15,0,0,0" VerticalAlignment="Center" Visibility="{Binding DataContext.IsIndexing, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}, Converter={StaticResource BooleanToVisibilityConverter}}"/>
</StackPanel>
</MenuItem.Header>
</MenuItem>
<Separator/>
<MenuItem Header="{DynamicResource Language_Add_To_Blacklist}" InputGestureText="" Command="{Binding DataContext.AddToBlacklistCommand, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}}"/>
<Separator/>
<MenuItem Header="{DynamicResource Language_Information}" InputGestureText="" Command="{Binding DataContext.ShowSelectedTrackInformationCommand, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}}"/>
</ContextMenu>
<!-- GroupItem -->
<Style x:Key="TracksHeader" TargetType="{x:Type GroupItem}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate>
<Border Width="{Binding Path=ActualWidth, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType={x:Type ScrollContentPresenter}}}" Background="#00000000">
<StackPanel Margin="0,0,0,15">
<StackPanel>
<TextBlock Text="{Binding GroupHeader}"
DataContext="{Binding Items}"
Margin="10,5,10,0"
HorizontalAlignment="Stretch"
FontSize="20"
FontWeight="Light"
TextTrimming="CharacterEllipsis"
Foreground="{DynamicResource Brush_PrimaryText}"/>
<TextBlock Text="{Binding GroupSubHeader}"
DataContext="{Binding Items}"
Margin="10,0,10,10"
HorizontalAlignment="Stretch"
TextTrimming="CharacterEllipsis"
Foreground="{DynamicResource Brush_SecondaryText}"/>
</StackPanel>
<ItemsPresenter HorizontalAlignment="Stretch"/>
</StackPanel>
<Border.ToolTip>
<ToolTip>
<StackPanel>
<TextBlock Text="{Binding GroupHeader}"
DataContext="{Binding Items}"
FontWeight="Bold"/>
<TextBlock Text="{Binding GroupSubHeader}"
DataContext="{Binding Items}" />
</StackPanel>
</ToolTip>
</Border.ToolTip>
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<!-- ListBoxItem -->
<Style x:Key="ListBoxTracksItem" TargetType="{x:Type ListBoxItem}">
<Setter Property="ContextMenu" Value="{StaticResource ListBoxTracksContextMenu}"/>
<Setter Property="FocusVisualStyle" Value="{x:Null}" />
<Setter Property="Margin" Value="0,0,0,2" />
<Setter Property="HorizontalAlignment" Value="Stretch" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type ListBoxItem}">
<Grid>
<Border x:Name="MouseHoverHelper" Height="32" Background="{DynamicResource Brush_ItemHovered}" Opacity="0"/>
<Border Background="{TemplateBinding Background}"
Width="{Binding Path=ActualWidth, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType={x:Type ScrollContentPresenter}}}">
<DockPanel Height="32" Margin="10,0,10,0">
<DockPanel.ToolTip>
<ToolTip>
<StackPanel>
<TextBlock Text="{Binding TrackTitle}" FontWeight="Bold"/>
<TextBlock Text="{Binding ArtistName}"/>
</StackPanel>
</ToolTip>
</DockPanel.ToolTip>
<TextBlock x:Name="TrackNumber"
DockPanel.Dock="Left" Margin="0,0,5,0"
Visibility="{Binding ShowTrackNumber, Converter={StaticResource BooleanToCollapsedConverter}}"
Text="{Binding FormattedTrackNumber}"
VerticalAlignment="Center"
FontSize="13"
MinWidth="17"
Foreground="{DynamicResource Brush_SecondaryText}"/>
<DockPanel>
<StackPanel Orientation="Horizontal" DockPanel.Dock="Right">
<Label Style="{DynamicResource PlaybackIndicator}"
Visibility="{Binding IsPlaying, Converter={StaticResource BooleanToCollapsedConverter}, UpdateSourceTrigger=PropertyChanged, Mode=OneWay}"
IsHitTestVisible="{Binding IsPaused, Converter={StaticResource InvertingBooleanConverter}, UpdateSourceTrigger=PropertyChanged, Mode=OneWay}"
Foreground="{DynamicResource Brush_Accent}"
Margin="10,0,10,0"
VerticalAlignment="Center"/>
<pc:RatingButton
VerticalAlignment="Center"
Visibility="{Binding DataContext.EnableRating,UpdateSourceTrigger=PropertyChanged, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}},Converter={StaticResource BooleanToCollapsedConverter}}"
Rating="{Binding Rating, UpdateSourceTrigger=PropertyChanged, Mode=TwoWay}"
Foreground="{DynamicResource Brush_PrimaryText}"/>
<pc:LoveButton
Margin="10,0,0,0"
VerticalAlignment="Center"
Foreground="{DynamicResource Brush_PrimaryText}"
SelectedForeground="{DynamicResource Brush_Accent}"
Visibility="{Binding DataContext.EnableLove,UpdateSourceTrigger=PropertyChanged, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}},Converter={StaticResource BooleanToCollapsedConverter}}"
Love="{Binding Love, UpdateSourceTrigger=PropertyChanged, Mode=TwoWay}"/>
<TextBlock
Width="60"
Text="{Binding Duration}"
Foreground="{DynamicResource Brush_SecondaryText}"
TextAlignment="Right"
FontSize="13"
VerticalAlignment="Center"/>
</StackPanel>
<TextBlock Text="{Binding TrackTitle}"
Foreground="{DynamicResource Brush_PrimaryText}"
VerticalAlignment="Center"
HorizontalAlignment="Stretch"
TextTrimming="CharacterEllipsis"
Margin="2,0,0,0"
FontSize="13"/>
</DockPanel>
</DockPanel>
</Border>
</Grid>
<ControlTemplate.Triggers>
<Trigger Property="IsSelected" Value="True">
<Setter Property="Background" Value="{DynamicResource Brush_ItemSelected}"/>
</Trigger>
<EventTrigger RoutedEvent="MouseEnter">
<BeginStoryboard>
<Storyboard Storyboard.TargetName="MouseHoverHelper" TargetProperty="Opacity">
<DoubleAnimation To="1" Duration="{x:Static base:Constants.MouseEnterDuration}"/>
</Storyboard>
</BeginStoryboard>
</EventTrigger>
<EventTrigger RoutedEvent="MouseLeave">
<BeginStoryboard>
<Storyboard Storyboard.TargetName="MouseHoverHelper" TargetProperty="Opacity">
<DoubleAnimation To="0" Duration="{x:Static base:Constants.MouseLeaveDuration}"/>
</Storyboard>
</BeginStoryboard>
</EventTrigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<!-- ListBox -->
<Style x:Key="ListBoxTracks" TargetType="{x:Type ListBox}">
<Setter Property="FocusVisualStyle" Value="{x:Null}" />
<Setter Property="ItemContainerStyle" Value="{StaticResource ListBoxTracksItem}" />
<Setter Property="HorizontalContentAlignment" Value="Stretch" />
<Setter Property="Background" Value="Transparent"/>
<Setter Property="ScrollViewer.VerticalScrollBarVisibility" Value="Auto" />
<Setter Property="ScrollViewer.HorizontalScrollBarVisibility" Value="Hidden" />
</Style>
</ResourceDictionary>
``` | /content/code_sandbox/Dopamine/Resources/Styles/ListBoxTracks.xaml | xml | 2016-07-13T21:34:42 | 2024-08-15T03:30:43 | dopamine-windows | digimezzo/dopamine-windows | 1,786 | 2,900 |
```xml
import { MicrosecondsTimestamp } from '@standardnotes/common'
export type IntegrityPayload = {
uuid: string
updated_at_timestamp: MicrosecondsTimestamp
}
``` | /content/code_sandbox/packages/responses/src/Domain/Item/IntegrityPayload.ts | xml | 2016-12-05T23:31:33 | 2024-08-16T06:51:19 | app | standardnotes/app | 5,180 | 34 |
```xml
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="path_to_url">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{6863544A-0CE8-4CA9-A132-74116FD9D9BB}</ProjectGuid>
<Keyword>Win32Proj</Keyword>
<RootNamespace>doubleconversion</RootNamespace>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v120</PlatformToolset>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v120</PlatformToolset>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v120</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v120</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings">
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<OutDir>$(SolutionDir)$(Configuration)\$(Platform)\</OutDir>
<IntDir>$(SolutionDir)$(Configuration)\$(Platform)\intermediate\</IntDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<OutDir>$(SolutionDir)$(Configuration)\$(Platform)\</OutDir>
<IntDir>$(SolutionDir)$(Configuration)\$(Platform)\intermediate\</IntDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<OutDir>$(SolutionDir)$(Configuration)\$(Platform)\</OutDir>
<IntDir>$(SolutionDir)$(Configuration)\$(Platform)\intermediate\</IntDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<OutDir>$(SolutionDir)$(Configuration)\$(Platform)\</OutDir>
<IntDir>$(SolutionDir)$(Configuration)\$(Platform)\intermediate\</IntDir>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
<PrecompiledHeader>
</PrecompiledHeader>
<WarningLevel>Level3</WarningLevel>
<Optimization>Disabled</Optimization>
<PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<SDLCheck>true</SDLCheck>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<ClCompile>
<PrecompiledHeader>
</PrecompiledHeader>
<WarningLevel>Level3</WarningLevel>
<Optimization>Disabled</Optimization>
<PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<SDLCheck>true</SDLCheck>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<PrecompiledHeader>
</PrecompiledHeader>
<Optimization>MaxSpeed</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<SDLCheck>true</SDLCheck>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<PrecompiledHeader>
</PrecompiledHeader>
<Optimization>MaxSpeed</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<SDLCheck>true</SDLCheck>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="..\double-conversion\bignum.cc" />
<ClCompile Include="..\double-conversion\bignum-dtoa.cc" />
<ClCompile Include="..\double-conversion\cached-powers.cc" />
<ClCompile Include="..\double-conversion\double-to-string.cc" />
<ClCompile Include="..\double-conversion\fast-dtoa.cc" />
<ClCompile Include="..\double-conversion\fixed-dtoa.cc" />
<ClCompile Include="..\double-conversion\string-to-double.cc" />
<ClCompile Include="..\double-conversion\strtod.cc" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\double-conversion\bignum.h" />
<ClInclude Include="..\double-conversion\cached-powers.h" />
<ClInclude Include="..\double-conversion\diy-fp.h" />
<ClInclude Include="..\double-conversion\double-conversion.h" />
<ClInclude Include="..\double-conversion\double-to-string.h" />
<ClInclude Include="..\double-conversion\fast-dtoa.h" />
<ClInclude Include="..\double-conversion\fixed-dtoa.h" />
<ClInclude Include="..\double-conversion\ieee.h" />
<ClInclude Include="..\double-conversion\string-to-double.h" />
<ClInclude Include="..\double-conversion\strtod.h" />
<ClInclude Include="..\double-conversion\utils.h" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>
``` | /content/code_sandbox/vendor/double-conversion/upstream/msvc/double-conversion.vcxproj | xml | 2016-01-08T02:42:32 | 2024-08-16T18:14:55 | icu | unicode-org/icu | 2,693 | 2,164 |
```xml
import { KubernetesApplication } from '../application/models';
import { KubernetesResourcePool } from '../resource-pool/models';
import { PersistentVolumeClaim } from './PersistentVolumeClaim';
type VolumeResourcePool = ReturnType<typeof KubernetesResourcePool>;
export class Volume {
ResourcePool: VolumeResourcePool = {} as VolumeResourcePool;
PersistentVolumeClaim: PersistentVolumeClaim = {} as PersistentVolumeClaim;
Applications: KubernetesApplication[] = [];
}
``` | /content/code_sandbox/app/kubernetes/models/volume/Volume.ts | xml | 2016-05-19T20:15:28 | 2024-08-16T19:15:14 | portainer | portainer/portainer | 30,083 | 89 |
```xml
import clsx from 'clsx';
import React, { ReactElement, ReactNode, useEffect, useState } from 'react';
import { usePopper } from 'react-popper';
import { EmojiPluginStore, EmojiPluginTheme, PopperOptions } from '../../index';
export interface PopoverProps {
store: EmojiPluginStore;
children: ReactNode;
popperOptions?: PopperOptions;
theme: EmojiPluginTheme;
}
export default function Popover({
store,
children,
theme,
popperOptions = { placement: 'bottom-start' },
}: PopoverProps): ReactElement {
const [className, setClassName] = useState(() =>
clsx(theme.emojiSuggestions)
);
const [popperElement, setPopperElement] = useState<HTMLElement | null>(null);
const { styles, attributes } = usePopper(
store.getReferenceElement(),
popperElement,
popperOptions
);
useEffect(() => {
requestAnimationFrame(() => setClassName(clsx(theme.emojiSuggestions)));
}, [theme]);
return (
<div
ref={setPopperElement}
style={styles.popper}
{...attributes.popper}
className={className}
role="listbox"
>
{children}
</div>
);
}
``` | /content/code_sandbox/packages/emoji/src/components/EmojiSuggestions/Popover.tsx | xml | 2016-02-26T09:54:56 | 2024-08-16T18:16:31 | draft-js-plugins | draft-js-plugins/draft-js-plugins | 4,087 | 278 |
```xml
<?xml version="1.0" encoding="utf-8"?>
<!--
~
~
~ path_to_url
~
~ Unless required by applicable law or agreed to in writing, software
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-->
<androidx.coordinatorlayout.widget.CoordinatorLayout
xmlns:android="path_to_url"
xmlns:app="path_to_url"
xmlns:tools="path_to_url"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<include layout="@layout/design_content_appbar_toolbar_collapse_pin"/>
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|right"
android:clickable="true"
app:layout_insetEdge="right"
app:srcCompat="@drawable/vector_icon"
tools:ignore="RtlHardcoded"/>
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/fab2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|right"
android:clickable="true"
app:layout_dodgeInsetEdges="right"
app:srcCompat="@drawable/vector_icon"
tools:ignore="RtlHardcoded"/>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
``` | /content/code_sandbox/testing/java/com/google/android/material/testapp/res/layout/design_appbar_dodge_right.xml | xml | 2016-12-05T16:11:29 | 2024-08-16T17:51:42 | material-components-android | material-components/material-components-android | 16,176 | 337 |
```xml
<Page
x:Class="IntelligentKioskSample.Views.VisualAlert.VisualAlertBuilderPage"
xmlns="path_to_url"
xmlns:x="path_to_url"
xmlns:local="using:IntelligentKioskSample.Views.VisualAlert"
xmlns:ctl="using:IntelligentKioskSample.Controls"
xmlns:d="path_to_url"
xmlns:mc="path_to_url"
mc:Ignorable="d"
SizeChanged="OnPageSizeChanged"
x:Name="mainPage"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<Page.Resources>
<SolidColorBrush x:Key="GrayColor" Color="White" Opacity="0.6" />
<ctl:ReverseVisibilityConverter x:Key="reverseVisibilityConverter"/>
</Page.Resources>
<Grid EntranceNavigationTransitionInfo.IsTargetElement="True">
<Grid.RowDefinitions>
<RowDefinition Height="auto" />
<RowDefinition />
</Grid.RowDefinitions>
<CommandBar x:Name="commandBar" Style="{StaticResource PageTitleCommandBarStyle}">
<CommandBar.Content>
<TextBlock Text="Visual Alert Builder" Style="{ThemeResource PageTitleTextBlockStyle}"/>
</CommandBar.Content>
</CommandBar>
<Grid Grid.Row="1" ColumnSpacing="12" Margin="24,30,0,0">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="0.3*" MinWidth="220"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<!-- Left panel: models -->
<Grid Grid.Column="0" VerticalAlignment="Stretch">
<!-- New alert wizard steps -->
<Grid x:Name="newAlertGrid">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition/>
</Grid.RowDefinitions>
<StackPanel Spacing="14">
<TextBlock Text="New Alert" Style="{StaticResource SubtitleTextBlockStyle}"/>
<ctl:LifecycleControl x:Name="lifecycleControl" StepCollection="{Binding LifecycleStepCollection}"/>
</StackPanel>
<Button Grid.Row="1" VerticalAlignment="Bottom" Background="Transparent" Margin="0,0,0,40" Click="OnCancelNewAlert">
<StackPanel Orientation="Horizontal" Spacing="8">
<SymbolIcon Symbol="Cancel"/>
<TextBlock Text="Cancel new alert"/>
</StackPanel>
</Button>
</Grid>
<!-- Alert list -->
<StackPanel x:Name="scenarioListPanel" Spacing="6">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition Width="Auto"/>
</Grid.ColumnDefinitions>
<TextBlock Text="Alerts" Style="{StaticResource SubtitleTextBlockStyle}"/>
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right" Spacing="6">
<Button x:Name="deleteButton" Background="Transparent" HorizontalAlignment="Right" Click="OnDeleteScenariosButtonClicked" Visibility="Collapsed">
<FontIcon FontFamily="Segoe MDL2 Assets" Glyph=""/>
</Button>
<Button Background="Transparent" HorizontalAlignment="Right" Click="OnEditScenarioListButtonClicked">
<FontIcon FontFamily="Segoe MDL2 Assets" Glyph=""/>
</Button>
</StackPanel>
</Grid>
<ListView x:Name="scenarioListView" SelectionMode="Single" Margin="12,22,0,0"
ItemsSource="{Binding ScenarioCollection}" SelectionChanged="OnScenarioListViewSelectionChanged">
<ListView.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding Name}"/>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
<Grid x:Name="newAlertStatusGrid" Visibility="Collapsed" RowSpacing="6">
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<StackPanel Orientation="Horizontal" Spacing="6" Margin="24,6,0,0">
<TextBlock x:Name="alertNameTextBlock" Foreground="{StaticResource GrayColor}" />
<TextBlock x:Name="alertStatusTextBlock" Foreground="{StaticResource GrayColor}" />
</StackPanel>
<ProgressBar Grid.Row="1" x:Name="newAlertProgressBar" Background="#0078D7" HorizontalAlignment="Stretch" ShowPaused="False" ShowError="False"/>
</Grid>
<Button x:Name="newAlertButton" Foreground="#0078D7" Background="Transparent" Margin="12,20,0,0" Click="OnNewAlertButtonClicked">
<StackPanel Orientation="Horizontal" Spacing="12">
<SymbolIcon Symbol="Add"/>
<TextBlock Text="New alert"/>
</StackPanel>
</Button>
</StackPanel>
</Grid>
<!-- Camera control, builder wizard and result grid -->
<Grid x:Name="centralGrid" Grid.Column="1" VerticalAlignment="Stretch" HorizontalAlignment="Stretch">
<Grid.RowDefinitions>
<RowDefinition Height="7*" MinHeight="250"/>
<RowDefinition Height="3*"/>
<RowDefinition Height="200"/>
</Grid.RowDefinitions>
<Border x:Name="webCamHostGridParent" Grid.Row="0" Grid.RowSpan="2" HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
<Grid x:Name="webCamHostGrid">
<ctl:CameraControl x:Name="cameraControl" FlowDirection="LeftToRight" ImageCaptured="OnCameraPhotoCaptured" ContinuousCaptured="OnCameraContinuousPhotoCaptured"/>
</Grid>
</Border>
<Grid Grid.Row="0" Grid.RowSpan="2" Name="cameraGuideCountdownHost" Visibility="Collapsed">
<Grid.RowDefinitions>
<RowDefinition Height="0.05*"/>
<RowDefinition/>
<RowDefinition Height="0.2*"/>
</Grid.RowDefinitions>
<Viewbox Grid.Row="1">
<TextBlock Name="countDownTextBlock" Foreground="White" FontWeight="Bold" Opacity="0.9"/>
</Viewbox>
</Grid>
<local:VisualAlertBuilderWizardControl Grid.Row="1" Grid.RowSpan="2" x:Name="visualAlertBuilderWizardControl" MinWidth="500"
WizardStepChanged="OnBuilderWizardControlStepChanged"
WizardCompleted="OnBuilderWizardControlCompleted"/>
<Grid x:Name="resultGrid" Grid.Row="2" Grid.RowSpan="1" Margin="0,26,0,0" MinWidth="500" VerticalAlignment="Top"
Visibility="{Binding ElementName=visualAlertBuilderWizardControl, Path=Visibility, Converter={StaticResource reverseVisibilityConverter}}">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<StackPanel Orientation="Horizontal" Spacing="18" VerticalAlignment="Top">
<FontIcon x:Name="alertIcon" FontFamily="Segoe MDL2 Assets" Glyph="" FontSize="46" Visibility="Collapsed"/>
<TextBlock x:Name="alertTextBlock" Style="{StaticResource HeaderTextBlockStyle}" Foreground="White" VerticalAlignment="Center"/>
</StackPanel>
<TextBlock Grid.Column="1" x:Name="alertProbability" Style="{StaticResource SubheaderTextBlockStyle}" Margin="12,6,0,0"
VerticalAlignment="Center" Foreground="{StaticResource GrayColor}" Visibility="Collapsed"/>
<TextBlock Grid.Column="2" x:Name="fpsTextBlock" Style="{StaticResource SubheaderTextBlockStyle}"
HorizontalAlignment="Right" VerticalAlignment="Center" Foreground="{StaticResource GrayColor}"/>
</Grid>
</Grid>
</Grid>
<ProgressRing x:Name="progressRing" Grid.Row="1" Width="100" Height="100" Foreground="White"/>
</Grid>
</Page>
``` | /content/code_sandbox/Kiosk/Views/VisualAlert/VisualAlertBuilderPage.xaml | xml | 2016-06-09T17:19:24 | 2024-07-17T02:43:08 | Cognitive-Samples-IntelligentKiosk | microsoft/Cognitive-Samples-IntelligentKiosk | 1,049 | 1,727 |
```xml
import withProps from 'shared/utils/react/withProps';
import SimpleKeyValuesColumn from '../shared/SimpleKeyValuesColumn/SimpleKeyValuesColumn';
const MetricsColumn = withProps(SimpleKeyValuesColumn)({ type: 'metrics' });
export default MetricsColumn;
``` | /content/code_sandbox/webapp/client/src/features/experimentRuns/view/ExperimentRuns/Table/ColumnDefinitions/Metrics/MetricsColumn.tsx | xml | 2016-10-19T01:07:26 | 2024-08-14T03:53:55 | modeldb | VertaAI/modeldb | 1,689 | 56 |
```xml
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<AssemblyName>Volo.Abp.Identity.AspNetCore.Tests</AssemblyName>
<PackageId>Volo.Abp.Identity.AspNetCore.Tests</PackageId>
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<RootNamespace />
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\..\framework\src\Volo.Abp.AspNetCore.TestBase\Volo.Abp.AspNetCore.TestBase.csproj" />
<ProjectReference Include="..\..\..\..\framework\src\Volo.Abp.AspNetCore.Mvc\Volo.Abp.AspNetCore.Mvc.csproj" />
<ProjectReference Include="..\..\src\Volo.Abp.Identity.AspNetCore\Volo.Abp.Identity.AspNetCore.csproj" />
<ProjectReference Include="..\Volo.Abp.Identity.Domain.Tests\Volo.Abp.Identity.Domain.Tests.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" />
</ItemGroup>
</Project>
``` | /content/code_sandbox/modules/identity/test/Volo.Abp.Identity.AspNetCore.Tests/Volo.Abp.Identity.AspNetCore.Tests.csproj | xml | 2016-12-03T22:56:24 | 2024-08-16T16:24:05 | abp | abpframework/abp | 12,657 | 265 |
```xml
/**
*/
import { ConfigAPI, types } from '@babel/core';
/** Prevent importing certain known imports in given environments. This is for sanity to ensure a module never accidentally gets imported unexpectedly. */
export declare function environmentRestrictedImportsPlugin(api: ConfigAPI & {
types: typeof types;
}): babel.PluginObj;
``` | /content/code_sandbox/packages/babel-preset-expo/build/environment-restricted-imports.d.ts | xml | 2016-08-15T17:14:25 | 2024-08-16T19:54:44 | expo | expo/expo | 32,004 | 64 |
```xml
import * as React from 'react';
import * as ReactDom from 'react-dom';
import {
IPropertyPaneField,
PropertyPaneFieldType
} from '@microsoft/sp-webpart-base';
import { IPropertyPaneLoggingFieldProps } from './IPropertyPaneLoggingFieldProps';
import PropertyPaneLoggingFieldHost, { IPropertyPaneLoggingFieldHostProps } from './PropertyPaneLoggingFieldHost';
export interface IPropertyPaneLoggingFieldPropsInternal extends IPropertyPaneLoggingFieldProps {
onRender(elem: HTMLElement): void;
onDispose(elem: HTMLElement): void;
}
class PropertyPaneLoggingFieldBuilder implements IPropertyPaneField<IPropertyPaneLoggingFieldPropsInternal> {
// Properties defined by IPropertyPaneField
public type: PropertyPaneFieldType = PropertyPaneFieldType.Custom;
public targetProperty: string = undefined;
public properties: IPropertyPaneLoggingFieldPropsInternal;
// Logging properties
private label: string;
private description: string;
private value: any;
private retrieve: Function;
public constructor(props: IPropertyPaneLoggingFieldPropsInternal) {
this.properties = props;
this.properties.onDispose = this.dispose;
this.properties.onRender = this.render;
this.label = props.label;
this.value = props.value;
this.description = props.description;
this.retrieve = props.retrieve;
}
/**
* @function
* Render the logging element
*/
private render(elm: HTMLElement): void {
// Construct the JSX properties
const element: React.ReactElement<IPropertyPaneLoggingFieldHostProps> = React.createElement(PropertyPaneLoggingFieldHost, {
label: this.label,
value: this.value,
description: this.description,
retrieve: this.retrieve,
onDispose: this.dispose,
onRender: this.render
});
// Calls the REACT content generator
ReactDom.render(element, elm);
}
/**
* @function
* Disposes the current object
*/
private dispose(elem: HTMLElement): void {}
}
export function PropertyPaneLoggingField(properties: IPropertyPaneLoggingFieldProps): IPropertyPaneField<IPropertyPaneLoggingFieldPropsInternal> {
// Create an internal properties object from the given properties
var newProperties: IPropertyPaneLoggingFieldPropsInternal = {
label: properties.label,
description: properties.description,
value: properties.value,
retrieve: properties.retrieve,
onDispose: null,
onRender: null
};
// Calles the PropertyPaneLoggingField builder object
// This object will simulate a PropertyFieldCustom to manage his rendering process
return new PropertyPaneLoggingFieldBuilder(newProperties);
}
``` | /content/code_sandbox/samples/react-search/src/webparts/searchSpfx/PropertyPaneControls/PropertyPaneLoggingField.ts | xml | 2016-08-30T17:21:43 | 2024-08-16T18:41:32 | sp-dev-fx-webparts | pnp/sp-dev-fx-webparts | 2,027 | 555 |
```xml
export { default } from './TextField';
``` | /content/code_sandbox/packages/ui-components/src/components/TextField/index.ts | xml | 2016-04-15T16:21:12 | 2024-08-16T09:38:01 | verdaccio | verdaccio/verdaccio | 16,189 | 9 |
```xml
<resources>
<dimen name="fab_margin">16dp</dimen>
</resources>
``` | /content/code_sandbox/examples/demo-pure-native-android/app/src/main/res/values/dimens.xml | xml | 2016-06-15T11:58:01 | 2024-08-15T14:32:02 | Detox | wix/Detox | 11,111 | 22 |
```xml
// src/index.ts
let directions = [Directions.Up, Directions.Down, Directions.Left, Directions.Right];
``` | /content/code_sandbox/examples/declaration-files/08-declare-enum/src/index.ts | xml | 2016-05-11T03:02:41 | 2024-08-16T12:59:57 | typescript-tutorial | xcatliu/typescript-tutorial | 10,361 | 22 |
```xml
function foo () {
return class {
static foo = 1;
static {
const c = class {
static bar = 2;
static {
// do
}
}
}
}
}
``` | /content/code_sandbox/tests/format/typescript/static-blocks/nested.ts | xml | 2016-11-29T17:13:37 | 2024-08-16T17:29:57 | prettier | prettier/prettier | 48,913 | 48 |
```xml
export enum VerificationType {
MasterPassword = 0,
OTP = 1,
PIN = 2,
Biometrics = 3,
}
``` | /content/code_sandbox/libs/common/src/auth/enums/verification-type.ts | xml | 2016-03-09T23:14:01 | 2024-08-16T15:07:51 | clients | bitwarden/clients | 8,877 | 33 |
```xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="colorPrimary">#3F51B5</color>
<color name="colorPrimaryDark">#303F9F</color>
<color name="colorAccent">#FF4081</color>
<color name="window_background">#FF27292A</color>
<color name="blue">#FF35B5E5</color>
<color name="blue_pressed">#FF0099CC</color>
<color name="green">#FF99CC00</color>
<color name="green_pressed">#FF669900</color>
<color name="purple">#FFAA66CC</color>
<color name="purple_pressed">#FF9933CC</color>
<color name="red">#FFFF4444</color>
<color name="red_pressed">#FFCC0000</color>
<color name="yellow">#FFFFBB33</color>
<color name="yellow_pressed">#FFFF8800</color>
</resources>
``` | /content/code_sandbox/app/src/main/res/values/colors.xml | xml | 2016-12-06T06:43:32 | 2024-07-11T05:40:17 | SopCastComponent | LaiFeng-Android/SopCastComponent | 2,478 | 225 |
```xml
/*
*
* This source code is licensed under the MIT license which is detailed in the LICENSE.txt file.
*/
import { performance } from "node:perf_hooks";
import { ArrayKeyTrie } from "./ArrayKeyTrie.js";
import { TripleKeyMap } from "./TripleKeyMap.js";
import { PairKeyMap } from "./PairKeyMap.js";
const NUMBER_OF_KEYS = 20480;
const NUMBER_OF_LOOPS = 200;
const log = console.log.bind(console);
function random32bit(): number {
return Math.random() * 0xffffffff;
}
function generateData(): number[][] {
const data: number[][] = [];
for (let i=0; i<NUMBER_OF_KEYS; i++) {
data.push([random32bit(), random32bit(), random32bit()]);
}
return data;
}
function timeIt(name: string, func: Function): void {
const start = performance.now();
for (let i=0; i<NUMBER_OF_LOOPS; i++) {
func();
}
const end = performance.now();
const duration = (end - start) / NUMBER_OF_LOOPS;
log(`'${name}' took ${duration}ms per loop`);
}
test(`Speed test`, done => {
const trie = new ArrayKeyTrie<number>();
const data = generateData();
const tripleMap = new TripleKeyMap<number, number, number, number>();
const pairMap = new PairKeyMap<number, number, number>();
for (const key of data) {
trie.set(key, key[0]);
tripleMap.set(key[0], key[1], key[2], key[0]);
pairMap.set(key[0], key[1], key[0]);
}
timeIt("ArrayKeyTrie", () => {
let total = 0;
for (const key of data) {
const value = trie.get(key);
total += value;
}
// log(total);
});
timeIt("TripleNumberKeyMap", () => {
let total = 0;
for (const key of data) {
const value = tripleMap.get(key[0], key[1], key[2]);
total += value;
}
// log(total);
});
timeIt("PairNumberKeyMap", () => {
let total = 0;
for (const key of data) {
const value = pairMap.get(key[0], key[1]);
total += value;
}
// log(total);
});
done();
});
``` | /content/code_sandbox/packages/extraterm-data-structures/src/SpeedTest.jest.ts | xml | 2016-03-04T12:39:59 | 2024-08-16T18:44:37 | extraterm | sedwards2009/extraterm | 2,501 | 541 |
```xml
<run>
<precisionModel type="FLOATING"/>
<resultMatcher>com.vividsolutions.jtstest.testrunner.BufferResultMatcher</resultMatcher>
<case>
<desc>
Bug report test case from Safe Software.
See path_to_url
</desc>
<a>
POLYGON ((99736.4572496327 -2239219.11305743, 99736.6573549178 -2239219.11305743, 99736.6573549178 -2239219.01300479, 99736.5573022753 -2239219.01300479, 99736.5573022753 -2239218.8128995, 99736.6573549178 -2239218.8128995, 99736.6573549178 -2239218.91295215, 99736.7574075604 -2239218.91295215, 99736.7574075604 -2239219.01300479, 99736.8574602029 -2239219.01300479, 99736.8574602029 -2239219.11305743, 99736.9575128455 -2239219.11305743, 99736.9575128455 -2239219.21311007, 99737.057565488 -2239219.21311007, 99737.057565488 -2239219.01300479, 99737.2576707731 -2239219.01300479, 99737.2576707731 -2239219.11305743, 99737.4577760582 -2239219.11305743, 99737.4577760582 -2239219.01300479, 99737.958039271 -2239219.01300479, 99737.958039271 -2239218.91295215, 99738.0580919136 -2239218.91295215, 99738.0580919136 -2239218.51274158, 99738.1581445561 -2239218.51274158, 99738.1581445561 -2239218.61279422, 99738.3582498412 -2239218.61279422, 99738.3582498412 -2239218.41268893, 99738.4583024838 -2239218.41268893, 99738.4583024838 -2239218.61279422, 99738.5583551263 -2239218.61279422, 99738.5583551263 -2239218.41268893, 99738.6584077689 -2239218.41268893, 99738.6584077689 -2239218.31263629, 99738.4583024838 -2239218.31263629, 99738.4583024838 -2239218.11253101, 99738.5583551263 -2239218.11253101, 99738.5583551263 -2239218.21258365, 99738.6584077689 -2239218.21258365, 99738.6584077689 -2239218.11253101, 99738.7584604114 -2239218.11253101, 99738.7584604114 -2239218.41268893, 99738.858513054 -2239218.41268893, 99738.858513054 -2239218.31263629, 99738.9585656965 -2239218.31263629, 99738.9585656965 -2239218.21258365, 99738.858513054 -2239218.21258365, 99738.858513054 -2239217.91242572, 99738.9585656965 -2239217.91242572, 99738.9585656965 -2239218.01247836, 99739.1586709816 -2239218.01247836, 99739.1586709816 -2239217.91242572, 99739.2587236242 -2239217.91242572, 99739.2587236242 -2239218.01247836, 99739.3587762667 -2239218.01247836, 99739.3587762667 -2239218.11253101, 99739.4588289093 -2239218.11253101, 99739.4588289093 -2239217.91242572, 99739.5588815519 -2239217.91242572, 99739.5588815519 -2239218.01247836, 99739.6589341944 -2239218.01247836, 99739.6589341944 -2239217.81237308, 99739.8590394795 -2239217.81237308, 99739.8590394795 -2239217.71232044, 99740.0591447646 -2239217.71232044, 99740.0591447646 -2239217.61226779, 99740.1591974072 -2239217.61226779, 99740.1591974072 -2239217.71232044, 99740.2592500497 -2239217.71232044, 99740.2592500497 -2239217.51221515, 99740.0591447646 -2239217.51221515, 99740.0591447646 -2239217.41216251, 99740.2592500497 -2239217.41216251, 99740.2592500497 -2239217.21205722, 99740.3593026923 -2239217.21205722, 99740.3593026923 -2239217.01195194, 99740.2592500497 -2239217.01195194, 99740.2592500497 -2239217.11200458, 99740.1591974072 -2239217.11200458, 99740.1591974072 -2239217.01195194, 99740.0591447646 -2239217.01195194, 99740.0591447646 -2239217.31210987, 99739.8590394795 -2239217.31210987, 99739.8590394795 -2239217.41216251, 99739.6589341944 -2239217.41216251, 99739.6589341944 -2239217.51221515, 99739.4588289093 -2239217.51221515, 99739.4588289093 -2239217.61226779, 99738.9585656965 -2239217.61226779, 99738.9585656965 -2239217.51221515, 99738.7584604114 -2239217.51221515, 99738.7584604114 -2239217.41216251, 99738.5583551263 -2239217.41216251, 99738.5583551263 -2239217.31210987, 99738.4583024838 -2239217.31210987, 99738.4583024838 -2239217.21205722, 99738.6584077689 -2239217.21205722, 99738.6584077689 -2239217.11200458, 99738.9585656965 -2239217.11200458, 99738.9585656965 -2239217.01195194, 99738.7584604114 -2239217.01195194, 99738.7584604114 -2239216.9118993, 99738.3582498412 -2239216.9118993, 99738.3582498412 -2239217.01195194, 99738.2581971987 -2239217.01195194, 99738.2581971987 -2239216.9118993, 99738.1581445561 -2239216.9118993, 99738.1581445561 -2239217.01195194, 99738.0580919136 -2239217.01195194, 99738.0580919136 -2239216.9118993, 99737.8579866284 -2239216.9118993, 99737.8579866284 -2239216.61174137, 99737.6578813433 -2239216.61174137, 99737.6578813433 -2239216.41163608, 99737.4577760582 -2239216.41163608, 99737.4577760582 -2239216.2115308, 99737.2576707731 -2239216.2115308, 99737.2576707731 -2239215.81132023, 99737.057565488 -2239215.81132023, 99737.057565488 -2239215.41110966, 99736.9575128455 -2239215.41110966, 99736.9575128455 -2239215.31105701, 99736.8574602029 -2239215.31105701, 99736.8574602029 -2239215.01089909, 99736.9575128455 -2239215.01089909, 99736.9575128455 -2239214.91084644, 99737.057565488 -2239214.91084644, 99737.057565488 -2239214.8107938, 99737.1576181306 -2239214.8107938, 99737.1576181306 -2239214.71074116, 99737.3577234157 -2239214.71074116, 99737.3577234157 -2239214.61068852, 99737.6578813433 -2239214.61068852, 99737.6578813433 -2239214.41058323, 99737.8579866284 -2239214.41058323, 99737.8579866284 -2239214.31053059, 99737.958039271 -2239214.31053059, 99737.958039271 -2239214.1104253, 99737.5578287008 -2239214.1104253, 99737.5578287008 -2239214.21047795, 99737.4577760582 -2239214.21047795, 99737.4577760582 -2239214.01037266, 99737.6578813433 -2239214.01037266, 99737.6578813433 -2239213.91032002, 99737.7579339859 -2239213.91032002, 99737.7579339859 -2239213.71021473, 99737.8579866284 -2239213.71021473, 99737.8579866284 -2239213.61016209, 99737.7579339859 -2239213.61016209, 99737.7579339859 -2239213.51010945, 99737.8579866284 -2239213.51010945, 99737.8579866284 -2239213.41005681, 99737.958039271 -2239213.41005681, 99737.958039271 -2239213.31000416, 99737.8579866284 -2239213.31000416, 99737.8579866284 -2239213.20995152, 99737.7579339859 -2239213.20995152, 99737.7579339859 -2239213.31000416, 99737.5578287008 -2239213.31000416, 99737.5578287008 -2239213.10989888, 99737.3577234157 -2239213.10989888, 99737.3577234157 -2239212.90979359, 99737.4577760582 -2239212.90979359, 99737.4577760582 -2239212.80974095, 99737.3577234157 -2239212.80974095, 99737.3577234157 -2239212.70968831, 99737.2576707731 -2239212.70968831, 99737.2576707731 -2239212.30947774, 99737.057565488 -2239212.30947774, 99737.057565488 -2239212.2094251, 99736.9575128455 -2239212.2094251, 99736.9575128455 -2239212.10937245, 99737.057565488 -2239212.10937245, 99737.057565488 -2239212.00931981, 99737.1576181306 -2239212.00931981, 99737.1576181306 -2239212.10937245, 99737.2576707731 -2239212.10937245, 99737.2576707731 -2239212.2094251, 99737.3577234157 -2239212.2094251, 99737.3577234157 -2239212.40953038, 99737.4577760582 -2239212.40953038, 99737.4577760582 -2239212.30947774, 99737.5578287008 -2239212.30947774, 99737.5578287008 -2239212.2094251, 99737.6578813433 -2239212.2094251, 99737.6578813433 -2239212.10937245, 99737.5578287008 -2239212.10937245, 99737.5578287008 -2239212.00931981, 99737.4577760582 -2239212.00931981, 99737.4577760582 -2239211.90926717, 99737.2576707731 -2239211.90926717, 99737.2576707731 -2239211.80921452, 99737.1576181306 -2239211.80921452, 99737.1576181306 -2239211.70916188, 99737.057565488 -2239211.70916188, 99737.057565488 -2239211.60910924, 99736.9575128455 -2239211.60910924, 99736.9575128455 -2239211.5090566, 99736.7574075604 -2239211.5090566, 99736.7574075604 -2239211.40900395, 99736.5573022753 -2239211.40900395, 99736.5573022753 -2239211.00879338, 99736.4572496327 -2239211.00879338, 99736.4572496327 -2239210.90874074, 99736.157091705 -2239210.90874074, 99736.157091705 -2239210.8086881, 99736.2571443476 -2239210.8086881, 99736.2571443476 -2239210.60858281, 99736.3571969901 -2239210.60858281, 99736.3571969901 -2239210.40847753, 99736.2571443476 -2239210.40847753, 99736.2571443476 -2239210.50853017, 99736.0570390625 -2239210.50853017, 99736.0570390625 -2239210.40847753, 99736.157091705 -2239210.40847753, 99736.157091705 -2239210.30842489, 99735.9569864199 -2239210.30842489, 99735.9569864199 -2239210.20837224, 99736.0570390625 -2239210.20837224, 99736.0570390625 -2239209.90821432, 99735.8569337774 -2239209.90821432, 99735.8569337774 -2239209.80816167, 99735.9569864199 -2239209.80816167, 99735.9569864199 -2239209.60805639, 99735.8569337774 -2239209.60805639, 99735.8569337774 -2239209.50800375, 99735.7568811348 -2239209.50800375, 99735.7568811348 -2239209.4079511, 99735.8569337774 -2239209.4079511, 99735.8569337774 -2239209.30789846, 99735.7568811348 -2239209.30789846, 99735.7568811348 -2239209.20784582, 99735.6568284923 -2239209.20784582, 99735.6568284923 -2239209.00774053, 99735.7568811348 -2239209.00774053, 99735.7568811348 -2239208.80763525, 99735.6568284923 -2239208.80763525, 99735.6568284923 -2239208.60752996, 99735.5567758497 -2239208.60752996, 99735.5567758497 -2239208.50747732, 99735.6568284923 -2239208.50747732, 99735.6568284923 -2239208.40742468, 99735.5567758497 -2239208.40742468, 99735.5567758497 -2239208.30737204, 99735.4567232072 -2239208.30737204, 99735.4567232072 -2239208.20731939, 99735.5567758497 -2239208.20731939, 99735.5567758497 -2239208.00721411, 99735.4567232072 -2239208.00721411, 99735.4567232072 -2239207.90716147, 99735.3566705646 -2239207.90716147, 99735.3566705646 -2239207.70705618, 99735.4567232072 -2239207.70705618, 99735.4567232072 -2239207.50695089, 99735.3566705646 -2239207.50695089, 99735.3566705646 -2239207.40689825, 99735.4567232072 -2239207.40689825, 99735.4567232072 -2239207.30684561, 99735.2566179221 -2239207.30684561, 99735.2566179221 -2239207.20679297, 99735.3566705646 -2239207.20679297, 99735.3566705646 -2239207.10674032, 99735.1565652795 -2239207.10674032, 99735.1565652795 -2239207.30684561, 99735.0565126369 -2239207.30684561, 99735.0565126369 -2239207.00668768, 99734.9564599944 -2239207.00668768, 99734.9564599944 -2239207.40689825, 99734.8564073518 -2239207.40689825, 99734.8564073518 -2239207.00668768, 99734.7563547093 -2239207.00668768, 99734.7563547093 -2239206.90663504, 99734.6563020667 -2239206.90663504, 99734.6563020667 -2239206.8065824, 99734.5562494242 -2239206.8065824, 99734.5562494242 -2239206.70652975, 99734.2560914965 -2239206.70652975, 99734.2560914965 -2239206.60647711, 99734.3561441391 -2239206.60647711, 99734.3561441391 -2239206.30631918, 99734.156038854 -2239206.30631918, 99734.156038854 -2239206.20626654, 99734.0559862114 -2239206.20626654, 99734.0559862114 -2239206.1062139, 99734.2560914965 -2239206.1062139, 99734.2560914965 -2239205.90610861, 99734.3561441391 -2239205.90610861, 99734.3561441391 -2239205.80605597, 99734.4561967816 -2239205.80605597, 99734.4561967816 -2239205.70600333, 99734.6563020667 -2239205.70600333, 99734.6563020667 -2239205.80605597, 99734.8564073518 -2239205.80605597, 99734.8564073518 -2239205.30579276, 99734.3561441391 -2239205.30579276, 99734.3561441391 -2239205.10568747, 99734.0559862114 -2239205.10568747, 99734.0559862114 -2239205.00563483, 99733.8558809263 -2239205.00563483, 99733.8558809263 -2239204.90558219, 99733.6557756412 -2239204.90558219, 99733.6557756412 -2239204.80552955, 99733.4556703561 -2239204.80552955, 99733.4556703561 -2239204.7054769, 99733.3556177135 -2239204.7054769, 99733.3556177135 -2239204.60542426, 99733.1555124284 -2239204.60542426, 99733.1555124284 -2239204.50537162, 99732.8553545008 -2239204.50537162, 99732.8553545008 -2239204.60542426, 99732.7553018582 -2239204.60542426, 99732.7553018582 -2239204.90558219, 99732.5551965731 -2239204.90558219, 99732.5551965731 -2239205.00563483, 99732.4551439306 -2239205.00563483, 99732.4551439306 -2239205.10568747, 99732.355091288 -2239205.10568747, 99732.355091288 -2239205.20574012, 99732.1549860029 -2239205.20574012, 99732.1549860029 -2239205.30579276, 99731.9548807178 -2239205.30579276, 99731.9548807178 -2239205.4058454, 99731.454617505 -2239205.4058454, 99731.454617505 -2239205.50589804, 99731.0544069348 -2239205.50589804, 99731.0544069348 -2239205.60595069, 99730.8543016497 -2239205.60595069, 99730.8543016497 -2239205.70600333, 99730.7542490072 -2239205.70600333, 99730.7542490072 -2239205.80605597, 99730.554143722 -2239205.80605597, 99730.554143722 -2239205.90610861, 99730.4540910795 -2239205.90610861, 99730.4540910795 -2239206.00616126, 99730.3540384369 -2239206.00616126, 99730.3540384369 -2239206.50642447, 99730.2539857944 -2239206.50642447, 99730.2539857944 -2239206.70652975, 99730.1539331518 -2239206.70652975, 99730.1539331518 -2239206.8065824, 99729.9538278667 -2239206.8065824, 99729.9538278667 -2239206.90663504, 99729.5536172965 -2239206.90663504, 99729.5536172965 -2239207.00668768, 99729.3535120114 -2239207.00668768, 99729.3535120114 -2239207.10674032, 99729.2534593688 -2239207.10674032, 99729.2534593688 -2239207.20679297, 99729.0533540837 -2239207.20679297, 99729.0533540837 -2239207.30684561, 99728.9533014412 -2239207.30684561, 99728.9533014412 -2239207.40689825, 99728.8532487986 -2239207.40689825, 99728.8532487986 -2239207.50695089, 99728.7531961561 -2239207.50695089, 99728.7531961561 -2239207.60700354, 99728.6531435135 -2239207.60700354, 99728.6531435135 -2239208.10726675, 99728.553090871 -2239208.10726675, 99728.553090871 -2239208.30737204, 99728.4530382284 -2239208.30737204, 99728.4530382284 -2239208.50747732, 99728.6531435135 -2239208.50747732, 99728.6531435135 -2239208.60752996, 99728.2529329433 -2239208.60752996, 99728.2529329433 -2239208.70758261, 99727.8527223731 -2239208.70758261, 99727.8527223731 -2239208.60752996, 99727.5525644454 -2239208.60752996, 99727.5525644454 -2239208.70758261, 99727.4525118029 -2239208.70758261, 99727.4525118029 -2239208.60752996, 99726.4519853773 -2239208.60752996, 99726.4519853773 -2239208.70758261, 99726.2518800922 -2239208.70758261, 99726.2518800922 -2239208.80763525, 99726.1518274497 -2239208.80763525, 99726.1518274497 -2239208.90768789, 99726.0517748071 -2239208.90768789, 99726.0517748071 -2239209.00774053, 99725.9517221646 -2239209.00774053, 99725.9517221646 -2239209.10779318, 99725.851669522 -2239209.10779318, 99725.851669522 -2239209.20784582, 99725.7516168795 -2239209.20784582, 99725.7516168795 -2239209.4079511, 99725.6515642369 -2239209.4079511, 99725.6515642369 -2239209.50800375, 99725.7516168795 -2239209.50800375, 99725.7516168795 -2239209.60805639, 99725.6515642369 -2239209.60805639, 99725.6515642369 -2239209.90821432, 99725.5515115944 -2239209.90821432, 99725.5515115944 -2239210.50853017, 99725.4514589518 -2239210.50853017, 99725.4514589518 -2239211.20889867, 99725.5515115944 -2239211.20889867, 99725.5515115944 -2239211.40900395, 99725.6515642369 -2239211.40900395, 99725.6515642369 -2239211.5090566, 99725.7516168795 -2239211.5090566, 99725.7516168795 -2239211.40900395, 99725.851669522 -2239211.40900395, 99725.851669522 -2239211.10884603, 99725.9517221646 -2239211.10884603, 99725.9517221646 -2239210.90874074, 99726.0517748071 -2239210.90874074, 99726.0517748071 -2239210.20837224, 99726.1518274497 -2239210.20837224, 99726.1518274497 -2239210.1083196, 99726.2518800922 -2239210.1083196, 99726.2518800922 -2239210.00826696, 99726.4519853773 -2239210.00826696, 99726.4519853773 -2239209.90821432, 99726.6520906625 -2239209.90821432, 99726.6520906625 -2239210.00826696, 99726.9522485901 -2239210.00826696, 99726.9522485901 -2239210.1083196, 99727.1523538752 -2239210.1083196, 99727.1523538752 -2239210.20837224, 99727.7526697305 -2239210.20837224, 99727.7526697305 -2239210.1083196, 99728.6531435135 -2239210.1083196, 99728.6531435135 -2239210.00826696, 99728.7531961561 -2239210.00826696, 99728.7531961561 -2239210.1083196, 99729.0533540837 -2239210.1083196, 99729.0533540837 -2239210.20837224, 99729.1534067263 -2239210.20837224, 99729.1534067263 -2239210.00826696, 99728.9533014412 -2239210.00826696, 99728.9533014412 -2239209.90821432, 99729.1534067263 -2239209.90821432, 99729.1534067263 -2239209.80816167, 99728.9533014412 -2239209.80816167, 99728.9533014412 -2239209.70810903, 99728.8532487986 -2239209.70810903, 99728.8532487986 -2239209.60805639, 99728.9533014412 -2239209.60805639, 99728.9533014412 -2239209.4079511, 99728.8532487986 -2239209.4079511, 99728.8532487986 -2239209.30789846, 99728.9533014412 -2239209.30789846, 99728.9533014412 -2239209.00774053, 99729.0533540837 -2239209.00774053, 99729.0533540837 -2239208.90768789, 99729.5536172965 -2239208.90768789, 99729.5536172965 -2239208.80763525, 99729.7537225816 -2239208.80763525, 99729.7537225816 -2239208.90768789, 99729.8537752242 -2239208.90768789, 99729.8537752242 -2239209.00774053, 99729.9538278667 -2239209.00774053, 99729.9538278667 -2239209.10779318, 99730.1539331518 -2239209.10779318, 99730.1539331518 -2239209.30789846, 99730.0538805093 -2239209.30789846, 99730.0538805093 -2239209.4079511, 99730.1539331518 -2239209.4079511, 99730.1539331518 -2239209.50800375, 99730.0538805093 -2239209.50800375, 99730.0538805093 -2239209.80816167, 99729.9538278667 -2239209.80816167, 99729.9538278667 -2239210.00826696, 99729.8537752242 -2239210.00826696, 99729.8537752242 -2239210.1083196, 99729.7537225816 -2239210.1083196, 99729.7537225816 -2239210.20837224, 99729.5536172965 -2239210.20837224, 99729.5536172965 -2239210.1083196, 99729.3535120114 -2239210.1083196, 99729.3535120114 -2239210.30842489, 99729.2534593688 -2239210.30842489, 99729.2534593688 -2239210.40847753, 99729.3535120114 -2239210.40847753, 99729.3535120114 -2239210.8086881, 99729.4535646539 -2239210.8086881, 99729.4535646539 -2239210.90874074, 99729.3535120114 -2239210.90874074, 99729.3535120114 -2239211.00879338, 99729.1534067263 -2239211.00879338, 99729.1534067263 -2239211.10884603, 99728.7531961561 -2239211.10884603, 99728.7531961561 -2239211.20889867, 99727.9527750156 -2239211.20889867, 99727.9527750156 -2239211.30895131, 99727.652617088 -2239211.30895131, 99727.652617088 -2239211.40900395, 99727.4525118029 -2239211.40900395, 99727.4525118029 -2239211.5090566, 99727.3524591603 -2239211.5090566, 99727.3524591603 -2239211.70916188, 99727.4525118029 -2239211.70916188, 99727.4525118029 -2239211.80921452, 99727.652617088 -2239211.80921452, 99727.652617088 -2239211.90926717, 99727.8527223731 -2239211.90926717, 99727.8527223731 -2239212.00931981, 99728.4530382284 -2239212.00931981, 99728.4530382284 -2239212.10937245, 99728.553090871 -2239212.10937245, 99728.553090871 -2239212.00931981, 99728.7531961561 -2239212.00931981, 99728.7531961561 -2239212.10937245, 99729.1534067263 -2239212.10937245, 99729.1534067263 -2239212.2094251, 99729.3535120114 -2239212.2094251, 99729.3535120114 -2239212.30947774, 99729.4535646539 -2239212.30947774, 99729.4535646539 -2239212.50958302, 99729.5536172965 -2239212.50958302, 99729.5536172965 -2239212.60963567, 99729.6536699391 -2239212.60963567, 99729.6536699391 -2239212.70968831, 99729.9538278667 -2239212.70968831, 99729.9538278667 -2239212.80974095, 99730.3540384369 -2239212.80974095, 99730.3540384369 -2239212.90979359, 99730.554143722 -2239212.90979359, 99730.554143722 -2239213.00984624, 99730.7542490072 -2239213.00984624, 99730.7542490072 -2239212.90979359, 99730.8543016497 -2239212.90979359, 99730.8543016497 -2239213.00984624, 99730.9543542922 -2239213.00984624, 99730.9543542922 -2239213.20995152, 99731.0544069348 -2239213.20995152, 99731.0544069348 -2239213.10989888, 99731.1544595774 -2239213.10989888, 99731.1544595774 -2239213.31000416, 99731.3545648625 -2239213.31000416, 99731.3545648625 -2239213.41005681, 99731.454617505 -2239213.41005681, 99731.454617505 -2239213.51010945, 99731.5546701476 -2239213.51010945, 99731.5546701476 -2239213.61016209, 99731.6547227901 -2239213.61016209, 99731.6547227901 -2239213.81026738, 99731.7547754327 -2239213.81026738, 99731.7547754327 -2239213.91032002, 99731.8548280752 -2239213.91032002, 99731.8548280752 -2239214.1104253, 99731.9548807178 -2239214.1104253, 99731.9548807178 -2239214.31053059, 99732.0549333603 -2239214.31053059, 99732.0549333603 -2239214.41058323, 99731.9548807178 -2239214.41058323, 99731.9548807178 -2239214.51063587, 99732.0549333603 -2239214.51063587, 99732.0549333603 -2239214.71074116, 99732.1549860029 -2239214.71074116, 99732.1549860029 -2239214.91084644, 99732.2550386455 -2239214.91084644, 99732.2550386455 -2239215.11095173, 99732.355091288 -2239215.11095173, 99732.355091288 -2239215.31105701, 99732.4551439306 -2239215.31105701, 99732.4551439306 -2239215.41110966, 99732.355091288 -2239215.41110966, 99732.355091288 -2239215.5111623, 99732.4551439306 -2239215.5111623, 99732.4551439306 -2239215.71126758, 99732.355091288 -2239215.71126758, 99732.355091288 -2239215.91137287, 99732.4551439306 -2239215.91137287, 99732.4551439306 -2239216.01142551, 99732.355091288 -2239216.01142551, 99732.355091288 -2239216.11147815, 99732.2550386455 -2239216.11147815, 99732.2550386455 -2239216.2115308, 99732.355091288 -2239216.2115308, 99732.355091288 -2239216.31158344, 99732.2550386455 -2239216.31158344, 99732.2550386455 -2239216.61174137, 99732.1549860029 -2239216.61174137, 99732.1549860029 -2239217.01195194, 99732.0549333603 -2239217.01195194, 99732.0549333603 -2239217.21205722, 99732.1549860029 -2239217.21205722, 99732.1549860029 -2239217.31210987, 99732.4551439306 -2239217.31210987, 99732.4551439306 -2239217.41216251, 99732.5551965731 -2239217.41216251, 99732.5551965731 -2239217.31210987, 99732.7553018582 -2239217.31210987, 99732.7553018582 -2239217.41216251, 99732.8553545008 -2239217.41216251, 99732.8553545008 -2239217.51221515, 99732.9554071433 -2239217.51221515, 99732.9554071433 -2239217.31210987, 99733.1555124284 -2239217.31210987, 99733.1555124284 -2239217.41216251, 99733.255565071 -2239217.41216251, 99733.255565071 -2239217.31210987, 99733.4556703561 -2239217.31210987, 99733.4556703561 -2239217.41216251, 99733.5557229986 -2239217.41216251, 99733.5557229986 -2239217.31210987, 99733.6557756412 -2239217.31210987, 99733.6557756412 -2239217.21205722, 99733.8558809263 -2239217.21205722, 99733.8558809263 -2239217.11200458, 99733.9559335689 -2239217.11200458, 99733.9559335689 -2239217.01195194, 99734.0559862114 -2239217.01195194, 99734.0559862114 -2239217.21205722, 99734.156038854 -2239217.21205722, 99734.156038854 -2239217.11200458, 99734.2560914965 -2239217.11200458, 99734.2560914965 -2239217.21205722, 99734.3561441391 -2239217.21205722, 99734.3561441391 -2239217.11200458, 99734.4561967816 -2239217.11200458, 99734.4561967816 -2239217.01195194, 99734.3561441391 -2239217.01195194, 99734.3561441391 -2239216.9118993, 99734.4561967816 -2239216.9118993, 99734.4561967816 -2239216.81184665, 99734.6563020667 -2239216.81184665, 99734.6563020667 -2239216.9118993, 99734.5562494242 -2239216.9118993, 99734.5562494242 -2239217.01195194, 99734.6563020667 -2239217.01195194, 99734.6563020667 -2239217.11200458, 99734.7563547093 -2239217.11200458, 99734.7563547093 -2239217.01195194, 99734.8564073518 -2239217.01195194, 99734.8564073518 -2239217.11200458, 99735.3566705646 -2239217.11200458, 99735.3566705646 -2239217.21205722, 99735.7568811348 -2239217.21205722, 99735.7568811348 -2239217.31210987, 99735.6568284923 -2239217.31210987, 99735.6568284923 -2239217.41216251, 99735.5567758497 -2239217.41216251, 99735.5567758497 -2239217.61226779, 99735.7568811348 -2239217.61226779, 99735.7568811348 -2239217.71232044, 99735.9569864199 -2239217.71232044, 99735.9569864199 -2239218.01247836, 99735.8569337774 -2239218.01247836, 99735.8569337774 -2239218.11253101, 99735.9569864199 -2239218.11253101, 99735.9569864199 -2239218.21258365, 99736.0570390625 -2239218.21258365, 99736.0570390625 -2239218.41268893, 99735.9569864199 -2239218.41268893, 99735.9569864199 -2239218.61279422, 99736.0570390625 -2239218.61279422, 99736.0570390625 -2239218.71284686, 99735.9569864199 -2239218.71284686, 99735.9569864199 -2239218.8128995, 99736.0570390625 -2239218.8128995, 99736.0570390625 -2239218.91295215, 99736.3571969901 -2239218.91295215, 99736.3571969901 -2239219.01300479, 99736.4572496327 -2239219.01300479, 99736.4572496327 -2239219.11305743))
</a>
<test>
<desc>buffer-0.35: see path_to_url
<op name="buffer" arg1="a" arg2="0.35">
POLYGON ((99725.2015115944 -2239210.264040296, 99725.2015115944 -2239209.90821432, 99725.20823674626 -2239209.839932707, 99725.22815375803 -2239209.7742751185, 99725.26049723009 -2239209.7137647383, 99725.3015642369 -2239209.663724446, 99725.3015642369 -2239209.60805639, 99725.30649139937 -2239209.5580300703, 99725.3015642369 -2239209.50800375, 99725.3015642369 -2239209.4079511, 99725.30828938876 -2239209.339669487, 99725.32820640053 -2239209.2740118983, 99725.3605498726 -2239209.213501518, 99725.40407686349 -2239209.1604637266, 99725.40647766467 -2239209.15849344, 99725.40834203135 -2239209.1395642073, 99725.42825904312 -2239209.0739066186, 99725.46060251519 -2239209.0133962384, 99725.50412950608 -2239208.960358447, 99725.55716729794 -2239208.9168314557, 99725.55944024482 -2239208.9156165402, 99725.5606551577 -2239208.913343598, 99725.60418214859 -2239208.8603058066, 99725.65721994045 -2239208.8167788154, 99725.65949288048 -2239208.8155639037, 99725.66070780029 -2239208.8132909485, 99725.70423479118 -2239208.760253157, 99725.75727258304 -2239208.7167261657, 99725.75954552992 -2239208.7155112503, 99725.76076044279 -2239208.713238308, 99725.80428743368 -2239208.6602005167, 99725.85732522554 -2239208.6166735254, 99725.85959817292 -2239208.6154586095, 99725.8608130854 -2239208.6131856684, 99725.90434007629 -2239208.560147877, 99725.95737786815 -2239208.5166208856, 99725.95965081536 -2239208.51540597, 99725.96086572789 -2239208.5131330285, 99726.00439271878 -2239208.460095237, 99726.05743051064 -2239208.4165682457, 99726.11794089086 -2239208.384224774, 99726.18359847949 -2239208.364307762, 99726.2025277112 -2239208.3624433954, 99726.20449800388 -2239208.360042587, 99726.25753579574 -2239208.3165155957, 99726.31804617596 -2239208.2841721238, 99726.38370376459 -2239208.264255112, 99726.4519853773 -2239208.25752996, 99727.4525118029 -2239208.25752996, 99727.50253812416 -2239208.2624571226, 99727.5525644454 -2239208.25752996, 99727.8527223731 -2239208.25752996, 99727.92100398582 -2239208.264255112, 99727.98666157444 -2239208.2841721238, 99728.04717195466 -2239208.3165155957, 99728.0528276582 -2239208.321157112, 99728.05848336175 -2239208.3165155957, 99728.10456354666 -2239208.2918852237, 99728.10976338026 -2239208.2390904273, 99728.12968039203 -2239208.1734328386, 99728.16202386409 -2239208.1129224584, 99728.20555085498 -2239208.059884667, 99728.20795165507 -2239208.0579143814, 99728.20981602286 -2239208.0389851374, 99728.22973303463 -2239207.9733275487, 99728.2620765067 -2239207.9128171685, 99728.30314351349 -2239207.8627768764, 99728.30314351349 -2239207.60700354, 99728.30986866535 -2239207.538721927, 99728.32978567712 -2239207.4730643383, 99728.36212914919 -2239207.412553958, 99728.40565614008 -2239207.3595161666, 99728.45869393194 -2239207.3159891753, 99728.460966872 -2239207.3147742637, 99728.4621817918 -2239207.3125013085, 99728.50570878269 -2239207.259463517, 99728.55874657455 -2239207.2159365257, 99728.56101952141 -2239207.2147216103, 99728.56223443428 -2239207.212448668, 99728.60576142518 -2239207.1594108767, 99728.65879921704 -2239207.1158838854, 99728.66107216441 -2239207.1146689695, 99728.66228707689 -2239207.1123960284, 99728.70581406778 -2239207.059358237, 99728.75885185965 -2239207.0158312456, 99728.76112480687 -2239207.01461633, 99728.7623397194 -2239207.0123433885, 99728.80586671029 -2239206.959305597, 99728.85890450215 -2239206.9157786057, 99728.91941488237 -2239206.883435134, 99728.985072471 -2239206.863518122, 99729.0040017027 -2239206.8616537554, 99729.00597199539 -2239206.859252947, 99729.05900978725 -2239206.8157259556, 99729.06128273426 -2239206.81451104, 99729.06249764709 -2239206.812238098, 99729.10602463798 -2239206.7592003066, 99729.15906242984 -2239206.7156733153, 99729.21957281006 -2239206.6833298435, 99729.28523039869 -2239206.6634128317, 99729.30415963955 -2239206.661548464, 99729.30612992308 -2239206.659147667, 99729.35916771494 -2239206.6156206755, 99729.41967809516 -2239206.5832772036, 99729.48533568378 -2239206.563360192, 99729.5536172965 -2239206.55663504, 99729.70933799617 -2239206.55663504, 99729.75937828515 -2239206.5155680357, 99729.81988866537 -2239206.4832245638, 99729.885546254 -2239206.463307552, 99729.9044754857 -2239206.4614431853, 99729.90644577838 -2239206.459042377, 99729.90884657952 -2239206.4570720904, 99729.91071094626 -2239206.438142857, 99729.93062795803 -2239206.3724852684, 99729.9629714301 -2239206.311974888, 99730.00403843689 -2239206.261934596, 99730.00403843689 -2239206.00616126, 99730.01076358875 -2239205.937879647, 99730.03068060052 -2239205.8722220585, 99730.06302407259 -2239205.8117116783, 99730.10655106348 -2239205.758673887, 99730.15958885534 -2239205.7151468955, 99730.16186179504 -2239205.713931984, 99730.1630767152 -2239205.711659028, 99730.20660370609 -2239205.6586212367, 99730.25964149795 -2239205.6150942454, 99730.26191444516 -2239205.61387933, 99730.26312935769 -2239205.6116063884, 99730.30665634858 -2239205.558568597, 99730.35969414044 -2239205.5150416056, 99730.42020452066 -2239205.4826981337, 99730.48586210929 -2239205.462781122, 99730.50479135025 -2239205.4609167543, 99730.50676163378 -2239205.458515957, 99730.55979942564 -2239205.4149889657, 99730.56207237252 -2239205.4137740503, 99730.56328728539 -2239205.411501108, 99730.60681427628 -2239205.3584633167, 99730.65985206814 -2239205.3149363254, 99730.72036244837 -2239205.2825928535, 99730.78602003699 -2239205.262675842, 99730.8049492687 -2239205.260811475, 99730.80691956138 -2239205.2584106666, 99730.85995735324 -2239205.2148836753, 99730.92046773346 -2239205.1825402034, 99730.98612532209 -2239205.1626231917, 99731.0544069348 -2239205.1558980397, 99731.21012763448 -2239205.1558980397, 99731.26016792345 -2239205.1148310355, 99731.32067830367 -2239205.0824875636, 99731.3863358923 -2239205.062570552, 99731.454617505 -2239205.0558454, 99731.71039084728 -2239205.0558454, 99731.76043113625 -2239205.0147783956, 99731.82094151647 -2239204.9824349238, 99731.8865991051 -2239204.962517912, 99731.90552834554 -2239204.9606535444, 99731.90749862949 -2239204.9582527466, 99731.96053642135 -2239204.9147257553, 99732.02104680157 -2239204.8823822835, 99732.0867043902 -2239204.8624652717, 99732.10563362233 -2239204.860600905, 99732.10760391458 -2239204.858200097, 99732.16064170645 -2239204.8146731057, 99732.16291465345 -2239204.8134581903, 99732.16412956628 -2239204.811185248, 99732.20765655718 -2239204.7581474567, 99732.26069434904 -2239204.7146204654, 99732.26296729626 -2239204.71340555, 99732.26418220879 -2239204.7111326084, 99732.30770919968 -2239204.658094817, 99732.36074699154 -2239204.6145678256, 99732.4068271754 -2239204.589937454, 99732.41202701005 -2239204.537142647, 99732.43194402182 -2239204.4714850583, 99732.46428749389 -2239204.410974678, 99732.50781448478 -2239204.3579368866, 99732.56085227664 -2239204.3144098953, 99732.56312522401 -2239204.3131949794, 99732.5643401365 -2239204.3109220383, 99732.60786712739 -2239204.2578842468, 99732.66090491925 -2239204.2143572555, 99732.72141529947 -2239204.1820137836, 99732.7870728881 -2239204.162096772, 99732.8553545008 -2239204.15537162, 99733.1555124284 -2239204.15537162, 99733.22379404111 -2239204.162096772, 99733.28945162974 -2239204.1820137836, 99733.34996200996 -2239204.2143572555, 99733.40299980182 -2239204.2578842468, 99733.40497008535 -2239204.260285044, 99733.42389932621 -2239204.2621494117, 99733.48955691484 -2239204.2820664234, 99733.55006729506 -2239204.3144098953, 99733.60310508692 -2239204.3579368866, 99733.64663207781 -2239204.410974678, 99733.64784699064 -2239204.41324762, 99733.65011993765 -2239204.4144625356, 99733.70315772951 -2239204.457989527, 99733.7051280222 -2239204.4603903354, 99733.7240572539 -2239204.462254702, 99733.78971484253 -2239204.482171714, 99733.85022522275 -2239204.5145151857, 99733.90326301461 -2239204.558042177, 99733.90523329814 -2239204.5604429743, 99733.92416253901 -2239204.562307342, 99733.98982012764 -2239204.5822243537, 99734.05033050786 -2239204.6145678256, 99734.10336829972 -2239204.658094817, 99734.10533858325 -2239204.660495614, 99734.12426782411 -2239204.662359982, 99734.18992541273 -2239204.6822769935, 99734.25043579296 -2239204.7146204654, 99734.3004760825 -2239204.75568747, 99734.3561441391 -2239204.75568747, 99734.42442575181 -2239204.762412622, 99734.49008334044 -2239204.782329634, 99734.55059372066 -2239204.8146731057, 99734.60363151252 -2239204.858200097, 99734.64715850342 -2239204.9112378885, 99734.67097357841 -2239204.95579276, 99734.8564073518 -2239204.95579276, 99734.92468896451 -2239204.962517912, 99734.99034655314 -2239204.9824349238, 99735.05085693336 -2239205.0147783956, 99735.10389472522 -2239205.058305387, 99735.14742171612 -2239205.1113431784, 99735.17976518818 -2239205.1718535586, 99735.19968219995 -2239205.2375111473, 99735.20640735181 -2239205.30579276, 99735.20640735181 -2239205.80605597, 99735.19968219995 -2239205.874337583, 99735.17976518818 -2239205.9399951715, 99735.14742171612 -2239206.0005055517, 99735.10389472522 -2239206.053543343, 99735.05085693336 -2239206.0970703345, 99734.99034655314 -2239206.1294138064, 99734.92468896451 -2239206.149330818, 99734.8564073518 -2239206.15605597, 99734.67077661124 -2239206.15605597, 99734.67950197548 -2239206.1723799785, 99734.69941898725 -2239206.238037567, 99734.70614413911 -2239206.30631918, 99734.70614413911 -2239206.3917003134, 99734.75069900576 -2239206.4155153856, 99734.80373679762 -2239206.459042377, 99734.84726378851 -2239206.5120801684, 99734.8484787087 -2239206.514353124, 99734.85075164825 -2239206.5155680357, 99734.90378944011 -2239206.559095027, 99734.947316431 -2239206.6121328184, 99734.94853134349 -2239206.6144057596, 99734.95080429086 -2239206.6156206755, 99735.00084457983 -2239206.6566876797, 99735.0565126369 -2239206.6566876797, 99735.12479424961 -2239206.6634128317, 99735.19045183824 -2239206.6833298435, 99735.25096221846 -2239206.7156733153, 99735.301002508 -2239206.75674032, 99735.3566705646 -2239206.75674032, 99735.4249521773 -2239206.763465472, 99735.49060976593 -2239206.7833824838, 99735.55112014615 -2239206.8157259556, 99735.60415793801 -2239206.859252947, 99735.6476849289 -2239206.9122907384, 99735.68002840097 -2239206.9728011186, 99735.69994541274 -2239207.0384587073, 99735.70180978053 -2239207.0573879513, 99735.70421058062 -2239207.059358237, 99735.74773757151 -2239207.1123960284, 99735.78008104357 -2239207.1729064086, 99735.79999805534 -2239207.238563997, 99735.8067232072 -2239207.30684561, 99735.8067232072 -2239207.40689825, 99735.80179604473 -2239207.4569245703, 99735.8067232072 -2239207.50695089, 99735.8067232072 -2239207.70705618, 99735.80173959458 -2239207.757655648, 99735.80426322312 -2239207.7597267367, 99735.84779021401 -2239207.812764528, 99735.88013368608 -2239207.8732749084, 99735.90005069785 -2239207.938932497, 99735.90677584971 -2239208.00721411, 99735.90677584971 -2239208.1629348057, 99735.9478428566 -2239208.2129750983, 99735.98018632867 -2239208.2734854785, 99736.00010334044 -2239208.339143067, 99736.0068284923 -2239208.40742468, 99736.0068284923 -2239208.50747732, 99736.00190132983 -2239208.55750364, 99736.00196770823 -2239208.5581775913, 99736.00436850822 -2239208.560147877, 99736.04789549911 -2239208.6131856684, 99736.08023897118 -2239208.6736960486, 99736.10015598295 -2239208.739353637, 99736.10688113481 -2239208.80763525, 99736.10688113481 -2239209.00774053, 99736.1018975222 -2239209.058339998, 99736.10442115081 -2239209.060411087, 99736.1479481417 -2239209.1134488783, 99736.18029161377 -2239209.1739592585, 99736.20020862554 -2239209.239616847, 99736.2069337774 -2239209.30789846, 99736.2069337774 -2239209.3635665164, 99736.24800078421 -2239209.4136068085, 99736.28034425627 -2239209.4741171887, 99736.30026126804 -2239209.5397747774, 99736.3069864199 -2239209.60805639, 99736.3069864199 -2239209.6637244457, 99736.34805342682 -2239209.7137647383, 99736.38039689888 -2239209.7742751185, 99736.40031391065 -2239209.839932707, 99736.40703906251 -2239209.90821432, 99736.40703906251 -2239210.0633865455, 99736.4254786028 -2239210.065202682, 99736.49113619143 -2239210.0851196935, 99736.55164657165 -2239210.1174631654, 99736.60468436351 -2239210.1609901567, 99736.6482113544 -2239210.214027948, 99736.68055482647 -2239210.2745383284, 99736.70047183824 -2239210.340195917, 99736.7071969901 -2239210.40847753, 99736.7071969901 -2239210.60858281, 99736.70221337749 -2239210.659182278, 99736.70473700612 -2239210.6612533666, 99736.74826399701 -2239210.714291158, 99736.74947890984 -2239210.7165641002, 99736.75175185685 -2239210.7177790157, 99736.80478964871 -2239210.761306007, 99736.8483166396 -2239210.8143437984, 99736.88066011167 -2239210.8748541786, 99736.90057712344 -2239210.9405117673, 99736.9073022753 -2239211.00879338, 99736.9073022753 -2239211.0941745136, 99736.95185714196 -2239211.1179895857, 99737.00489493382 -2239211.161516577, 99737.00686522608 -2239211.163917385, 99737.02579445821 -2239211.1657817517, 99737.09145204684 -2239211.1856987635, 99737.15196242706 -2239211.2180422354, 99737.20500021892 -2239211.2615692266, 99737.24852720981 -2239211.314607018, 99737.24974212269 -2239211.3168799602, 99737.25201506955 -2239211.3180948757, 99737.30505286141 -2239211.361621867, 99737.3485798523 -2239211.4146596584, 99737.34979476478 -2239211.4169325996, 99737.35206771216 -2239211.4181475155, 99737.40510550402 -2239211.461674507, 99737.44863249491 -2239211.5147122983, 99737.44984740744 -2239211.51698524, 99737.45212035466 -2239211.5182001553, 99737.50515814652 -2239211.5617271466, 99737.5071284392 -2239211.564127955, 99737.52605767091 -2239211.565992322, 99737.59171525954 -2239211.5859093335, 99737.65222563976 -2239211.6182528054, 99737.70526343162 -2239211.6617797967, 99737.74879042251 -2239211.714817588, 99737.75000533534 -2239211.7170905303, 99737.75227828235 -2239211.7183054457, 99737.80531607421 -2239211.761832437, 99737.8488430651 -2239211.8148702285, 99737.85005797763 -2239211.81714317, 99737.85233092486 -2239211.8183580856, 99737.90536871672 -2239211.861885077, 99737.94889570761 -2239211.9149228684, 99737.98123917967 -2239211.9754332486, 99738.00115619144 -2239212.041090837, 99738.0078813433 -2239212.10937245, 99738.0078813433 -2239212.2094251, 99738.00115619144 -2239212.277706713, 99737.98123917967 -2239212.3433643016, 99737.94889570761 -2239212.403874682, 99737.90536871672 -2239212.4569124733, 99737.85233092486 -2239212.5004394646, 99737.85005797763 -2239212.50165438, 99737.8488430651 -2239212.5039273216, 99737.80531607421 -2239212.556965113, 99737.75227828235 -2239212.6004921044, 99737.750005335 -2239212.6017070203, 99737.74879042251 -2239212.6039799615, 99737.74414890668 -2239212.609635665, 99737.74879042251 -2239212.615291368, 99737.78113389458 -2239212.6758017484, 99737.80105090635 -2239212.741459337, 99737.80777605821 -2239212.80974095, 99737.80777605821 -2239212.85995152, 99737.8579866284 -2239212.85995152, 99737.9262682411 -2239212.866676672, 99737.99192582973 -2239212.8865936836, 99738.05243620995 -2239212.9189371555, 99738.10547400182 -2239212.962464147, 99738.14900099271 -2239213.0155019383, 99738.15021590519 -2239213.0177748795, 99738.15248885256 -2239213.0189897954, 99738.20552664442 -2239213.0625167866, 99738.24905363531 -2239213.115554578, 99738.28139710738 -2239213.1760649583, 99738.30131411915 -2239213.241722547, 99738.30803927101 -2239213.31000416, 99738.30803927101 -2239213.41005681, 99738.30131411915 -2239213.4783384227, 99738.28139710738 -2239213.5439960114, 99738.24905363531 -2239213.6045063916, 99738.2079866284 -2239213.654546684, 99738.2079866284 -2239213.71021473, 99738.20126147654 -2239213.7784963427, 99738.1816023578 -2239213.843303772, 99738.20552664442 -2239213.862937927, 99738.24905363531 -2239213.9159757183, 99738.28139710738 -2239213.9764860985, 99738.30131411915 -2239214.042143687, 99738.30803927101 -2239214.1104253, 99738.30803927101 -2239214.31053059, 99738.30131411915 -2239214.3788122027, 99738.28139710738 -2239214.4444697914, 99738.24905363531 -2239214.5049801716, 99738.20552664442 -2239214.558017963, 99738.15248885256 -2239214.6015449543, 99738.15021590554 -2239214.60275987, 99738.14900099271 -2239214.605032812, 99738.10547400182 -2239214.6580706034, 99738.05243620995 -2239214.7015975947, 99737.99192582973 -2239214.7339410665, 99737.98372643965 -2239214.736428324, 99737.98123917967 -2239214.7446277216, 99737.94889570761 -2239214.805138102, 99737.90536871672 -2239214.8581758933, 99737.85233092486 -2239214.9017028846, 99737.79182054463 -2239214.9340463565, 99737.72616295601 -2239214.953963368, 99737.6578813433 -2239214.96068852, 99737.60221328623 -2239214.96068852, 99737.55217299725 -2239215.0017555244, 99737.49166261703 -2239215.0340989963, 99737.4260050284 -2239215.054016008, 99737.40707578755 -2239215.0558803757, 99737.40510550402 -2239215.058281173, 99737.35206771216 -2239215.1018081643, 99737.34979476513 -2239215.1030230797, 99737.3485798523 -2239215.105296022, 99737.30505286141 -2239215.1583338133, 99737.30183084974 -2239215.16097805, 99737.30505286141 -2239215.1636222866, 99737.3485798523 -2239215.216660078, 99737.38092332437 -2239215.2771704583, 99737.40084033614 -2239215.342828047, 99737.407565488 -2239215.41110966, 99737.407565488 -2239215.4964907933, 99737.45212035466 -2239215.5203058654, 99737.50515814652 -2239215.5638328567, 99737.54868513742 -2239215.616870648, 99737.58102860948 -2239215.6773810284, 99737.60094562125 -2239215.743038617, 99737.60767077311 -2239215.81132023, 99737.60767077311 -2239215.8967013634, 99737.65222563976 -2239215.9205164355, 99737.70526343162 -2239215.964043427, 99737.74879042251 -2239216.0170812183, 99737.78113389458 -2239216.0775915985, 99737.78362115128 -2239216.085790985, 99737.79182054463 -2239216.088278244, 99737.85233092486 -2239216.1206217157, 99737.90536871672 -2239216.164148707, 99737.94889570761 -2239216.2171864985, 99737.98123917967 -2239216.2776968786, 99737.98372643965 -2239216.285896276, 99737.99192582973 -2239216.2883835337, 99738.05243620995 -2239216.3207270056, 99738.10547400182 -2239216.364253997, 99738.14900099271 -2239216.4172917884, 99738.18134446477 -2239216.4778021686, 99738.20126147654 -2239216.543459757, 99738.20307761295 -2239216.5618992997, 99738.2581971987 -2239216.5618992997, 99738.30822351994 -2239216.5668264623, 99738.3582498412 -2239216.5618992997, 99738.7584604114 -2239216.5618992997, 99738.8267420241 -2239216.5686244518, 99738.89239961273 -2239216.5885414635, 99738.95290999295 -2239216.6208849354, 99739.00594778481 -2239216.6644119266, 99739.00791806876 -2239216.6668127244, 99739.02684730921 -2239216.668677092, 99739.09250489784 -2239216.688594104, 99739.15301527806 -2239216.7209375757, 99739.20605306992 -2239216.764464567, 99739.24958006082 -2239216.8175023585, 99739.28192353288 -2239216.8780127387, 99739.30184054465 -2239216.9436703273, 99739.30856569651 -2239217.01195194, 99739.30856569651 -2239217.11200458, 99739.30184054465 -2239217.180286193, 99739.2942768954 -2239217.205220203, 99739.32488970796 -2239217.1888573137, 99739.39054729659 -2239217.168940302, 99739.40947653746 -2239217.1670759344, 99739.41144682099 -2239217.164675137, 99739.46448461285 -2239217.1211481458, 99739.52499499307 -2239217.088804674, 99739.5906525817 -2239217.068887662, 99739.60958182214 -2239217.0670232945, 99739.61155210609 -2239217.0646224967, 99739.66458989795 -2239217.0210955054, 99739.71067008185 -2239216.996465134, 99739.71586991646 -2239216.9436703273, 99739.73578692823 -2239216.8780127387, 99739.76813040029 -2239216.8175023585, 99739.81165739118 -2239216.764464567, 99739.86469518305 -2239216.7209375757, 99739.92520556327 -2239216.688594104, 99739.99086315189 -2239216.668677092, 99740.0591447646 -2239216.66195194, 99740.1591974072 -2239216.66195194, 99740.20922372845 -2239216.6668791026, 99740.2592500497 -2239216.66195194, 99740.3593026923 -2239216.66195194, 99740.42758430501 -2239216.668677092, 99740.49324189364 -2239216.688594104, 99740.55375227386 -2239216.7209375757, 99740.60679006572 -2239216.764464567, 99740.65031705661 -2239216.8175023585, 99740.68266052868 -2239216.8780127387, 99740.70257754045 -2239216.9436703273, 99740.70930269231 -2239217.01195194, 99740.70930269231 -2239217.21205722, 99740.70257754045 -2239217.2803388326, 99740.68266052868 -2239217.3459964213, 99740.65031705661 -2239217.4065068015, 99740.60679006572 -2239217.459544593, 99740.60438926567 -2239217.4615148786, 99740.60432288726 -2239217.46218883, 99740.6092500497 -2239217.51221515, 99740.6092500497 -2239217.71232044, 99740.60252489784 -2239217.780602053, 99740.58260788607 -2239217.8462596415, 99740.550264414 -2239217.9067700217, 99740.50673742311 -2239217.959807813, 99740.45369963125 -2239218.0033348044, 99740.39318925103 -2239218.0356782763, 99740.3275316624 -2239218.055595288, 99740.2592500497 -2239218.06232044, 99740.1591974072 -2239218.06232044, 99740.1091710859 -2239218.0573932775, 99740.10849713645 -2239218.0574596557, 99740.10652685292 -2239218.059860453, 99740.05348906106 -2239218.1033874443, 99739.99297868084 -2239218.135730916, 99739.98477928748 -2239218.138218175, 99739.98229203078 -2239218.1464175615, 99739.94994855871 -2239218.2069279416, 99739.90642156782 -2239218.259965733, 99739.85338377596 -2239218.3034927244, 99739.79287339574 -2239218.3358361963, 99739.72721580711 -2239218.355753208, 99739.70828657539 -2239218.3576175747, 99739.70631628271 -2239218.3600183832, 99739.65327849085 -2239218.4035453745, 99739.59276811063 -2239218.4358888464, 99739.527110522 -2239218.455805858, 99739.4588289093 -2239218.46253101, 99739.3587762667 -2239218.46253101, 99739.290494654 -2239218.455805858, 99739.27887399775 -2239218.4522807705, 99739.24958006082 -2239218.507085872, 99739.20605306992 -2239218.5601236634, 99739.15301527806 -2239218.6036506547, 99739.15074233084 -2239218.60486557, 99739.14952741831 -2239218.6071385117, 99739.10600042742 -2239218.6601763032, 99739.05296263556 -2239218.7037032945, 99738.99245225533 -2239218.7360467664, 99738.92679466671 -2239218.755963778, 99738.87399986494 -2239218.7611636124, 99738.8493694906 -2239218.8072438017, 99738.80584249971 -2239218.860281593, 99738.75280470785 -2239218.9038085844, 99738.69229432763 -2239218.9361520563, 99738.626636739 -2239218.956069068, 99738.5583551263 -2239218.96279422, 99738.4583024838 -2239218.96279422, 99738.4082761625 -2239218.9578670575, 99738.40362304353 -2239218.9583253497, 99738.40136676174 -2239218.981233763, 99738.38144974997 -2239219.0468913517, 99738.3491062779 -2239219.107401732, 99738.30557928701 -2239219.1604395234, 99738.25254149515 -2239219.2039665147, 99738.2502685478 -2239219.2051814306, 99738.24905363531 -2239219.2074543717, 99738.20552664442 -2239219.2604921632, 99738.15248885256 -2239219.3040191545, 99738.09197847234 -2239219.3363626264, 99738.02632088371 -2239219.356279638, 99737.958039271 -2239219.36300479, 99737.70226592873 -2239219.36300479, 99737.65222563976 -2239219.4040717944, 99737.59171525954 -2239219.4364152662, 99737.52605767091 -2239219.456332278, 99737.4577760582 -2239219.46305743, 99737.30205535909 -2239219.46305743, 99737.25201506955 -2239219.5041244347, 99737.19150468933 -2239219.5364679066, 99737.1258471007 -2239219.5563849183, 99737.057565488 -2239219.5631100703, 99736.9575128455 -2239219.5631100703, 99736.8892312328 -2239219.5563849183, 99736.82357364417 -2239219.5364679066, 99736.76306326395 -2239219.5041244347, 99736.71002547209 -2239219.4605974434, 99736.70795438564 -2239219.458073817, 99736.6573549178 -2239219.46305743, 99736.4572496327 -2239219.46305743, 99736.38896802 -2239219.456332278, 99736.32331043137 -2239219.4364152662, 99736.26280005115 -2239219.4040717944, 99736.20976225928 -2239219.360544803, 99736.16623526839 -2239219.3075070116, 99736.16502035591 -2239219.3052340704, 99736.16274740854 -2239219.3040191545, 99736.11270711957 -2239219.2629521503, 99736.0570390625 -2239219.2629521503, 99735.9887574498 -2239219.2562269983, 99735.92309986117 -2239219.2363099866, 99735.86258948095 -2239219.2039665147, 99735.80955168909 -2239219.1604395234, 99735.7660246982 -2239219.107401732, 99735.76480977805 -2239219.1051287763, 99735.76253683835 -2239219.1039138646, 99735.70949904648 -2239219.0603868733, 99735.66597205559 -2239219.007349082, 99735.63362858353 -2239218.9468387016, 99735.61371157176 -2239218.881181113, 99735.6069864199 -2239218.8128995, 99735.6069864199 -2239218.71284686, 99735.61191358234 -2239218.66282054, 99735.6069864199 -2239218.61279422, 99735.6069864199 -2239218.41268893, 99735.61197003162 -2239218.362089471, 99735.60944640398 -2239218.3600183832, 99735.56591941309 -2239218.3069805917, 99735.53357594102 -2239218.2464702115, 99735.51365892925 -2239218.180812623, 99735.50693377739 -2239218.11253101, 99735.50693377739 -2239218.01247836, 99735.51191738911 -2239217.961878901, 99735.50939376139 -2239217.959807813, 99735.5074234687 -2239217.9574070047, 99735.488494237 -2239217.955542638, 99735.42283664837 -2239217.9356256262, 99735.36232626815 -2239217.9032821544, 99735.30928847629 -2239217.859755163, 99735.2657614854 -2239217.8067173716, 99735.23341801333 -2239217.7462069914, 99735.21350100156 -2239217.6805494027, 99735.2067758497 -2239217.61226779, 99735.2067758497 -2239217.5268866564, 99735.16222098304 -2239217.5030715843, 99735.11218069406 -2239217.46200458, 99734.8564073518 -2239217.46200458, 99734.80638103056 -2239217.4570774175, 99734.7563547093 -2239217.46200458, 99734.6563020667 -2239217.46200458, 99734.60570259861 -2239217.4570209673, 99734.60363151252 -2239217.459544593, 99734.55059372066 -2239217.5030715843, 99734.49008334044 -2239217.535415056, 99734.42442575181 -2239217.555332068, 99734.3561441391 -2239217.56205722, 99734.2560914965 -2239217.56205722, 99734.20606517524 -2239217.5571300574, 99734.156038854 -2239217.56205722, 99734.0559862114 -2239217.56205722, 99733.9877045987 -2239217.555332068, 99733.95593356885 -2239217.5456944313, 99733.92416253901 -2239217.555332068, 99733.90523330729 -2239217.5571964346, 99733.90326301461 -2239217.559597243, 99733.85022522275 -2239217.6031242344, 99733.84795227574 -2239217.60433915, 99733.84673736291 -2239217.606612092, 99733.80321037202 -2239217.6596498834, 99733.75017258016 -2239217.7031768747, 99733.68966219993 -2239217.7355203466, 99733.62400461131 -2239217.7554373583, 99733.5557229986 -2239217.7621625103, 99733.4556703561 -2239217.7621625103, 99733.38738874339 -2239217.7554373583, 99733.35561771355 -2239217.7457997217, 99733.3238466837 -2239217.7554373583, 99733.255565071 -2239217.7621625103, 99733.19989701382 -2239217.7621625103, 99733.14985672485 -2239217.8032295145, 99733.08934634463 -2239217.8355729864, 99733.023688756 -2239217.855489998, 99732.9554071433 -2239217.86221515, 99732.8553545008 -2239217.86221515, 99732.7870728881 -2239217.855489998, 99732.72141529947 -2239217.8355729864, 99732.66090491925 -2239217.8032295145, 99732.60786712739 -2239217.7597025232, 99732.6057960413 -2239217.7571788975, 99732.5551965731 -2239217.7621625103, 99732.4551439306 -2239217.7621625103, 99732.38686231789 -2239217.7554373583, 99732.32120472926 -2239217.7355203466, 99732.26069434904 -2239217.7031768747, 99732.2106540595 -2239217.66210987, 99732.1549860029 -2239217.66210987, 99732.0867043902 -2239217.655384718, 99732.02104680157 -2239217.6354677062, 99731.96053642135 -2239217.6031242344, 99731.90749862949 -2239217.559597243, 99731.8639716386 -2239217.5065594516, 99731.86275671844 -2239217.504286496, 99731.86048377874 -2239217.5030715843, 99731.80744598688 -2239217.459544593, 99731.76391899599 -2239217.4065068015, 99731.73157552393 -2239217.3459964213, 99731.71165851215 -2239217.2803388326, 99731.70493336029 -2239217.21205722, 99731.70493336029 -2239217.01195194, 99731.71165851215 -2239216.9436703273, 99731.73157552393 -2239216.8780127387, 99731.76391899599 -2239216.8175023585, 99731.8049860029 -2239216.767462066, 99731.8049860029 -2239216.61174137, 99731.81171115476 -2239216.543459757, 99731.83162816653 -2239216.4778021686, 99731.8639716386 -2239216.4172917884, 99731.90503864549 -2239216.367251496, 99731.90503864549 -2239216.31158344, 99731.90996580794 -2239216.26155712, 99731.90503864549 -2239216.2115308, 99731.90503864549 -2239216.11147815, 99731.91176379735 -2239216.043196537, 99731.93168080912 -2239215.9775389484, 99731.96402428119 -2239215.917028568, 99732.005091288 -2239215.866988276, 99732.005091288 -2239215.71126758, 99732.01181643986 -2239215.642985967, 99732.02145407554 -2239215.61121494, 99732.01181643986 -2239215.579443913, 99732.005091288 -2239215.5111623, 99732.005091288 -2239215.41110966, 99732.01001845092 -2239215.361083335, 99732.00995207312 -2239215.3604093897, 99732.00755127208 -2239215.3584391032, 99731.96402428119 -2239215.3054013117, 99731.93168080912 -2239215.2448909315, 99731.91176379735 -2239215.179233343, 99731.90989942956 -2239215.160304099, 99731.90749862949 -2239215.1583338133, 99731.8639716386 -2239215.105296022, 99731.83162816653 -2239215.0447856416, 99731.81171115476 -2239214.979128053, 99731.80984678802 -2239214.9601988196, 99731.80744598688 -2239214.958228533, 99731.76391899599 -2239214.9051907416, 99731.73157552393 -2239214.8446803614, 99731.71165851215 -2239214.779022773, 99731.70979414435 -2239214.760093529, 99731.70739334439 -2239214.758123243, 99731.6638663535 -2239214.7050854517, 99731.63152288143 -2239214.6445750715, 99731.61160586966 -2239214.578917483, 99731.6048807178 -2239214.51063587, 99731.6048807178 -2239214.41058323, 99731.60980788028 -2239214.36055691, 99731.60974150187 -2239214.3598829587, 99731.60734070178 -2239214.357912673, 99731.56381371089 -2239214.3048748816, 99731.53147023883 -2239214.2443645014, 99731.51155322706 -2239214.178706913, 99731.50968886031 -2239214.1597776795, 99731.50728805928 -2239214.157807393, 99731.46376106839 -2239214.1047696015, 99731.4625461559 -2239214.1024966603, 99731.46027320855 -2239214.1012817444, 99731.40723541669 -2239214.057754753, 99731.3637084258 -2239214.0047169616, 99731.33136495373 -2239213.9442065815, 99731.31144794196 -2239213.878548993, 99731.30958357417 -2239213.859619749, 99731.30718277418 -2239213.857649463, 99731.26365578329 -2239213.8046116717, 99731.2624408708 -2239213.8023387305, 99731.26016792345 -2239213.8011238147, 99731.20713013159 -2239213.7575968234, 99731.1636031407 -2239213.704559032, 99731.16238822782 -2239213.70228609, 99731.16011528095 -2239213.7010711743, 99731.10707748908 -2239213.657544183, 99731.1051071964 -2239213.6551433746, 99731.0861779647 -2239213.653279008, 99731.02052037607 -2239213.633361996, 99730.96000999585 -2239213.6010185243, 99730.90697220399 -2239213.557491533, 99730.90500192046 -2239213.5550907357, 99730.8860726795 -2239213.553226368, 99730.82041509087 -2239213.5333093563, 99730.75990471065 -2239213.5009658844, 99730.70686691879 -2239213.457438893, 99730.6633399279 -2239213.4044011016, 99730.63952485814 -2239213.35984624, 99730.554143722 -2239213.35984624, 99730.48586210929 -2239213.353121088, 99730.42020452066 -2239213.333204076, 99730.35969414044 -2239213.3008606043, 99730.30665634858 -2239213.257333613, 99730.30468605632 -2239213.254932805, 99730.28575682419 -2239213.2530684383, 99730.22009923556 -2239213.2331514265, 99730.15958885534 -2239213.2008079547, 99730.1095485658 -2239213.15974095, 99729.9538278667 -2239213.15974095, 99729.885546254 -2239213.153015798, 99729.81988866537 -2239213.133098786, 99729.75937828515 -2239213.1007553143, 99729.70933799617 -2239213.05968831, 99729.6536699391 -2239213.05968831, 99729.58538832639 -2239213.052963158, 99729.51973073777 -2239213.0330461464, 99729.45922035754 -2239213.0007026745, 99729.40618256568 -2239212.957175683, 99729.36265557479 -2239212.9041378917, 99729.36144066231 -2239212.9018649505, 99729.35916771494 -2239212.9006500347, 99729.30612992308 -2239212.8571230434, 99729.26260293218 -2239212.804085252, 99729.26138801203 -2239212.8018122963, 99729.25911507235 -2239212.8005973846, 99729.20607728048 -2239212.7570703933, 99729.16255028959 -2239212.704032602, 99729.13020681753 -2239212.6435222216, 99729.11028980576 -2239212.577864633, 99729.10842543902 -2239212.5589353996, 99729.10602463798 -2239212.556965113, 99729.10405435445 -2239212.554564316, 99729.08512511359 -2239212.552699948, 99729.01946752497 -2239212.5327829365, 99728.95895714474 -2239212.5004394646, 99728.90891684328 -2239212.45937245, 99728.7531961561 -2239212.45937245, 99728.6849145434 -2239212.452647298, 99728.65314351355 -2239212.4430096615, 99728.62137248371 -2239212.452647298, 99728.553090871 -2239212.45937245, 99728.4530382284 -2239212.45937245, 99728.38475661569 -2239212.452647298, 99728.31909902707 -2239212.4327302864, 99728.25858864684 -2239212.4003868145, 99728.20854835787 -2239212.3593198103, 99727.8527223731 -2239212.3593198103, 99727.7844407604 -2239212.3525946583, 99727.71878317177 -2239212.3326776465, 99727.65827279155 -2239212.3003341747, 99727.60523499969 -2239212.2568071834, 99727.60326471574 -2239212.2544063856, 99727.58433547529 -2239212.252542018, 99727.51867788666 -2239212.232625006, 99727.45816750644 -2239212.2002815343, 99727.40512971458 -2239212.156754543, 99727.4031594219 -2239212.1543537346, 99727.38423019019 -2239212.152489368, 99727.31857260157 -2239212.132572356, 99727.25806222134 -2239212.1002288843, 99727.20502442948 -2239212.056701893, 99727.16149743859 -2239212.0036641015, 99727.1602825261 -2239212.0013911603, 99727.15800957875 -2239212.0001762444, 99727.10497178689 -2239211.956649253, 99727.061444796 -2239211.9036114616, 99727.02910132393 -2239211.8431010814, 99727.00918431216 -2239211.777443493, 99727.0024591603 -2239211.70916188, 99727.0024591603 -2239211.5090566, 99727.00918431216 -2239211.440774987, 99727.02910132393 -2239211.3751173983, 99727.061444796 -2239211.314607018, 99727.10497178689 -2239211.2615692266, 99727.15800957875 -2239211.2180422354, 99727.16028251879 -2239211.2168273237, 99727.16149743859 -2239211.2145543685, 99727.20502442948 -2239211.161516577, 99727.25806222134 -2239211.1179895857, 99727.31857260157 -2239211.085646114, 99727.38423019019 -2239211.065729102, 99727.40315943063 -2239211.0638647345, 99727.40512971458 -2239211.0614639367, 99727.45816750644 -2239211.0179369454, 99727.51867788666 -2239210.9855934735, 99727.58433547529 -2239210.965676462, 99727.652617088 -2239210.95895131, 99727.70828514507 -2239210.95895131, 99727.75832543404 -2239210.9178843056, 99727.81883581427 -2239210.8855408337, 99727.88449340289 -2239210.865623822, 99727.9527750156 -2239210.85889867, 99728.50870628557 -2239210.85889867, 99728.55874657455 -2239210.8178316657, 99728.61925695477 -2239210.785488194, 99728.6849145434 -2239210.765571182, 99728.7531961561 -2239210.75884603, 99728.90891684328 -2239210.75884603, 99728.95895714474 -2239210.7177790157, 99729.00351201139 -2239210.6939639435, 99729.00351201139 -2239210.652967404, 99728.9624450045 -2239210.6029271116, 99728.93010153243 -2239210.5424167314, 99728.92761427246 -2239210.534217334, 99728.91941488237 -2239210.5317300763, 99728.85890450215 -2239210.4993866044, 99728.80886421318 -2239210.4583196, 99728.7531961561 -2239210.4583196, 99728.7031698348 -2239210.4533924377, 99728.6531435135 -2239210.4583196, 99727.99715960103 -2239210.4583196, 99727.94711931206 -2239210.4993866044, 99727.88660893183 -2239210.5317300763, 99727.82095134321 -2239210.551647088, 99727.7526697305 -2239210.55837224, 99727.1523538752 -2239210.55837224, 99727.08407226249 -2239210.551647088, 99727.01841467386 -2239210.5317300763, 99726.95790429364 -2239210.4993866044, 99726.90486650178 -2239210.455859613, 99726.90289621825 -2239210.453458816, 99726.88396697739 -2239210.451594448, 99726.81830938876 -2239210.4316774365, 99726.75779900854 -2239210.3993339646, 99726.707758719 -2239210.35826696, 99726.6520906625 -2239210.35826696, 99726.58380904979 -2239210.351541808, 99726.5520380199 -2239210.3419041713, 99726.52026699 -2239210.351541808, 99726.50133774956 -2239210.3534061755, 99726.49936746561 -2239210.3558069733, 99726.44632967375 -2239210.3993339646, 99726.44405672654 -2239210.40054888, 99726.44284181402 -2239210.4028218216, 99726.4017748071 -2239210.452862114, 99726.4017748071 -2239210.90874074, 99726.39504965524 -2239210.9770223526, 99726.37513264347 -2239211.0426799413, 99726.34278917141 -2239211.1031903215, 99726.29926218052 -2239211.156228113, 99726.29686138059 -2239211.1581983985, 99726.29499701274 -2239211.177127643, 99726.27508000097 -2239211.2427852317, 99726.2427365289 -2239211.303295612, 99726.20166952201 -2239211.3533359044, 99726.20166952201 -2239211.40900395, 99726.19494437015 -2239211.477285563, 99726.17502735837 -2239211.5429431517, 99726.14268388631 -2239211.603453532, 99726.09915689542 -2239211.6564913234, 99726.04611910356 -2239211.7000183146, 99726.04384616365 -2239211.7012332263, 99726.0426312438 -2239211.7035061815, 99725.99910425291 -2239211.756543973, 99725.94606646105 -2239211.8000709643, 99725.88555608083 -2239211.832414436, 99725.8198984922 -2239211.852331448, 99725.7516168795 -2239211.8590566, 99725.6515642369 -2239211.8590566, 99725.5832826242 -2239211.852331448, 99725.51762503557 -2239211.832414436, 99725.45711465535 -2239211.8000709643, 99725.40407686349 -2239211.756543973, 99725.3605498726 -2239211.7035061815, 99725.35933495275 -2239211.7012332263, 99725.35706201284 -2239211.7000183146, 99725.30402422098 -2239211.6564913234, 99725.26049723009 -2239211.603453532, 99725.22815375803 -2239211.5429431517, 99725.20823674626 -2239211.477285563, 99725.20637237951 -2239211.4583563297, 99725.20397157838 -2239211.456386043, 99725.16044458748 -2239211.4033482517, 99725.12810111542 -2239211.3428378715, 99725.10818410365 -2239211.277180283, 99725.10145895179 -2239211.20889867, 99725.10145895179 -2239210.50853017, 99725.10818410365 -2239210.4402485574, 99725.12810111542 -2239210.3745909687, 99725.16044458748 -2239210.3140805885, 99725.2015115944 -2239210.264040296),
(99729.4984977109 -2239209.7583196, 99729.5536172965 -2239209.7583196, 99729.60421676433 -2239209.763303213, 99729.60628785078 -2239209.7607795866, 99729.60868865077 -2239209.758809301, 99729.61055301856 -2239209.739880057, 99729.63047003033 -2239209.6742224684, 99729.6628135024 -2239209.613712088, 99729.70388050929 -2239209.5636717957, 99729.70388050929 -2239209.50800375, 99729.70880767224 -2239209.457977425, 99729.70388050929 -2239209.4079511, 99729.70388050929 -2239209.352283054, 99729.6628135024 -2239209.3022427615, 99729.66159858255 -2239209.2999698063, 99729.65932564264 -2239209.2987548946, 99729.60628785078 -2239209.2552279034, 99729.60421676433 -2239209.252704277, 99729.5536172965 -2239209.25768789, 99729.3033014412 -2239209.25768789, 99729.3033014412 -2239209.30789846, 99729.29837427876 -2239209.35792478, 99729.3033014412 -2239209.4079511, 99729.3033014412 -2239209.4933322333, 99729.34785630785 -2239209.5171473054, 99729.40089409972 -2239209.5606742967, 99729.44442109061 -2239209.613712088, 99729.47676456267 -2239209.6742224684, 99729.49668157444 -2239209.739880057, 99729.4984977109 -2239209.7583196))
</op>
</test>
<test>
<desc>buffer-0.75: see path_to_url
<op name="buffer" arg1="a" arg2="0.75">
POLYGON((99724.80151159 -2239210.14114081,99724.80151159 -2239209.90821432,99724.81592263 -2239209.76189657,99724.85860194 -2239209.62120174,99724.9042938714 -2239209.53571816,99724.90156424 -2239209.50800375,99724.90156424 -2239209.4079511,99724.91597528 -2239209.26163336,99724.95865459 -2239209.12093853,99725.02796203 -2239208.99127343,99725.0428380369 -2239208.97314696,99725.05870723 -2239208.92083324,99725.12801467 -2239208.79116814,99725.22128679 -2239208.67751573,99725.2762402889 -2239208.63241656,99725.32133944 -2239208.57746309,99725.3762929231 -2239208.53236393,99725.42139208 -2239208.47741045,99725.4763455623 -2239208.43231129,99725.52144472 -2239208.3773578,99725.5763982031 -2239208.33225864,99725.62149736 -2239208.27730516,99725.6764508589 -2239208.23220599,99725.72155001 -2239208.17725252,99725.83520242 -2239208.0839804,99725.96486752 -2239208.01467296,99726.0171812128 -2239207.99880377,99726.0353077 -2239207.98392775,99726.1649728 -2239207.91462031,99726.30566764 -2239207.871941,99726.45198538 -2239207.85752996,99727.4525118 -2239207.85752996,99727.5025381233 -2239207.86245712,99727.55256445 -2239207.85752996,99727.8488737358 -2239207.85752996,99727.86018122 -2239207.82025418,99727.90314351 -2239207.73987739,99727.90314351 -2239207.60700354,99727.91755455 -2239207.4606858,99727.96023386 -2239207.31999096,99728.0295413 -2239207.19032586,99728.12281343 -2239207.07667345,99728.1777669131 -2239207.03157429,99728.22286607 -2239206.97662081,99728.2778195531 -2239206.93152165,99728.32291871 -2239206.87656817,99728.3778722081 -2239206.831469,99728.42297136 -2239206.77651552,99728.4779248283 -2239206.73141638,99728.523024 -2239206.67646288,99728.63667641 -2239206.58319076,99728.76634151 -2239206.51388332,99728.8010181124 -2239206.50336429,99728.82318193 -2239206.4763576,99728.93683434 -2239206.38308547,99729.06649944 -2239206.31377803,99729.118813149 -2239206.29790884,99729.13693962 -2239206.28303283,99729.26660472 -2239206.21372539,99729.40729956 -2239206.17104608,99729.5536173 -2239206.15663504,99729.5864384989 -2239206.15663504,99729.5979079113 -2239206.15050451,99729.60403844 -2239206.1390351,99729.60403844 -2239206.00616126,99729.61844948 -2239205.85984352,99729.66112879 -2239205.71914868,99729.73043623 -2239205.58948358,99729.82370835 -2239205.47583117,99729.8786618331 -2239205.43073201,99729.92376099 -2239205.37577853,99729.9787145011 -2239205.33067935,99730.02381364 -2239205.27572589,99730.13746605 -2239205.18245376,99730.26713115 -2239205.11314632,99730.3018077423 -2239205.10262729,99730.32397156 -2239205.0756206,99730.43762397 -2239204.98234848,99730.56728908 -2239204.91304104,99730.6196027728 -2239204.89717186,99730.63772926 -2239204.88229583,99730.76739436 -2239204.81298839,99730.90808919 -2239204.77030908,99731.05440693 -2239204.75589804,99731.0872281389 -2239204.75589804,99731.16760493 -2239204.71293575,99731.30829976 -2239204.67025644,99731.45461751 -2239204.6558454,99731.5874913489 -2239204.6558454,99731.66786814 -2239204.61288311,99731.7201818627 -2239204.59701392,99731.73830833 -2239204.58213791,99731.86797343 -2239204.51283047,99731.9026500223 -2239204.50231144,99731.92481384 -2239204.47530475,99731.979767316 -2239204.4302056,99732.02486649 -2239204.3752521,99732.0518731808 -2239204.35308828,99732.06239221 -2239204.31841169,99732.13169965 -2239204.18874659,99732.22497177 -2239204.07509417,99732.2799252531 -2239204.02999501,99732.32502441 -2239203.97504153,99732.43867683 -2239203.88176941,99732.56834193 -2239203.81246197,99732.70903676 -2239203.76978266,99732.8553545 -2239203.75537162,99733.15551243 -2239203.75537162,99733.30183017 -2239203.76978266,99733.442525 -2239203.81246197,99733.5721901 -2239203.88176941,99733.5903165651 -2239203.89664542,99733.64263029 -2239203.91251461,99733.77229539 -2239203.98182205,99733.8859478 -2239204.07509417,99733.9081116236 -2239204.10210087,99733.94278822 -2239204.1126199,99734.07245332 -2239204.18192734,99734.090579791 -2239204.19680335,99734.1428935 -2239204.21267254,99734.2725586 -2239204.28197998,99734.2906850673 -2239204.29685599,99734.34299879 -2239204.31272518,99734.4385623232 -2239204.36380495,99734.50246188 -2239204.37009851,99734.64315671 -2239204.41277782,99734.77282181 -2239204.48208526,99734.8634839262 -2239204.55648974,99735.00272509 -2239204.5702038,99735.14341993 -2239204.61288311,99735.27308503 -2239204.68219055,99735.38673744 -2239204.77546267,99735.48000956 -2239204.88911508,99735.549317 -2239205.01878018,99735.59199631 -2239205.15947502,99735.60640735 -2239205.30579276,99735.60640735 -2239205.80605597,99735.59199631 -2239205.95237371,99735.549317 -2239206.09306855,99735.48000956 -2239206.22273365,99735.38673744 -2239206.33638606,99735.3863763185 -2239206.33668242,99735.439088742 -2239206.3648578,99735.50298831 -2239206.37115136,99735.64368314 -2239206.41383068,99735.77334824 -2239206.48313812,99735.88700065 -2239206.57641024,99735.98027277 -2239206.69006265,99736.04958021 -2239206.81972775,99736.0654493992 -2239206.87204146,99736.08032542 -2239206.89016794,99736.14963286 -2239207.01983304,99736.19231217 -2239207.16052787,99736.20672321 -2239207.30684561,99736.20672321 -2239207.40689825,99736.2017960474 -2239207.45692457,99736.20672321 -2239207.50695089,99736.20672321 -2239207.63982474,99736.2496855 -2239207.72020153,99736.29236481 -2239207.86089637,99736.30677585 -2239208.00721411,99736.30677585 -2239208.04003531,99736.34973814 -2239208.1204121,99736.39241745 -2239208.26110694,99736.40682849 -2239208.40742468,99736.40682849 -2239208.44024588,99736.44979078 -2239208.52062267,99736.4924701 -2239208.66131751,99736.50688113 -2239208.80763525,99736.50688113 -2239208.94050908,99736.54984343 -2239209.02088589,99736.59252274 -2239209.16158072,99736.5988162972 -2239209.22548028,99736.64989607 -2239209.32104381,99736.69257538 -2239209.46173865,99736.6988689372 -2239209.52563821,99736.74994871 -2239209.62120174,99736.79262802 -2239209.76189657,99736.7967393798 -2239209.80363991,99736.88752708 -2239209.87814744,99736.9807992 -2239209.99179985,99737.05010664 -2239210.12146495,99737.09278595 -2239210.26215979,99737.10719699 -2239210.40847753,99737.10719699 -2239210.50230287,99737.18090448 -2239210.59211571,99737.25021192 -2239210.72178081,99737.2854776711 -2239210.83803638,99737.37419052 -2239210.88545439,99737.48784293 -2239210.97872651,99737.5329420869 -2239211.03367999,99737.58789557 -2239211.07877915,99737.6329947341 -2239211.13373264,99737.68794822 -2239211.1788318,99737.7101120377 -2239211.20583849,99737.74478863 -2239211.21635752,99737.87445373 -2239211.28566496,99737.98810614 -2239211.37893708,99738.0332052911 -2239211.43389055,99738.08815879 -2239211.47898972,99738.1332579599 -2239211.53394322,99738.18821143 -2239211.57904237,99738.28148355 -2239211.69269478,99738.35079099 -2239211.82235988,99738.3934703 -2239211.96305471,99738.40788134 -2239212.10937245,99738.40788134 -2239212.20942509,99738.3934703 -2239212.35574284,99738.35079099 -2239212.49643767,99738.2941740377 -2239212.60236054,99738.38831671 -2239212.67962143,99738.4334158619 -2239212.73457491,99738.48836936 -2239212.77967408,99738.58164148 -2239212.89332649,99738.65094892 -2239213.02299159,99738.69362823 -2239213.16368642,99738.70803927 -2239213.31000416,99738.70803927 -2239213.41005681,99738.69362823 -2239213.55637455,99738.65094892 -2239213.69706938,99738.6171829562 -2239213.76024105,99738.65094892 -2239213.82341273,99738.69362823 -2239213.96410756,99738.70803927 -2239214.1104253,99738.70803927 -2239214.31053059,99738.69362823 -2239214.45684833,99738.65094892 -2239214.59754316,99738.58164148 -2239214.72720826,99738.48836936 -2239214.84086067,99738.4334158741 -2239214.88595983,99738.38831671 -2239214.94091332,99738.2784097438 -2239215.03111163,99738.18821143 -2239215.1410186,99738.07455902 -2239215.23429073,99737.94489392 -2239215.30359817,99737.8341295888 -2239215.33719816,99737.88127298 -2239215.39464255,99737.95058042 -2239215.52430765,99737.99325973 -2239215.66500249,99737.9957755359 -2239215.6905459,99738.0783044636 -2239215.79110768,99738.18821143 -2239215.881306,99738.2784097438 -2239215.99121297,99738.38831671 -2239216.08141128,99738.4543715263 -2239216.1618993,99738.75846041 -2239216.1618993,99738.90477815 -2239216.17631033,99739.04547299 -2239216.21898965,99739.17513809 -2239216.28829709,99739.193264561 -2239216.3031731,99739.24557827 -2239216.31904229,99739.37524337 -2239216.38834973,99739.48889578 -2239216.48162185,99739.5088552311 -2239216.50594251,99739.52881468 -2239216.48162185,99739.64246709 -2239216.38834973,99739.77213219 -2239216.31904229,99739.91282702 -2239216.27636298,99740.05914476 -2239216.26195194,99740.15919741 -2239216.26195194,99740.20922373 -2239216.2668791,99740.25925005 -2239216.26195194,99740.35930269 -2239216.26195194,99740.50562043 -2239216.27636298,99740.64631527 -2239216.31904229,99740.77598037 -2239216.38834973,99740.88963278 -2239216.48162185,99740.9829049 -2239216.59527426,99741.05221234 -2239216.72493936,99741.09489165 -2239216.8656342,99741.10930269 -2239217.01195194,99741.10930269 -2239217.21205722,99741.09489165 -2239217.35837496,99741.05221234 -2239217.4990698,99741.00925005 -2239217.57944659,99741.00925005 -2239217.71232044,99740.99483901 -2239217.85863818,99740.9521597 -2239217.99933301,99740.88285226 -2239218.12899811,99740.78958014 -2239218.24265052,99740.67592772 -2239218.33592264,99740.54626262 -2239218.40523008,99740.40556779 -2239218.4479094,99740.25925005 -2239218.46232044,99740.255319081 -2239218.46232044,99740.18926428 -2239218.54280845,99740.07561187 -2239218.63608057,99739.94594677 -2239218.70538801,99739.8936330476 -2239218.7212572,99739.87550658 -2239218.73613321,99739.74584148 -2239218.80544066,99739.60514665 -2239218.84811997,99739.4659054834 -2239218.86183403,99739.4339422969 -2239218.88806554,99739.38884314 -2239218.94301902,99739.27519073 -2239219.03629114,99739.14552563 -2239219.10559858,99739.1108490276 -2239219.11611761,99739.08868521 -2239219.1431243,99738.9750328 -2239219.23639643,99738.8453677 -2239219.30570387,99738.70467287 -2239219.34838318,99738.6629295295 -2239219.35249454,99738.588422 -2239219.44328223,99738.5334685047 -2239219.4883814,99738.48836936 -2239219.54333487,99738.37471695 -2239219.636607,99738.24505185 -2239219.70591444,99738.10435701 -2239219.74859375,99737.95803927 -2239219.76300479,99737.8251654211 -2239219.76300479,99737.74478863 -2239219.80596708,99737.6040938 -2239219.84864639,99737.45777606 -2239219.86305743,99737.4249548511 -2239219.86305743,99737.34457806 -2239219.90601972,99737.20388323 -2239219.94869903,99737.05756549 -2239219.96311007,99736.95751285 -2239219.96311007,99736.8111951 -2239219.94869903,99736.67050027 -2239219.90601972,99736.5901234789 -2239219.86305743,99736.45724963 -2239219.86305743,99736.31093189 -2239219.84864639,99736.17023706 -2239219.80596708,99736.04057196 -2239219.73665964,99735.9362647377 -2239219.65105692,99735.91072132 -2239219.64854111,99735.77002649 -2239219.6058618,99735.64036139 -2239219.53655436,99735.52670898 -2239219.44328223,99735.4816098189 -2239219.38832875,99735.42665633 -2239219.34322959,99735.33338421 -2239219.22957718,99735.26407677 -2239219.09991208,99735.22139746 -2239218.95921724,99735.20698642 -2239218.8128995,99735.20698642 -2239218.71284686,99735.2119135826 -2239218.66282054,99735.20698642 -2239218.61279422,99735.20698642 -2239218.47992037,99735.16402413 -2239218.39954358,99735.12134482 -2239218.25884875,99735.1172334606 -2239218.21710542,99735.02644576 -2239218.14259788,99734.93317364 -2239218.02894547,99734.8638662 -2239217.89928037,99734.8524401864 -2239217.86161385,99734.80638103 -2239217.85707742,99734.75635471 -2239217.86200458,99734.7235335011 -2239217.86200458,99734.64315671 -2239217.90496687,99734.50246188 -2239217.94764618,99734.35614414 -2239217.96205722,99734.2560915 -2239217.96205722,99734.2060651767 -2239217.95713006,99734.15603885 -2239217.96205722,99734.0622135113 -2239217.96205722,99733.97240067 -2239218.03576472,99733.84273557 -2239218.10507216,99733.70204074 -2239218.14775147,99733.555723 -2239218.16216251,99733.45567036 -2239218.16216251,99733.3556177116 -2239218.15230819,99733.3379832532 -2239218.15404503,99733.24241972 -2239218.2051248,99733.10172488 -2239218.24780411,99732.95540714 -2239218.26221515,99732.8553545 -2239218.26221515,99732.70903676 -2239218.24780411,99732.56834193 -2239218.2051248,99732.4879651389 -2239218.16216251,99732.45514393 -2239218.16216251,99732.30882619 -2239218.14775147,99732.16813136 -2239218.10507216,99732.072567829 -2239218.05399239,99732.00866826 -2239218.04769883,99731.86797343 -2239218.00501951,99731.73830833 -2239217.93571207,99731.62465592 -2239217.84243995,99731.579556759 -2239217.78748647,99731.52460327 -2239217.74238731,99731.43133115 -2239217.6287349,99731.36202371 -2239217.4990698,99731.3193444 -2239217.35837496,99731.30493336 -2239217.21205722,99731.30493336 -2239217.01195194,99731.3193444 -2239216.8656342,99731.36202371 -2239216.72493936,99731.404986 -2239216.64456257,99731.404986 -2239216.61174137,99731.41939704 -2239216.46542363,99731.46207635 -2239216.32472879,99731.5077682803 -2239216.2392452,99731.50503865 -2239216.2115308,99731.50503865 -2239216.11147815,99731.51944969 -2239215.96516041,99731.562129 -2239215.82446558,99731.60509129 -2239215.74408879,99731.60509129 -2239215.71126758,99731.6149456152 -2239215.61121494,99731.60509129 -2239215.5111623,99731.60509129 -2239215.47834109,99731.562129 -2239215.3979643,99731.5462598148 -2239215.34565061,99731.53138379 -2239215.32752412,99731.46207635 -2239215.19785902,99731.4462071551 -2239215.1455453,99731.43133115 -2239215.12741883,99731.36202371 -2239214.99775373,99731.3461545199 -2239214.94544002,99731.33127851 -2239214.92731355,99731.26197107 -2239214.79764845,99731.21929176 -2239214.65695361,99731.20488072 -2239214.51063587,99731.20488072 -2239214.47781467,99731.16191843 -2239214.39743788,99731.151399397 -2239214.36276128,99731.1243927 -2239214.34059746,99731.03112058 -2239214.22694505,99730.96181314 -2239214.09727995,99730.9512941077 -2239214.06260335,99730.92428742 -2239214.04043953,99730.9021236047 -2239214.01343284,99730.867447 -2239214.00291381,99730.7377819 -2239213.93360637,99730.719655429 -2239213.91873036,99730.66734172 -2239213.90286117,99730.53767662 -2239213.83355373,99730.4333693977 -2239213.74795101,99730.40782598 -2239213.7454352,99730.26713115 -2239213.70275589,99730.13746605 -2239213.63344844,99730.1193395827 -2239213.61857243,99730.06702586 -2239213.60270324,99729.9866490689 -2239213.55974095,99729.95382787 -2239213.55974095,99729.80751013 -2239213.54532991,99729.66681529 -2239213.5026506,99729.5712517568 -2239213.45157083,99729.5073522 -2239213.44527727,99729.36665736 -2239213.40259796,99729.23699226 -2239213.33329052,99729.12333985 -2239213.24001839,99729.0782406931 -2239213.18506491,99729.02328721 -2239213.13996575,99728.9781880531 -2239213.08501227,99728.92323457 -2239213.03991311,99728.82996244 -2239212.9262607,99728.7974867573 -2239212.86550297,99728.7860173589 -2239212.85937245,99728.75319616 -2239212.85937245,99728.6531435116 -2239212.84951812,99728.55309087 -2239212.85937245,99728.45303823 -2239212.85937245,99728.30672049 -2239212.84496141,99728.16602565 -2239212.8022821,99728.0856488589 -2239212.75931981,99727.85272237 -2239212.75931981,99727.70640463 -2239212.74490877,99727.5657098 -2239212.70222946,99727.4360447 -2239212.63292202,99727.4179182327 -2239212.61804601,99727.36560451 -2239212.60217682,99727.23593941 -2239212.53286938,99727.21781293 -2239212.51799336,99727.16549923 -2239212.50212417,99727.03583413 -2239212.43281673,99726.92218172 -2239212.33954461,99726.8770825589 -2239212.28459113,99726.82212907 -2239212.23949197,99726.72885695 -2239212.12583956,99726.65954951 -2239211.99617446,99726.6168702 -2239211.85547962,99726.60245916 -2239211.70916188,99726.60245916 -2239211.5090566,99726.6066003423 -2239211.46701047,99726.5935520379 -2239211.49142213,99726.58725848 -2239211.5553217,99726.54457917 -2239211.69601653,99726.47527173 -2239211.82568163,99726.38199961 -2239211.93933404,99726.3270461269 -2239211.9844332,99726.28194697 -2239212.03938668,99726.16829455 -2239212.13265881,99726.03862945 -2239212.20196625,99725.89793462 -2239212.24464556,99725.75161688 -2239212.2590566,99725.65156424 -2239212.2590566,99725.5052465 -2239212.24464556,99725.36455166 -2239212.20196625,99725.23488656 -2239212.13265881,99725.12123415 -2239212.03938668,99725.0761349931 -2239211.9844332,99725.02118151 -2239211.93933404,99724.92790939 -2239211.82568163,99724.85860194 -2239211.69601653,99724.8427327449 -2239211.6437028,99724.82785674 -2239211.62557634,99724.7585493 -2239211.49591124,99724.71586999 -2239211.35521641,99724.70145895 -2239211.20889867,99724.70145895 -2239210.50853017,99724.71586999 -2239210.36221243,99724.7585493 -2239210.2215176,99724.80151159 -2239210.14114081),(99726.8770825589 -2239210.93362735,99726.8959962418 -2239210.91058097,99726.8653413 -2239210.90128189,99726.80177481 -2239210.86730489,99726.80177481 -2239210.90874074,99726.7911658513 -2239211.0164553,99726.82212907 -2239210.97872651,99726.8770825589 -2239210.93362735))
</op>
</test>
<test>
<desc>buffer-1.01 (#494)</desc>
<op name="buffer" arg1="a" arg2="1.01">
POLYGON ((99724.5415116 -2239210.07866999,99724.5415116 -2239209.9082143,99724.5609185 -2239209.7111731,99724.6183933 -2239209.521704,99724.6415642 -2239209.4783543,99724.6415642 -2239209.4079511,99724.6609711 -2239209.2109099,99724.7184459 -2239209.0214408,99724.8094364244 -2239208.85120953,99724.8184986 -2239208.8213356,99724.9118326 -2239208.6467199,99725.037439 -2239208.493668,99725.0923925052 -2239208.44856881,99725.1374917 -2239208.3936153,99725.19244517 -2239208.34851617,99725.2375443 -2239208.2935627,99725.2924978955 -2239208.24846343,99725.337597 -2239208.19351,99725.39255036 -2239208.14841096,99725.4376496 -2239208.0934574,99725.4926031603 -2239208.04835816,99725.5377022 -2239207.9934048,99725.6907542 -2239207.8677983,99725.8653698 -2239207.7744643,99725.8952440723 -2239207.76540204,99726.0654751 -2239207.6744116,99726.2549442 -2239207.6169368,99726.4519854 -2239207.59753,99727.4525118 -2239207.59753,99727.5025381 -2239207.60245714,99727.5525644 -2239207.59753,99727.64407656 -2239207.59753,99727.6625504 -2239207.4099623,99727.7200252 -2239207.2204933,99727.8133592 -2239207.0458776,99727.9389657 -2239206.8928257,99727.9939189892 -2239206.84772668,99728.0390183 -2239206.792773,99728.09397177 -2239206.74767387,99728.1390709 -2239206.6927204,99728.1940245825 -2239206.64762109,99728.2391236 -2239206.5926678,99728.2940769089 -2239206.54756877,99728.3391762 -2239206.4926151,99728.4922281 -2239206.3670087,99728.6537698364 -2239206.28066278,99728.7923861 -2239206.1669034,99728.9670017 -2239206.0735694,99728.9968758442 -2239206.06450717,99729.167107 -2239205.9735167,99729.3528016278 -2239205.91718687,99729.3634453 -2239205.80912,99729.4209201 -2239205.619651,99729.5142541 -2239205.4450353,99729.6398606 -2239205.2919834,99729.6948141603 -2239205.24688416,99729.7399132 -2239205.1919308,99729.7948667052 -2239205.14683161,99729.8399659 -2239205.0918781,99729.9930178 -2239204.9662717,99730.1545592497 -2239204.87992594,99730.2931757 -2239204.7661664,99730.4677914 -2239204.6728324,99730.4976652713 -2239204.66377026,99730.6678967 -2239204.5727797,99730.8573657 -2239204.5153049,99731.0180600617 -2239204.49947786,99731.0681072 -2239204.4727271,99731.2575763 -2239204.4152523,99731.4546175 -2239204.3958454,99731.5250206377 -2239204.3958454,99731.5683705 -2239204.3726744,99731.5982447981 -2239204.36361213,99731.7554017157 -2239204.27960999,99731.7959194991 -2239204.24635789,99731.8291718013 -2239204.2058398,99731.9155175 -2239204.0442983,99732.041124 -2239203.8912464,99732.0960776663 -2239203.84614711,99732.1411767 -2239203.7911938,99732.2942286 -2239203.6655873,99732.4688442 -2239203.5722533,99732.6583133 -2239203.5147785,99732.8553545 -2239203.4953716,99733.1555124 -2239203.4953716,99733.3525537 -2239203.5147785,99733.5420227 -2239203.5722533,99733.7122537168 -2239203.66324364,99733.742128 -2239203.6723059,99733.9167436 -2239203.76564,99734.0553600971 -2239203.8793995,99734.2125173287 -2239203.96340176,99734.2423912 -2239203.9724639,99734.4126222168 -2239204.06345424,99734.4424965 -2239204.0725165,99734.5151443635 -2239204.1113476,99734.5531854 -2239204.1150943,99734.7426544 -2239204.1725691,99734.9172701 -2239204.2659032,99734.9669580798 -2239204.30668106,99735.0534486 -2239204.3151996,99735.2429176 -2239204.3726744,99735.4175333 -2239204.4660085,99735.5705852 -2239204.5916149,99735.6961917 -2239204.7446668,99735.7895257 -2239204.9192825,99735.8470005 -2239205.1087515,99735.8664074 -2239205.3057928,99735.8664074 -2239205.806056,99735.8470005 -2239206.0030972,99735.7895257 -2239206.1925662,99735.7871029413 -2239206.19709886,99735.9177965 -2239206.266956,99736.0708484 -2239206.3925625,99736.1964549 -2239206.5456144,99736.2897889 -2239206.7202301,99736.2988511704 -2239206.7501044,99736.3898415 -2239206.9203353,99736.4473163 -2239207.1098044,99736.4667232 -2239207.3068456,99736.4667232 -2239207.4068983,99736.4617960304 -2239207.4569246,99736.4667232 -2239207.5069509,99736.4667232 -2239207.57735392,99736.4898942 -2239207.6207038,99736.547369 -2239207.8101729,99736.5631959389 -2239207.97086704,99736.5899468 -2239208.0209144,99736.6474216 -2239208.2103835,99736.6632486227 -2239208.37107766,99736.6899995 -2239208.421125,99736.7474743 -2239208.610594,99736.7668811 -2239208.8076352,99736.7668811 -2239208.87803829,99736.7900521 -2239208.9213882,99736.8475269 -2239209.1108572,99736.8512736244 -2239209.14889828,99736.8901047 -2239209.2215461,99736.9475796 -2239209.4110152,99736.951326291 -2239209.44905612,99736.9901574 -2239209.521704,99737.0329471384 -2239209.66276292,99737.0713748 -2239209.6942997,99737.1969813 -2239209.8473516,99737.2903153 -2239210.0219673,99737.3477901 -2239210.2114363,99737.367197 -2239210.4084775,99737.367197 -2239210.41124683,99737.3970866 -2239210.4476674,99737.4904206 -2239210.6222831,99737.5019722663 -2239210.66036386,99737.5186388 -2239210.6692723,99737.6716907 -2239210.7948787,99737.7167900108 -2239210.84983238,99737.7717433 -2239210.8949314,99737.8168423337 -2239210.94988471,99737.8573605503 -2239210.98313714,99738.018902 -2239211.0694829,99738.1719539 -2239211.1950893,99738.2170533011 -2239211.25004306,99738.2720065 -2239211.295142,99738.3171054434 -2239211.3500952,99738.3720592 -2239211.3951946,99738.4976657 -2239211.5482465,99738.5909997 -2239211.7228622,99738.6484745 -2239211.9123312,99738.6678813 -2239212.1093725,99738.6678813 -2239212.2094251,99738.6484745 -2239212.4064663,99738.6081004414 -2239212.53956179,99738.61726363 -2239212.55072717,99738.6722171 -2239212.5958263,99738.7978236 -2239212.7488782,99738.8911576 -2239212.9234939,99738.9486324 -2239213.1129629,99738.9680393 -2239213.3100042,99738.9680393 -2239213.4100568,99738.9486324 -2239213.607098,99738.9021769824 -2239213.76024105,99738.9486324 -2239213.9133841,99738.9680393 -2239214.1104253,99738.9680393 -2239214.3105306,99738.9486324 -2239214.5075718,99738.8911576 -2239214.6970409,99738.7978236 -2239214.8716565,99738.6722171 -2239215.0247084,99738.6172637911 -2239215.06980743,99738.5721645 -2239215.1247611,99738.462257725 -2239215.21495922,99738.3720592 -2239215.3248664,99738.2190073 -2239215.4504728,99738.2014247057 -2239215.45987089,99738.2367425085 -2239215.57629807,99738.2621522445 -2239215.60725993,99738.3720592 -2239215.6974582,99738.462257725 -2239215.80736538,99738.5721645 -2239215.8975635,99738.5757227977 -2239215.9018993,99738.7584604 -2239215.9018993,99738.9555016 -2239215.9213062,99739.1449707 -2239215.978781,99739.3152014914 -2239216.06977127,99739.345076 -2239216.0788336,99739.5088552031 -2239216.16637542,99739.6726345 -2239216.0788336,99739.8621035 -2239216.0213588,99740.0591448 -2239216.0019519,99740.1591974 -2239216.0019519,99740.2092237 -2239216.00687907,99740.25925 -2239216.0019519,99740.3593027 -2239216.0019519,99740.5563439 -2239216.0213588,99740.745813 -2239216.0788336,99740.9204286 -2239216.1721676,99741.0734805 -2239216.2977741,99741.199087 -2239216.450826,99741.292421 -2239216.6254417,99741.3498958 -2239216.8149107,99741.3693027 -2239217.0119519,99741.3693027 -2239217.2120572,99741.3498958 -2239217.4090984,99741.292421 -2239217.5985675,99741.26925 -2239217.64191741,99741.26925 -2239217.7123204,99741.2498432 -2239217.9093617,99741.1923684 -2239218.0988307,99741.0990344 -2239218.2734464,99740.9734279 -2239218.4264983,99740.820376 -2239218.5521047,99740.6457603 -2239218.6454388,99740.4562913 -2239218.7029136,99740.3869959453 -2239218.70973857,99740.373112 -2239218.7266562,99740.2200601 -2239218.8522627,99740.0454445 -2239218.9455967,99740.0155699914 -2239218.95465903,99739.8453392 -2239219.0456493,99739.6558701 -2239219.1031241,99739.5865749089 -2239219.10994909,99739.5726909 -2239219.1268668,99739.419639 -2239219.2524732,99739.2580975504 -2239219.33881896,99739.1194811 -2239219.4525785,99738.9448654 -2239219.5459125,99738.8038065828 -2239219.5887023,99738.7722698 -2239219.62713,99738.7173161175 -2239219.67222931,99738.6722171 -2239219.7271826,99738.5191652 -2239219.8527891,99738.3445495 -2239219.9461231,99738.1550805 -2239220.0035979,99737.9580393 -2239220.0230048,99737.8876361623 -2239220.0230048,99737.8442863 -2239220.0461758,99737.6548173 -2239220.1036506,99737.4941231253 -2239220.11947754,99737.4440758 -2239220.1462284,99737.2546067 -2239220.2037032,99737.0575655 -2239220.2231101,99736.9575128 -2239220.2231101,99736.7604716 -2239220.2037032,99736.5710026 -2239220.1462284,99736.5276526912 -2239220.1230574,99736.4572496 -2239220.1230574,99736.2602084 -2239220.1036506,99736.0707394 -2239220.0461758,99735.8961237 -2239219.9528417,99735.8220170434 -2239219.89202396,99735.6705288 -2239219.8460705,99735.4959131 -2239219.7527365,99735.3428612 -2239219.62713,99735.29776207 -2239219.57217653,99735.2428086 -2239219.5270774,99735.1172021 -2239219.3740254,99735.0238681 -2239219.1994098,99734.9663933 -2239219.0099407,99734.9469864 -2239218.8128995,99734.9469864 -2239218.7128469,99734.9519135732 -2239218.66282054,99734.9469864 -2239218.6127942,99734.9469864 -2239218.54239114,99734.9238154 -2239218.4990413,99734.8810256616 -2239218.35798238,99734.842598 -2239218.3264456,99734.7169915 -2239218.1733937,99734.7075934665 -2239218.15581122,99734.5531854 -2239218.2026504,99734.3561441 -2239218.2220572,99734.2560915 -2239218.2220572,99734.2060652 -2239218.21713006,99734.1560389 -2239218.2220572,99734.153269497 -2239218.2220572,99734.1168489 -2239218.2519468,99733.9422333 -2239218.3452808,99733.7527642 -2239218.4027556,99733.555723 -2239218.4221625,99733.4556704 -2239218.4221625,99733.3962216239 -2239218.4163073,99733.3419174 -2239218.4453335,99733.1524484 -2239218.5028083,99732.9554071 -2239218.5222152,99732.8553545 -2239218.5222152,99732.6583133 -2239218.5028083,99732.4688442 -2239218.4453335,99732.4187968324 -2239218.41858262,99732.2581027 -2239218.4027556,99732.0686337 -2239218.3452808,99731.9959858341 -2239218.30644972,99731.9579448 -2239218.302703,99731.7684757 -2239218.2452282,99731.5938601 -2239218.1518942,99731.4408082 -2239218.0262877,99731.3957091663 -2239217.97133439,99731.3407555 -2239217.9262351,99731.2151491 -2239217.7731832,99731.121815 -2239217.5985675,99731.0643402 -2239217.4090984,99731.0449334 -2239217.2120572,99731.0449334 -2239217.0119519,99731.0643402 -2239216.8149107,99731.121815 -2239216.6254417,99731.1485658751 -2239216.57539437,99731.1643929 -2239216.4147001,99731.2218677 -2239216.2252311,99731.2450386 -2239216.18188138,99731.2450386 -2239216.1114782,99731.2644455 -2239215.9144369,99731.3219203 -2239215.7249679,99731.3486711837 -2239215.6749205,99731.354945644 -2239215.61121495,99731.3486711837 -2239215.5475094,99731.3219203 -2239215.497462,99731.3128580278 -2239215.4675877,99731.2218677 -2239215.2973567,99731.2128054311 -2239215.26748241,99731.121815 -2239215.0972514,99731.1127527279 -2239215.0673771,99731.0217624 -2239214.8971461,99730.9642876 -2239214.7076771,99730.9484605738 -2239214.5469829,99730.9286978954 -2239214.51000958,99730.8149385 -2239214.3713933,99730.7377477001 -2239214.22697941,99730.5977179188 -2239214.15213197,99730.567844 -2239214.1430698,99730.3932284 -2239214.0497358,99730.3191216666 -2239213.98891804,99730.1676335 -2239213.9429646,99729.997402493 -2239213.85197417,99729.9675282 -2239213.8429119,99729.9174808437 -2239213.81616104,99729.7567866 -2239213.8003341,99729.5673176 -2239213.7428593,99729.4946695048 -2239213.7040281,99729.4566287 -2239213.7002814,99729.2671597 -2239213.6428066,99729.092544 -2239213.5494726,99728.9394921 -2239213.4238662,99728.8943929214 -2239213.36891268,99728.8394394 -2239213.3238135,99728.79434027 -2239213.26886003,99728.7393868 -2239213.2237609,99728.6461920537 -2239213.11020282,99728.5530909 -2239213.1193725,99728.4530382 -2239213.1193725,99728.255997 -2239213.0999656,99728.066528 -2239213.0424908,99728.0231780912 -2239213.0193198,99727.8527224 -2239213.0193198,99727.6556811 -2239212.9999129,99727.4662121 -2239212.9424381,99727.2959810832 -2239212.85144776,99727.2661068 -2239212.8423855,99727.0958760086 -2239212.75139523,99727.0660015 -2239212.7423329,99726.8913859 -2239212.6489988,99726.738334 -2239212.5233924,99726.6932348052 -2239212.4684389,99726.6382813 -2239212.4233397,99726.5126749 -2239212.2702878,99726.4789537659 -2239212.20720004,99726.4657947 -2239212.2232344,99726.3127428 -2239212.3488409,99726.1381271 -2239212.4421749,99725.9486581 -2239212.4996497,99725.7516169 -2239212.5190566,99725.6515642 -2239212.5190566,99725.454523 -2239212.4996497,99725.265054 -2239212.4421749,99725.0904383 -2239212.3488409,99724.9373864 -2239212.2232344,99724.8922873825 -2239212.16828111,99724.8373337 -2239212.1231818,99724.7117273 -2239211.9701299,99724.6183933 -2239211.7955142,99724.6093311591 -2239211.76564033,99724.5183406 -2239211.5954089,99724.4608658 -2239211.4059399,99724.441459 -2239211.2088987,99724.441459 -2239210.5085302,99724.4608658 -2239210.3114889,99724.5183406 -2239210.1220199,99724.5415116 -2239210.07866999))
</op>
</test>
<test>
<desc>buffer-1.1</desc>
<op name="buffer" arg1="a" arg2="1.1">
POLYGON ((99724.45151159 -2239210.0570456,99724.45151159 -2239209.90821432,99724.47264779 -2239209.69361496,99724.53524411 -2239209.48726254,99724.55156424 -2239209.45672972,99724.55156424 -2239209.4079511,99724.57270043 -2239209.19335175,99724.63529675 -2239208.98699933,99724.7262871367 -2239208.81676829,99724.73534939 -2239208.78689404,99724.83700031 -2239208.59671856,99724.97379942 -2239208.43002836,99725.0287529111 -2239208.38492919,99725.07385206 -2239208.32997572,99725.128805548 -2239208.28487656,99725.17390471 -2239208.22992307,99725.2288581827 -2239208.18482392,99725.27395735 -2239208.12987043,99725.3289108328 -2239208.08477127,99725.37400999 -2239208.02981779,99725.4289634811 -2239207.98471862,99725.47406263 -2239207.92976515,99725.64075284 -2239207.79296603,99725.83092832 -2239207.69131512,99725.8608025436 -2239207.68225287,99726.0310336 -2239207.59126248,99726.23738602 -2239207.52866615,99726.45198538 -2239207.50752996,99727.4525118 -2239207.50752996,99727.502538125 -2239207.51245712,99727.55256445 -2239207.50752996,99727.5629408061 -2239207.50752996,99727.57427971 -2239207.39240418,99727.63687603 -2239207.18605176,99727.73852694 -2239206.99587628,99727.87532605 -2239206.82918608,99727.9302795548 -2239206.7840869,99727.9753787 -2239206.72913344,99728.0303321742 -2239206.68403429,99728.07543134 -2239206.62908079,99728.1303848228 -2239206.58398163,99728.17548398 -2239206.52902815,99728.2304374628 -2239206.48392899,99728.27553662 -2239206.42897551,99728.44222683 -2239206.29217639,99728.6037683473 -2239206.20583065,99728.74238476 -2239206.09207111,99728.93256024 -2239205.9904202,99728.9624344654 -2239205.98135795,99729.13266552 -2239205.89036755,99729.2695322976 -2239205.84884947,99729.27517463 -2239205.7915619,99729.33777095 -2239205.58520948,99729.43942186 -2239205.395034,99729.57622098 -2239205.2283438,99729.6311744542 -2239205.18324465,99729.67627362 -2239205.12829115,99729.7312271028 -2239205.08319199,99729.77632626 -2239205.02823851,99729.94301647 -2239204.8914394,99730.1045579766 -2239204.80509367,99730.24317439 -2239204.69133411,99730.43334987 -2239204.5896832,99730.4632241149 -2239204.58062095,99730.63345516 -2239204.48963056,99730.83980758 -2239204.42703424,99730.9915507716 -2239204.41208883,99731.03366573 -2239204.38957792,99731.24001815 -2239204.32698159,99731.45461751 -2239204.3058454,99731.5033961238 -2239204.3058454,99731.53392894 -2239204.28952527,99731.5638031868 -2239204.28046302,99731.7054002625 -2239204.2047778,99731.7322799528 -2239204.18271821,99731.7543395289 -2239204.15583854,99731.84068528 -2239203.994297,99731.9774844 -2239203.8276068,99732.0324378828 -2239203.78250764,99732.07753704 -2239203.72755416,99732.24422724 -2239203.59075504,99732.43440273 -2239203.48910413,99732.64075515 -2239203.42650781,99732.8553545 -2239203.40537162,99733.15551243 -2239203.40537162,99733.37011178 -2239203.42650781,99733.5764642 -2239203.48910413,99733.7466952432 -2239203.58009452,99733.77656949 -2239203.58915677,99733.96674497 -2239203.69080769,99734.1053613588 -2239203.80456722,99734.2469584764 -2239203.88025245,99734.2768327 -2239203.8893147,99734.4470637803 -2239203.98030511,99734.47693799 -2239203.98936735,99734.5416536026 -2239204.02395857,99734.57074349 -2239204.02682367,99734.77709591 -2239204.08941999,99734.9672714 -2239204.1910709,99735.002776056 -2239204.22020882,99735.07100671 -2239204.22692895,99735.27735913 -2239204.28952527,99735.46753461 -2239204.39117618,99735.63422481 -2239204.5279753,99735.77102393 -2239204.6946655,99735.87267484 -2239204.88484098,99735.93527116 -2239205.0911934,99735.95640735 -2239205.30579276,99735.95640735 -2239205.80605597,99735.93527116 -2239206.02065533,99735.8950519575 -2239206.15324028,99735.96779782 -2239206.19212375,99736.13448802 -2239206.32892287,99736.27128714 -2239206.49561307,99736.37293805 -2239206.68578855,99736.3820002963 -2239206.71566277,99736.47299069 -2239206.88589383,99736.53558702 -2239207.09224626,99736.55672321 -2239207.30684561,99736.55672321 -2239207.40689825,99736.5517960479 -2239207.45692457,99736.55672321 -2239207.50695089,99736.55672321 -2239207.55572952,99736.57304334 -2239207.58626233,99736.63563966 -2239207.79261475,99736.6505850566 -2239207.94435792,99736.67309598 -2239207.9864729,99736.7356923 -2239208.19282532,99736.7506376966 -2239208.34456849,99736.77314862 -2239208.38668347,99736.83574494 -2239208.59303589,99736.85688113 -2239208.80763525,99736.85688113 -2239208.85641386,99736.87320126 -2239208.88694668,99736.93579759 -2239209.09329911,99736.9386626941 -2239209.122389,99736.97325391 -2239209.18710461,99737.03585023 -2239209.39345703,99737.0387153344 -2239209.42254693,99737.07330655 -2239209.48726254,99737.1107700712 -2239209.61076322,99737.13501445 -2239209.63066007,99737.27181356 -2239209.79735027,99737.37346448 -2239209.98752575,99737.4360608 -2239210.19387817,99737.4539791828 -2239210.37580658,99737.47191885 -2239210.39766613,99737.57356976 -2239210.58784161,99737.5778688697 -2239210.60201388,99737.7353303 -2239210.73123914,99737.7804294535 -2239210.78619261,99737.83538295 -2239210.83129178,99737.8804821072 -2239210.88624526,99737.9073617975 -2239210.90830485,99738.06890331 -2239210.99465059,99738.23559352 -2239211.13144971,99738.2806926772 -2239211.18640319,99738.33564616 -2239211.23150235,99738.3807453172 -2239211.28645583,99738.4356988 -2239211.33155499,99738.57249792 -2239211.4982452,99738.67414883 -2239211.68842068,99738.73674515 -2239211.8947731,99738.75788134 -2239212.10937245,99738.75788134 -2239212.20942509,99738.73674515 -2239212.42402445,99738.7102974729 -2239212.51121076,99738.73585673 -2239212.5321867,99738.87265584 -2239212.69887691,99738.97430676 -2239212.88905239,99739.03690308 -2239213.09540481,99739.05803927 -2239213.31000416,99739.05803927 -2239213.41005681,99739.03690308 -2239213.62465616,99738.9957738532 -2239213.76024105,99739.03690308 -2239213.89582595,99739.05803927 -2239214.1104253,99739.05803927 -2239214.31053059,99739.03690308 -2239214.52512994,99738.97430676 -2239214.73148236,99738.87265584 -2239214.92165784,99738.73585673 -2239215.08834805,99738.6809032472 -2239215.13344721,99738.63580409 -2239215.18840069,99738.5258971362 -2239215.27859899,99738.4356988 -2239215.38850598,99738.3057292327 -2239215.49516925,99738.3172807609 -2239215.53324953,99738.3257918344 -2239215.54362031,99738.4356988 -2239215.63381862,99738.5258971196 -2239215.74372559,99738.6089670129 -2239215.81189929,99738.75846041 -2239215.81189929,99738.97305977 -2239215.83303549,99739.17941219 -2239215.89563181,99739.3496432464 -2239215.9866222,99739.37951747 -2239215.99568445,99739.50885523 -2239216.06481692,99739.63819299 -2239215.99568445,99739.84454541 -2239215.93308813,99740.05914476 -2239215.91195194,99740.15919741 -2239215.91195194,99740.20922373 -2239215.9168791,99740.25925005 -2239215.91195194,99740.35930269 -2239215.91195194,99740.57390205 -2239215.93308813,99740.78025447 -2239215.99568445,99740.97042995 -2239216.09733536,99741.13712015 -2239216.23413448,99741.27391927 -2239216.40082468,99741.37557018 -2239216.59100016,99741.4381665 -2239216.79735258,99741.45930269 -2239217.01195194,99741.45930269 -2239217.21205722,99741.4381665 -2239217.42665658,99741.37557018 -2239217.633009,99741.35925005 -2239217.66354182,99741.35925005 -2239217.71232044,99741.33811386 -2239217.92691979,99741.27551754 -2239218.13327221,99741.17386662 -2239218.32344769,99741.03706751 -2239218.49013789,99740.87037731 -2239218.62693701,99740.68020183 -2239218.72858792,99740.4738494 -2239218.79118424,99740.4304621038 -2239218.79545752,99740.27006145 -2239218.92709494,99740.07988597 -2239219.02874585,99740.050011744 -2239219.0378081,99739.87978068 -2239219.12879849,99739.67342826 -2239219.19139481,99739.6300409638 -2239219.19566809,99739.46964031 -2239219.32730551,99739.3080987927 -2239219.41365125,99739.16948238 -2239219.52741079,99738.9793069 -2239219.6290617,99738.855806222 -2239219.66652523,99738.83590937 -2239219.69076961,99738.7809558789 -2239219.73586877,99738.73585673 -2239219.79082225,99738.56916653 -2239219.92762136,99738.37899105 -2239220.02927227,99738.17263863 -2239220.0918686,99737.95803927 -2239220.11300479,99737.9092606432 -2239220.11300479,99737.87872783 -2239220.12932492,99737.67237541 -2239220.19192124,99737.5206322346 -2239220.20686664,99737.47851726 -2239220.22937756,99737.27216484 -2239220.29197388,99737.05756549 -2239220.31311007,99736.95751285 -2239220.31311007,99736.74291349 -2239220.29197388,99736.53656107 -2239220.22937756,99736.5060282537 -2239220.21305743,99736.45724963 -2239220.21305743,99736.24265028 -2239220.19192124,99736.03629786 -2239220.12932492,99735.84612238 -2239220.027674,99735.778968366 -2239219.97256213,99735.63608729 -2239219.92921963,99735.44591181 -2239219.82756872,99735.2792216 -2239219.69076961,99735.2341224342 -2239219.63581611,99735.17916896 -2239219.59071696,99735.04236985 -2239219.42402676,99734.94071893 -2239219.23385128,99734.87812261 -2239219.02749886,99734.85698642 -2239218.8128995,99734.85698642 -2239218.71284686,99734.8619135822 -2239218.66282054,99734.85698642 -2239218.61279422,99734.85698642 -2239218.5640156,99734.84066629 -2239218.53348278,99734.8032027694 -2239218.4099821,99734.77895839 -2239218.39008525,99734.6722951221 -2239218.26011568,99734.57074349 -2239218.29092103,99734.35614414 -2239218.31205722,99734.2560915 -2239218.31205722,99734.206065175 -2239218.30713006,99734.1887097995 -2239218.30883941,99734.16685025 -2239218.32677908,99733.97667477 -2239218.42842999,99733.77032235 -2239218.49102632,99733.555723 -2239218.51216251,99733.45567036 -2239218.51216251,99733.4144813942 -2239218.50810575,99733.37635892 -2239218.52848264,99733.1700065 -2239218.59107896,99732.95540714 -2239218.61221515,99732.8553545 -2239218.61221515,99732.64075515 -2239218.59107896,99732.43440273 -2239218.52848264,99732.3922877578 -2239218.50597172,99732.24054458 -2239218.49102632,99732.03419215 -2239218.42842999,99731.9694765374 -2239218.39383877,99731.94038665 -2239218.39097367,99731.73403423 -2239218.32837735,99731.54385875 -2239218.22672644,99731.37716854 -2239218.08992732,99731.3320693911 -2239218.03497385,99731.2771159 -2239217.98987468,99731.14031679 -2239217.82318448,99731.03866587 -2239217.633009,99730.97606955 -2239217.42665658,99730.95493336 -2239217.21205722,99730.95493336 -2239217.01195194,99730.97606955 -2239216.79735258,99731.03866587 -2239216.59100016,99731.0611767929 -2239216.54888519,99731.07612219 -2239216.39714201,99731.13871852 -2239216.19078959,99731.15503865 -2239216.16025677,99731.15503865 -2239216.11147815,99731.17617484 -2239215.8968788,99731.23877116 -2239215.69052638,99731.2612820825 -2239215.64841141,99731.2649456144 -2239215.61121494,99731.2612820828 -2239215.57401848,99731.23877116 -2239215.5319035,99731.2297089137 -2239215.50202928,99731.13871852 -2239215.33179822,99731.129656271 -2239215.30192399,99731.03866587 -2239215.13169293,99731.0296036237 -2239215.10181871,99730.93861323 -2239214.93158765,99730.87601691 -2239214.72523523,99730.8610715134 -2239214.57349206,99730.8538657489 -2239214.56001102,99730.74010622 -2239214.42139463,99730.6715646238 -2239214.29316233,99730.5632767436 -2239214.23528126,99730.53340252 -2239214.22621901,99730.34322704 -2239214.12456809,99730.276073026 -2239214.06945622,99730.13319195 -2239214.02611372,99729.9629609068 -2239213.93512333,99729.93308666 -2239213.92606108,99729.8909716838 -2239213.90355016,99729.73922851 -2239213.88860476,99729.53287609 -2239213.82600844,99729.4681604841 -2239213.79141723,99729.43907058 -2239213.78855212,99729.23271816 -2239213.72595579,99729.04254268 -2239213.62430488,99728.87585248 -2239213.48750577,99728.8307533142 -2239213.43255227,99728.77579984 -2239213.38745312,99728.7307006948 -2239213.33249966,99728.67574719 -2239213.28740048,99728.6073273203 -2239213.20403063,99728.55309087 -2239213.20937245,99728.45303823 -2239213.20937245,99728.23843887 -2239213.18823626,99728.03208645 -2239213.12563994,99728.0015536337 -2239213.10931981,99727.85272237 -2239213.10931981,99727.63812302 -2239213.08818362,99727.4317706 -2239213.0255873,99727.2615395585 -2239212.93459691,99727.23166531 -2239212.92553465,99727.0614342536 -2239212.83454426,99727.03156003 -2239212.82548201,99726.84138455 -2239212.7238311,99726.67469434 -2239212.58703198,99726.6295951911 -2239212.53207851,99726.5746417 -2239212.48697934,99726.4583176232 -2239212.34523804,99726.36274414 -2239212.42367317,99726.17256866 -2239212.52532408,99725.96621623 -2239212.58792041,99725.75161688 -2239212.6090566,99725.65156424 -2239212.6090566,99725.43696488 -2239212.58792041,99725.23061246 -2239212.52532408,99725.04043698 -2239212.42367317,99724.87374678 -2239212.28687406,99724.8286476041 -2239212.23192056,99724.77369414 -2239212.18682141,99724.63689502 -2239212.02013121,99724.53524411 -2239211.82995573,99724.5261818637 -2239211.80008151,99724.43519147 -2239211.62985045,99724.37259514 -2239211.42349802,99724.35145895 -2239211.20889867,99724.35145895 -2239210.50853017,99724.37259514 -2239210.29393082,99724.43519147 -2239210.0875784,99724.45151159 -2239210.0570456))
</op>
</test>
<test>
<desc>buffer-1.5</desc>
<op name="buffer" arg1="a" arg2="1.5">
POLYGON ((99723.95146 -2239211.2089, 99723.95146 -2239210.50853, 99723.98028 -2239210.21589, 99724.05151 -2239209.98109, 99724.05151 -2239209.90821, 99724.08033 -2239209.61558, 99724.15553 -2239209.3677, 99724.18039 -2239209.11532, 99724.26574 -2239208.83393, 99724.35674 -2239208.66369, 99724.3658 -2239208.63382, 99724.50441 -2239208.37449, 99724.69096 -2239208.14719, 99724.7459 -2239208.1021, 99724.79101 -2239208.04713, 99724.84597 -2239208.00203, 99724.89106 -2239207.94708, 99724.94601 -2239207.90199, 99724.99111 -2239207.84703, 99725.04609 -2239207.80191, 99725.09117 -2239207.74698, 99725.14611 -2239207.70189, 99725.19122 -2239207.64692, 99725.41852 -2239207.46038, 99725.67785 -2239207.32176, 99725.70776 -2239207.31269, 99725.87796 -2239207.22171, 99726.15935 -2239207.13635, 99726.45199 -2239207.10753, 99727.24471 -2239207.10753, 99727.26732 -2239207.03298, 99727.40594 -2239206.77365, 99727.59248 -2239206.54634, 99727.64746 -2239206.50122, 99727.69254 -2239206.44629, 99727.74748 -2239206.4012, 99727.79259 -2239206.34624, 99727.84755 -2239206.30113, 99727.89264 -2239206.24619, 99727.94757 -2239206.20111, 99727.99269 -2239206.14613, 99728.22 -2239205.95959, 99728.38155 -2239205.87324, 99728.52016 -2239205.75948, 99728.77949 -2239205.62087, 99728.80935 -2239205.61181, 99728.93391 -2239205.54523, 99728.96822 -2239205.43214, 99729.10683 -2239205.17281, 99729.29338 -2239204.9455, 99729.34833 -2239204.9004, 99729.39343 -2239204.84545, 99729.44838 -2239204.80035, 99729.49348 -2239204.7454, 99729.72079 -2239204.55885, 99729.88233 -2239204.47251, 99730.02095 -2239204.35875, 99730.28028 -2239204.22013, 99730.31014 -2239204.21107, 99730.48038 -2239204.12008, 99730.76177 -2239204.03472, 99730.87374 -2239204.02369, 99730.88059 -2239204.02003, 99731.16198 -2239203.93467, 99731.41243 -2239203.91001, 99731.44315 -2239203.89359, 99731.5081 -2239203.77207, 99731.69464 -2239203.54476, 99731.74959 -2239203.49966, 99731.79469 -2239203.44471, 99732.022 -2239203.25817, 99732.28133 -2239203.11955, 99732.56272 -2239203.03419, 99732.85535 -2239203.00537, 99733.15551 -2239203.00537, 99733.44815 -2239203.03419, 99733.72954 -2239203.11955, 99733.89976 -2239203.21054, 99733.92964 -2239203.2196, 99734.18897 -2239203.35822, 99734.32761 -2239203.47199, 99734.4 -2239203.51069, 99734.42991 -2239203.51976, 99734.60016 -2239203.61077, 99734.63001 -2239203.61982, 99734.66893 -2239203.64062, 99734.93017 -2239203.71987, 99735.14389 -2239203.8341, 99735.14904 -2239203.83461, 99735.43043 -2239203.91997, 99735.68976 -2239204.05859, 99735.91707 -2239204.24513, 99736.10361 -2239204.47244, 99736.24223 -2239204.73177, 99736.32759 -2239205.01316, 99736.35641 -2239205.30579, 99736.35641 -2239205.80606, 99736.33909 -2239205.98187, 99736.41733 -2239206.04608, 99736.60387 -2239206.27338, 99736.74249 -2239206.53272, 99736.75155 -2239206.56258, 99736.84254 -2239206.73282, 99736.9279 -2239207.01421, 99736.95672 -2239207.30685, 99736.95672 -2239207.4069, 99736.95179 -2239207.45692, 99736.95275 -2239207.46666, 99737.02795 -2239207.71458, 99737.03898 -2239207.82653, 99737.04265 -2239207.8334, 99737.12801 -2239208.11479, 99737.13904 -2239208.22676, 99737.1427 -2239208.23361, 99737.22806 -2239208.515, 99737.25291 -2239208.76738, 99737.32199 -2239208.99507, 99737.34281 -2239209.03403, 99737.42204 -2239209.29524, 99737.44286 -2239209.33419, 99737.46408 -2239209.40414, 99737.6044 -2239209.57512, 99737.74302 -2239209.83445, 99737.82837 -2239210.11584, 99737.84096 -2239210.24364, 99737.89745 -2239210.34932, 99738.01817 -2239210.4484, 99738.06325 -2239210.50333, 99738.11823 -2239210.54845, 99738.14922 -2239210.58621, 99738.29113 -2239210.66206, 99738.51844 -2239210.84861, 99738.56354 -2239210.90357, 99738.61849 -2239210.94866, 99738.66359 -2239211.00361, 99738.71854 -2239211.04871, 99738.90509 -2239211.27602, 99739.0437 -2239211.53535, 99739.12906 -2239211.81674, 99739.15788 -2239212.10937, 99739.15788 -2239212.20943, 99739.13946 -2239212.39649, 99739.20524 -2239212.47665, 99739.34386 -2239212.73598, 99739.42922 -2239213.01737, 99739.45804 -2239213.31, 99739.45804 -2239213.41006, 99739.42922 -2239213.70269, 99739.41176 -2239213.76024, 99739.42922 -2239213.81779, 99739.45804 -2239214.11043, 99739.45804 -2239214.31053, 99739.42922 -2239214.60317, 99739.34386 -2239214.88456, 99739.20524 -2239215.14389, 99739.0187 -2239215.37119, 99738.96375 -2239215.41629, 99738.95173 -2239215.43093, 99739.0511 -2239215.44072, 99739.33249 -2239215.52608, 99739.50273 -2239215.61707, 99739.50886 -2239215.61893, 99739.76651 -2239215.54077, 99740.05914 -2239215.51195, 99740.1592 -2239215.51195, 99740.20922 -2239215.51688, 99740.25925 -2239215.51195, 99740.3593 -2239215.51195, 99740.65194 -2239215.54077, 99740.93333 -2239215.62613, 99741.19266 -2239215.76475, 99741.41996 -2239215.95129, 99741.60651 -2239216.1786, 99741.74512 -2239216.43793, 99741.83048 -2239216.71932, 99741.8593 -2239217.01195, 99741.8593 -2239217.21206, 99741.83048 -2239217.50469, 99741.75529 -2239217.75257, 99741.73043 -2239218.00496, 99741.64507 -2239218.28635, 99741.50645 -2239218.54568, 99741.31991 -2239218.77298, 99741.09261 -2239218.95952, 99740.83328 -2239219.09814, 99740.6046 -2239219.16751, 99740.49229 -2239219.25968, 99740.23296 -2239219.3983, 99740.20308 -2239219.40737, 99740.03285 -2239219.49835, 99739.80418 -2239219.56772, 99739.69187 -2239219.65989, 99739.53032 -2239219.74624, 99739.39171 -2239219.86, 99739.13238 -2239219.99861, 99739.06303 -2239220.01965, 99739.0187 -2239220.07366, 99738.79139 -2239220.26021, 99738.53206 -2239220.39882, 99738.25067 -2239220.48418, 99737.99834 -2239220.50903, 99737.75041 -2239220.58424, 99737.63844 -2239220.59527, 99737.63159 -2239220.59893, 99737.3502 -2239220.68429, 99737.05757 -2239220.71311, 99736.95751 -2239220.71311, 99736.66488 -2239220.68429, 99736.417 -2239220.6091, 99736.16461 -2239220.58424, 99735.88322 -2239220.49888, 99735.62389 -2239220.36026, 99735.58764 -2239220.33051, 99735.48301 -2239220.29877, 99735.22368 -2239220.16016, 99734.99638 -2239219.97361, 99734.95127 -2239219.91865, 99734.89633 -2239219.87356, 99734.70978 -2239219.64625, 99734.57117 -2239219.38692, 99734.48581 -2239219.10553, 99734.45699 -2239218.8129, 99734.45699 -2239218.71285, 99734.45806 -2239218.70202, 99734.35614 -2239218.71206, 99734.2905 -2239218.71206, 99734.12975 -2239218.79798, 99733.84836 -2239218.88334, 99733.55572 -2239218.91216, 99733.48285 -2239218.91216, 99733.24804 -2239218.98339, 99732.95541 -2239219.01222, 99732.85535 -2239219.01222, 99732.56272 -2239218.98339, 99732.28133 -2239218.89803, 99732.27448 -2239218.89437, 99732.16251 -2239218.88334, 99731.88112 -2239218.79798, 99731.8422 -2239218.77718, 99731.58096 -2239218.69793, 99731.32163 -2239218.55931, 99731.09433 -2239218.37277, 99731.04924 -2239218.31783, 99730.99427 -2239218.27272, 99730.80773 -2239218.04541, 99730.66911 -2239217.78608, 99730.58376 -2239217.50469, 99730.55493 -2239217.21206, 99730.55493 -2239217.01195, 99730.58376 -2239216.71932, 99730.66911 -2239216.43793, 99730.67278 -2239216.43105, 99730.68381 -2239216.31911, 99730.759 -2239216.07123, 99730.78386 -2239215.81884, 99730.84317 -2239215.62332, 99730.76917 -2239215.48487, 99730.76012 -2239215.45502, 99730.66911 -2239215.28477, 99730.66004 -2239215.25486, 99730.56906 -2239215.08466, 99730.4837 -2239214.80327, 99730.47622 -2239214.72734, 99730.40752 -2239214.64362, 99730.38225 -2239214.59635, 99730.38033 -2239214.59577, 99730.121 -2239214.45716, 99730.08474 -2239214.4274, 99729.98012 -2239214.39567, 99729.80988 -2239214.30467, 99729.78001 -2239214.29561, 99729.77316 -2239214.29195, 99729.66119 -2239214.28092, 99729.3798 -2239214.19556, 99729.34088 -2239214.17476, 99729.07964 -2239214.09551, 99728.82031 -2239213.95689, 99728.59301 -2239213.77035, 99728.54792 -2239213.7154, 99728.49296 -2239213.6703, 99728.44786 -2239213.61534, 99728.43888 -2239213.60798, 99728.1604 -2239213.58055, 99727.92559 -2239213.50932, 99727.85272 -2239213.50932, 99727.56009 -2239213.4805, 99727.2787 -2239213.39514, 99727.1085 -2239213.30416, 99727.07859 -2239213.29509, 99726.90834 -2239213.20408, 99726.87849 -2239213.19503, 99726.61916 -2239213.05642, 99726.39185 -2239212.86987, 99726.38593 -2239212.86265, 99726.32564 -2239212.89488, 99726.04425 -2239212.98023, 99725.75162 -2239213.00906, 99725.65156 -2239213.00906, 99725.35893 -2239212.98023, 99725.07754 -2239212.89488, 99724.81821 -2239212.75626, 99724.5909 -2239212.56972, 99724.54578 -2239212.51474, 99724.49085 -2239212.46966, 99724.30431 -2239212.24236, 99724.16569 -2239211.98303, 99724.15662 -2239211.95315, 99724.06564 -2239211.78292, 99723.98028 -2239211.50153, 99723.95146 -2239211.2089))
</op>
</test>
<test>
<desc>buffer-2</desc>
<op name="buffer" arg1="a" arg2="2">
POLYGON ((99723.45146 -2239211.2089, 99723.45146 -2239210.50853, 99723.48989 -2239210.11835, 99723.55151 -2239209.91521, 99723.55151 -2239209.90821, 99723.58994 -2239209.51803, 99723.66513 -2239209.27016, 99723.68999 -2239209.01777, 99723.80381 -2239208.64258, 99723.8948 -2239208.47236, 99723.90386 -2239208.44248, 99724.08868 -2239208.09671, 99724.3374 -2239207.79363, 99724.39237 -2239207.74852, 99724.43746 -2239207.69358, 99724.49241 -2239207.64848, 99724.53751 -2239207.59353, 99724.59245 -2239207.54844, 99724.63756 -2239207.49347, 99724.69251 -2239207.44837, 99724.73761 -2239207.39342, 99724.79258 -2239207.34831, 99724.83767 -2239207.29337, 99725.14074 -2239207.04464, 99725.48651 -2239206.85982, 99725.5164 -2239206.85075, 99725.68662 -2239206.75977, 99726.0618 -2239206.64596, 99726.45199 -2239206.60753, 99726.93051 -2239206.60753, 99726.9902 -2239206.49586, 99727.23893 -2239206.19279, 99727.29389 -2239206.14769, 99727.33898 -2239206.09274, 99727.39394 -2239206.04764, 99727.43904 -2239205.99268, 99727.49399 -2239205.94758, 99727.53909 -2239205.89263, 99727.59404 -2239205.84754, 99727.63914 -2239205.79258, 99727.94221 -2239205.54385, 99728.10377 -2239205.4575, 99728.24237 -2239205.34375, 99728.53479 -2239205.18745, 99728.6911 -2239204.89502, 99728.93982 -2239204.59195, 99728.9948 -2239204.54683, 99729.03988 -2239204.4919, 99729.09481 -2239204.44682, 99729.13993 -2239204.39184, 99729.443 -2239204.14312, 99729.60454 -2239204.05678, 99729.74316 -2239203.94301, 99730.08893 -2239203.75819, 99730.11883 -2239203.74912, 99730.28904 -2239203.65814, 99730.66423 -2239203.54433, 99730.76844 -2239203.53407, 99731.06444 -2239203.44427, 99731.13947 -2239203.43688, 99731.34109 -2239203.19121, 99731.39604 -2239203.14611, 99731.44114 -2239203.09116, 99731.74421 -2239202.84243, 99732.08999 -2239202.65761, 99732.46517 -2239202.5438, 99732.85535 -2239202.50537, 99733.15551 -2239202.50537, 99733.54569 -2239202.5438, 99733.92088 -2239202.65761, 99734.09114 -2239202.74862, 99734.12098 -2239202.75767, 99734.46676 -2239202.94249, 99734.59911 -2239203.0511, 99734.62125 -2239203.05782, 99734.79151 -2239203.14883, 99734.82135 -2239203.15788, 99734.86028 -2239203.17869, 99735.12151 -2239203.25793, 99735.33065 -2239203.36972, 99735.62177 -2239203.45803, 99735.96755 -2239203.64285, 99736.27062 -2239203.89158, 99736.51935 -2239204.19465, 99736.70417 -2239204.54043, 99736.81798 -2239204.91561, 99736.85641 -2239205.30579, 99736.85641 -2239205.79675, 99737.01961 -2239205.9956, 99737.20443 -2239206.34137, 99737.2135 -2239206.37127, 99737.30448 -2239206.54148, 99737.41829 -2239206.91666, 99737.45672 -2239207.30685, 99737.45672 -2239207.4069, 99737.4562 -2239207.41217, 99737.51835 -2239207.61703, 99737.52862 -2239207.72126, 99737.6184 -2239208.01724, 99737.62867 -2239208.12147, 99737.71845 -2239208.41745, 99737.74331 -2239208.66984, 99737.78392 -2239208.80372, 99737.80475 -2239208.84269, 99737.88399 -2239209.10392, 99737.9048 -2239209.14285, 99737.91151 -2239209.16498, 99738.02014 -2239209.29734, 99738.20496 -2239209.64311, 99738.31877 -2239210.0183, 99738.32231 -2239210.05429, 99738.37173 -2239210.09484, 99738.41684 -2239210.14981, 99738.47006 -2239210.19349, 99738.56892 -2239210.24633, 99738.87199 -2239210.49505, 99738.91711 -2239210.55003, 99738.97204 -2239210.59511, 99739.01714 -2239210.65006, 99739.07209 -2239210.69516, 99739.32082 -2239210.99823, 99739.50564 -2239211.34401, 99739.61945 -2239211.71919, 99739.65788 -2239212.10937, 99739.65788 -2239212.20943, 99739.65302 -2239212.2588, 99739.8058 -2239212.54464, 99739.91961 -2239212.91982, 99739.95804 -2239213.31, 99739.95804 -2239213.41006, 99739.92355 -2239213.76024, 99739.95804 -2239214.11043, 99739.95804 -2239214.31053, 99739.91961 -2239214.70071, 99739.81799 -2239215.0357, 99740.05914 -2239215.01195, 99740.1592 -2239215.01195, 99740.20923 -2239215.01688, 99740.25925 -2239215.01195, 99740.3593 -2239215.01195, 99740.74948 -2239215.05038, 99741.12467 -2239215.16419, 99741.47044 -2239215.34901, 99741.77352 -2239215.59774, 99742.02224 -2239215.90081, 99742.20706 -2239216.24659, 99742.32087 -2239216.62177, 99742.3593 -2239217.01195, 99742.3593 -2239217.21206, 99742.32087 -2239217.60224, 99742.24568 -2239217.85011, 99742.22082 -2239218.1025, 99742.10701 -2239218.47769, 99741.92219 -2239218.82346, 99741.67346 -2239219.12653, 99741.37039 -2239219.37526, 99741.02462 -2239219.56008, 99740.84376 -2239219.61494, 99740.77007 -2239219.67542, 99740.4243 -2239219.86024, 99740.39442 -2239219.8693, 99740.2242 -2239219.96029, 99740.04334 -2239220.01515, 99739.96965 -2239220.07563, 99739.80811 -2239220.16197, 99739.6695 -2239220.27573, 99739.34642 -2239220.44841, 99739.06918 -2239220.67594, 99738.72341 -2239220.86076, 99738.34822 -2239220.97458, 99738.09586 -2239220.99943, 99737.84796 -2239221.07463, 99737.74373 -2239221.0849, 99737.44775 -2239221.17468, 99737.05757 -2239221.21311, 99736.95751 -2239221.21311, 99736.56733 -2239221.17468, 99736.31946 -2239221.09949, 99736.06707 -2239221.07463, 99735.69188 -2239220.96082, 99735.3514 -2239220.77883, 99735.29167 -2239220.76071, 99734.9459 -2239220.57589, 99734.64283 -2239220.32717, 99734.59773 -2239220.27221, 99734.54277 -2239220.22711, 99734.29405 -2239219.92404, 99734.10923 -2239219.57827, 99734.03865 -2239219.3456, 99733.9459 -2239219.37373, 99733.55572 -2239219.41216, 99733.54874 -2239219.41216, 99733.34559 -2239219.47379, 99732.95541 -2239219.51222, 99732.85535 -2239219.51222, 99732.46517 -2239219.47379, 99732.16918 -2239219.384, 99732.06496 -2239219.37373, 99731.68978 -2239219.25992, 99731.65085 -2239219.23911, 99731.38962 -2239219.15987, 99731.04385 -2239218.97505, 99730.74077 -2239218.72632, 99730.69568 -2239218.67137, 99730.64072 -2239218.62627, 99730.39199 -2239218.3232, 99730.20717 -2239217.97742, 99730.09336 -2239217.60224, 99730.05493 -2239217.21206, 99730.05493 -2239217.01195, 99730.09336 -2239216.62177, 99730.18316 -2239216.32575, 99730.19342 -2239216.22156, 99730.26861 -2239215.97368, 99730.29347 -2239215.7213, 99730.30719 -2239215.67607, 99730.29818 -2239215.64638, 99730.20717 -2239215.47611, 99730.1981 -2239215.44622, 99730.10712 -2239215.276, 99730.01224 -2239214.96324, 99729.84854 -2239214.87574, 99729.78878 -2239214.85761, 99729.6417 -2239214.779, 99729.56365 -2239214.77131, 99729.18846 -2239214.6575, 99729.14953 -2239214.63669, 99728.8883 -2239214.55745, 99728.54253 -2239214.37263, 99728.23946 -2239214.1239, 99728.2077 -2239214.08521, 99728.06286 -2239214.07094, 99727.85972 -2239214.00932, 99727.85272 -2239214.00932, 99727.46254 -2239213.97089, 99727.08736 -2239213.85708, 99726.91714 -2239213.7661, 99726.88725 -2239213.75703, 99726.717 -2239213.66603, 99726.68714 -2239213.65697, 99726.34137 -2239213.47215, 99726.28616 -2239213.42684, 99726.1418 -2239213.47063, 99725.75162 -2239213.50906, 99725.65156 -2239213.50906, 99725.26138 -2239213.47063, 99724.8862 -2239213.35682, 99724.54042 -2239213.172, 99724.23735 -2239212.92327, 99724.19225 -2239212.86832, 99724.1373 -2239212.82322, 99723.88857 -2239212.52014, 99723.70375 -2239212.17437, 99723.69469 -2239212.14449, 99723.6037 -2239211.97427, 99723.48989 -2239211.59908, 99723.45146 -2239211.2089))
</op>
</test>
<test>
<desc>buffer-5</desc>
<op name="buffer" arg1="a" arg2="5">
POLYGON ((99720.45146 -2239211.2089, 99720.45146 -2239210.50853, 99720.54753 -2239209.53308, 99720.60814 -2239209.33328, 99720.64759 -2239208.93276, 99720.72278 -2239208.68488, 99720.74764 -2239208.4325, 99721.03217 -2239207.49453, 99721.12316 -2239207.32431, 99721.13222 -2239207.29443, 99721.59427 -2239206.42999, 99722.21608 -2239205.67231, 99722.27106 -2239205.62719, 99722.31614 -2239205.57226, 99722.37109 -2239205.52716, 99722.41619 -2239205.47221, 99722.47112 -2239205.42713, 99722.51624 -2239205.37215, 99722.57119 -2239205.32705, 99722.61629 -2239205.2721, 99722.67127 -2239205.22698, 99722.71635 -2239205.17205, 99723.47403 -2239204.55023, 99724.33846 -2239204.08818, 99724.36835 -2239204.07911, 99724.53857 -2239203.98813, 99725.47653 -2239203.7036, 99725.49258 -2239203.70202, 99725.51782 -2239203.67126, 99726.2755 -2239203.04944, 99726.39661 -2239202.98471, 99726.8185 -2239202.47063, 99726.87346 -2239202.42553, 99726.91856 -2239202.37057, 99726.97351 -2239202.32547, 99727.01861 -2239202.27052, 99727.77629 -2239201.64871, 99727.93782 -2239201.56237, 99728.07645 -2239201.4486, 99728.94088 -2239200.98655, 99728.97078 -2239200.97748, 99729.14099 -2239200.8865, 99729.58577 -2239200.75158, 99730.0775 -2239200.34802, 99730.94194 -2239199.88597, 99731.8799 -2239199.60145, 99732.85535 -2239199.50537, 99733.15551 -2239199.50537, 99734.13096 -2239199.60145, 99735.06893 -2239199.88597, 99735.2392 -2239199.97698, 99735.26903 -2239199.98603, 99736.12018 -2239200.44097, 99736.26956 -2239200.48629, 99736.47875 -2239200.5981, 99736.76982 -2239200.6864, 99737.63426 -2239201.14844, 99738.39194 -2239201.77026, 99739.01376 -2239202.52794, 99739.47581 -2239203.39238, 99739.76033 -2239204.33034, 99739.8158 -2239204.89347, 99739.97607 -2239205.19332, 99739.98514 -2239205.22321, 99740.07612 -2239205.39343, 99740.36065 -2239206.33139, 99740.41469 -2239206.88008, 99740.4607 -2239207.03176, 99740.47097 -2239207.13598, 99740.56075 -2239207.43197, 99740.57101 -2239207.53616, 99740.66081 -2239207.83218, 99740.66951 -2239207.92055, 99740.848 -2239208.25447, 99740.99331 -2239208.37373, 99741.03843 -2239208.42871, 99741.09336 -2239208.47379, 99741.13844 -2239208.52872, 99741.19342 -2239208.57384, 99741.81523 -2239209.33152, 99742.27728 -2239210.19596, 99742.56181 -2239211.13392, 99742.5926 -2239211.44657, 99742.86197 -2239212.33455, 99742.90074 -2239212.72824, 99743.13715 -2239212.8546, 99743.89484 -2239213.47642, 99744.51665 -2239214.2341, 99744.9787 -2239215.09853, 99745.26323 -2239216.0365, 99745.3593 -2239217.01195, 99745.3593 -2239217.21206, 99745.26323 -2239218.18751, 99745.18804 -2239218.43539, 99745.16318 -2239218.68777, 99744.87865 -2239219.62574, 99744.4166 -2239220.49017, 99743.79478 -2239221.24785, 99743.0371 -2239221.86967, 99742.17267 -2239222.33172, 99742.08305 -2239222.3589, 99741.57235 -2239222.63188, 99741.54248 -2239222.64094, 99741.40242 -2239222.7158, 99741.33621 -2239222.77014, 99741.01312 -2239222.94283, 99740.73589 -2239223.17035, 99739.87146 -2239223.6324, 99738.93349 -2239223.91693, 99738.68112 -2239223.94179, 99738.43323 -2239224.01698, 99738.32904 -2239224.02724, 99738.03302 -2239224.11704, 99737.05757 -2239224.21311, 99736.95751 -2239224.21311, 99735.98206 -2239224.11704, 99735.73415 -2239224.04184, 99735.4818 -2239224.01698, 99734.54383 -2239223.73246, 99734.20335 -2239223.55047, 99734.14362 -2239223.53235, 99733.27919 -2239223.0703, 99732.56422 -2239222.48354, 99731.8799 -2239222.41614, 99731.58392 -2239222.32636, 99731.47969 -2239222.31609, 99730.54173 -2239222.03156, 99730.50281 -2239222.01076, 99730.24157 -2239221.93151, 99729.37713 -2239221.46946, 99728.61945 -2239220.84764, 99728.57435 -2239220.79269, 99728.5194 -2239220.74759, 99727.89759 -2239219.98991, 99727.43554 -2239219.12547, 99727.15101 -2239218.18751, 99727.05493 -2239217.21206, 99727.05493 -2239217.01195, 99727.05953 -2239216.96524, 99726.98147 -2239216.92351, 99726.87727 -2239216.91325, 99725.93931 -2239216.62872, 99725.76905 -2239216.53772, 99725.7392 -2239216.52866, 99725.70253 -2239216.50906, 99725.65156 -2239216.50906, 99724.67611 -2239216.41298, 99723.73815 -2239216.12845, 99722.87371 -2239215.6664, 99722.11603 -2239215.04459, 99722.07093 -2239214.98964, 99722.01598 -2239214.94454, 99721.39416 -2239214.18686, 99720.93211 -2239213.32242, 99720.92305 -2239213.29255, 99720.83206 -2239213.12232, 99720.54753 -2239212.18435, 99720.45146 -2239211.2089))
</op>
</test>
<test>
<desc>buffer-10</desc>
<op name="buffer" arg1="a" arg2="10">
POLYGON((99739.3044617493 -2239228.93117449,99739.008469 -2239229.020963,99737.057565 -2239229.21311,99736.957513 -2239229.21311,99735.00661 -2239229.020963,99734.7587215452 -2239228.94576679,99734.506346 -2239228.92091,99732.630415 -2239228.351853,99732.2899489618 -2239228.16987015,99732.230205 -2239228.151747,99730.501337 -2239227.227648,99730.4848796373 -2239227.2141418,99728.62831 -2239226.650958,99728.5893723796 -2239226.63014541,99728.328152 -2239226.550905,99726.599284 -2239225.626806,99725.083918 -2239224.383178,99725.0388167068 -2239224.32822188,99724.983866 -2239224.283125,99723.740237 -2239222.76776,99722.8223261684 -2239221.05046925,99721.82473 -2239220.747852,99720.095862 -2239219.823753,99718.580496 -2239218.580124,99718.5353971293 -2239218.52517087,99718.480444 -2239218.480072,99717.236815 -2239216.964706,99716.312716 -2239215.235838,99716.3036531494 -2239215.20596176,99716.212664 -2239215.035733,99715.643606 -2239213.159802,99715.451459 -2239211.208899,99715.451459 -2239210.50853,99715.643606 -2239208.557627,99715.7042101752 -2239208.357842,99715.743659 -2239207.957311,99715.8188539234 -2239207.70942636,99715.843711 -2239207.457048,99716.412769 -2239205.581117,99716.5037597346 -2239205.41088527,99716.512822 -2239205.381011,99717.436921 -2239203.652143,99718.680549 -2239202.136778,99718.7355025838 -2239202.09167879,99718.780602 -2239202.036725,99718.8355551293 -2239201.99162613,99718.880654 -2239201.936673,99718.935607786 -2239201.89157358,99718.980707 -2239201.83662,99719.0356606586 -2239201.79152069,99719.08076 -2239201.736567,99719.1357131293 -2239201.69146813,99719.180812 -2239201.636515,99720.696178 -2239200.392886,99722.425046 -2239199.468787,99722.4549222379 -2239199.45972415,99722.625151 -2239199.368735,99723.0271739372 -2239199.24678256,99723.282971 -2239198.935093,99723.3379241293 -2239198.88999413,99723.383023 -2239198.835041,99723.437976786 -2239198.78994158,99723.483076 -2239198.734988,99724.998441 -2239197.49136,99725.1599836931 -2239197.40501365,99725.298599 -2239197.291255,99727.027467 -2239196.367155,99727.0573455502 -2239196.35809145,99727.1672091138 -2239196.29936816,99727.299652 -2239196.190675,99729.02852 -2239195.266576,99730.904451 -2239194.697519,99732.855355 -2239194.505372,99733.155512 -2239194.505372,99735.106416 -2239194.697519,99736.982347 -2239195.266576,99737.1525800191 -2239195.35756742,99737.182452 -2239195.366629,99738.0336074759 -2239195.82158098,99738.182978 -2239195.866892,99738.3921436726 -2239195.97869336,99738.683242 -2239196.066997,99740.41211 -2239196.991097,99741.927475 -2239198.234725,99743.171103 -2239199.75009,99744.095203 -2239201.478958,99744.66426 -2239203.35489,99744.6723060104 -2239203.43658259,99744.695519 -2239203.480011,99745.264576 -2239205.355942,99745.3020732906 -2239205.73665892,99745.972577 -2239206.55367,99746.896677 -2239208.282538,99747.3895739426 -2239209.90740274,99747.430371 -2239209.940884,99748.673999 -2239211.45625,99749.598098 -2239213.185118,99750.167155 -2239215.061049,99750.359303 -2239217.011952,99750.359303 -2239217.212057,99750.167155 -2239219.16296,99750.0919601843 -2239219.41084441,99750.067103 -2239219.663224,99749.498045 -2239221.539155,99748.573946 -2239223.268023,99747.330318 -2239224.783388,99745.814952 -2239226.027017,99744.086084 -2239226.951116,99744.0485605807 -2239226.9624986,99743.7909773231 -2239227.10017983,99743.513742 -2239227.327701,99741.784874 -2239228.2518,99739.908942 -2239228.820858,99739.6565636369 -2239228.84571508,99739.408679 -2239228.92091,99739.3044617493 -2239228.93117449))
</op>
</test>
</case>
</run>
``` | /content/code_sandbox/modules/tests/src/test/resources/testxml/misc/TestBufferJagged.xml | xml | 2016-01-25T18:08:41 | 2024-08-15T17:34:53 | jts | locationtech/jts | 1,923 | 60,966 |
```xml
<!--
~ contributor license agreements. See the NOTICE file distributed with
~ this work for additional information regarding copyright ownership.
~
~ path_to_url
~
~ Unless required by applicable law or agreed to in writing, software
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-->
<dataset>
<metadata>
<column name="broadcast_table" />
</metadata>
<row values="t_product_category" />
</dataset>
``` | /content/code_sandbox/test/e2e/sql/src/test/resources/cases/rdl/dataset/distsql_rdl/create_broadcast_rules.xml | xml | 2016-01-18T12:49:26 | 2024-08-16T15:48:11 | shardingsphere | apache/shardingsphere | 19,707 | 105 |
```xml
/*
*
* This source code is licensed under the MIT license which is detailed in the LICENSE.txt file.
*/
import * as path from "node:path";
import { Logger, log, getLogger, objectName } from "extraterm-logging";
import { CDockAreaWidget, CDockManager, CDockWidget, CFloatingDockContainer, CFloatingDockContainerSignals,
DockWidgetFeature, DockWidgetArea, TitleBarButton, eConfigFlag} from "nodegui-plugin-qads";
import { FontSlice } from "extraterm-char-render-canvas";
import { Color } from "extraterm-color-utilities";
import { DebouncedDoLater, doLater } from "extraterm-timeoutqt";
import { Event, EventEmitter } from "extraterm-event-emitter";
import { QWidget, QToolButton, ToolButtonPopupMode, QMenu, QVariant, QAction, FocusPolicy, QKeyEvent, WidgetAttribute,
QPoint, QRect, QKeySequence, QWindow, QScreen, QApplication, ContextMenuPolicy, QBoxLayout, QLabel, TextFormat,
QMouseEvent, MouseButton, Visibility, QIcon, QSize, WindowState, WidgetEventTypes, wrapperCache, TextInteractionFlag,
ShortcutContext,
QWheelEvent} from "@nodegui/nodegui";
import { Disposable, TerminalTheme } from "@extraterm/extraterm-extension-api";
import { Menu, ToolButton, Label, Widget, repolish } from "qt-construct";
import { loadFile as loadFontFile} from "extraterm-font-ligatures";
import he from "he";
import { hasEmojiPresentation } from "extraterm-unicode-utilities";
import * as SourceDir from "./SourceDir.js";
import { FontInfo, GeneralConfig, GENERAL_CONFIG } from "./config/Config.js";
import { ConfigChangeEvent, ConfigDatabase } from "./config/ConfigDatabase.js";
import { Tab } from "./Tab.js";
import { Terminal } from "./terminal/Terminal.js";
import { TerminalVisualConfig } from "./terminal/TerminalVisualConfig.js";
import { ThemeManager } from "./theme/ThemeManager.js";
import { CommandQueryOptions, ExtensionManager } from "./InternalTypes.js";
import { KeybindingsIOManager } from "./keybindings/KeybindingsIOManager.js";
import { qKeyEventToMinimalKeyboardEvent } from "./keybindings/QKeyEventUtilities.js";
import { UiStyle } from "./ui/UiStyle.js";
import { CachingLigatureMarker, LigatureMarker } from "./CachingLigatureMarker.js";
import { DisposableEventHolder, DisposableHolder } from "./utils/DisposableUtils.js";
import { createHtmlIcon } from "./ui/Icons.js";
import { SettingsTab } from "./settings/SettingsTab.js";
import { ContextMenuEvent } from "./ContextMenuEvent.js";
import { DecoratedFrame } from "./terminal/DecoratedFrame.js";
import { TWEMOJI_FAMILY } from "./TwemojiConstants.js";
import { BlockFrame } from "./terminal/BlockFrame.js";
import { CommonExtensionWindowState } from "./extension/CommonExtensionState.js";
import { Direction, nextDockAreaInDirection } from "./utils/QadsNext.js";
import { EmptyPaneTab } from "./EmptyPaneTab.js";
export function setupWindowManager(extensionManager: ExtensionManager, keybindingsManager: KeybindingsIOManager,
configDatabase: ConfigDatabase, themeManager: ThemeManager, uiStyle: UiStyle): WindowManager {
const windowManager = new WindowManager(extensionManager, keybindingsManager, configDatabase, themeManager, uiStyle);
windowManager.init();
return windowManager;
}
export class WindowManager {
private _log: Logger = null;
#extensionManager: ExtensionManager = null;
#keybindingsManager: KeybindingsIOManager = null;
#configDatabase: ConfigDatabase = null;
#themeManager: ThemeManager = null;
#uiStyle: UiStyle = null;
#dummyWindow: QWidget = null;
#dockManager: CDockManager = null;
#allWindows: Window[] = [];
#allTabs: TabPlumbing[] = [];
onNewWindow: Event<Window> = null;
#onNewWindowEventEmitter = new EventEmitter<Window>();
constructor(extensionManager: ExtensionManager,keybindingsManager: KeybindingsIOManager,
configDatabase: ConfigDatabase, themeManager: ThemeManager, uiStyle: UiStyle) {
this._log = getLogger("WindowManager", this);
this.#extensionManager = extensionManager;
this.#keybindingsManager = keybindingsManager;
this.#configDatabase = configDatabase;
this.#themeManager = themeManager;
this.#uiStyle = uiStyle;
this.onNewWindow = this.#onNewWindowEventEmitter.event;
}
init(): void {
CDockManager.setConfigFlag(eConfigFlag.FocusHighlighting, true);
CDockManager.setConfigFlag(eConfigFlag.DockAreaHasCloseButton, false);
CDockManager.setConfigFlag(eConfigFlag.DockAreaHasTabsMenuButton, false);
CDockManager.setConfigFlag(eConfigFlag.DockAreaHasUndockButton, false);
CDockManager.setConfigFlag(eConfigFlag.AlwaysShowTabs, true);
CDockManager.setConfigFlag(eConfigFlag.AllTabsHaveCloseButton, true);
CDockManager.setConfigFlag(eConfigFlag.FloatingContainerIndependent, true);
CDockManager.setConfigFlag(eConfigFlag.DockWidgetTabTitle, false);
CDockManager.setConfigFlag(eConfigFlag.DockWidgetTabContextMenu, false);
CDockManager.setConfigFlag(eConfigFlag.EqualSplitOnInsertion, true);
CDockManager.setConfigFlag(eConfigFlag.FloatingContainerHasWidgetIcon, true);
const generalConfig = this.#configDatabase.getGeneralConfig();
if (generalConfig.titleBarStyle === "native") {
CDockManager.setConfigFlag(eConfigFlag.FloatingContainerForceNativeTitleBar, true);
} else {
CDockManager.setConfigFlag(eConfigFlag.FloatingContainerForceQWidgetTitleBar, true);
CDockManager.setConfigFlag(eConfigFlag.FloatingContainerShowWidgetTitle,
generalConfig.titleBarStyle === "theme");
}
QApplication.setWindowIcon(createWindowIcon());
this.#dummyWindow = new QWidget();
this.#dockManager = new CDockManager(this.#dummyWindow);
this.#dockManager.setStyleSheet("", false);
this.#dockManager.addEventListener("dockAreaCreated", (dockArea: any) => {
const dockAreaWidget = wrapperCache.getWrapper(dockArea) as CDockAreaWidget;
new DockAreaMenu(this.#extensionManager, this.#keybindingsManager, this.#uiStyle, dockAreaWidget);
});
this.#dockManager.addEventListener("dockAreaAboutToBeRemoved", (dockArea: any) => {
const dockAreaWidget = wrapperCache.getWrapper(dockArea) as CDockAreaWidget;
const container = dockAreaWidget.dockContainer();
// This is a work-around for a thing which only affects Linux. When a
// split/DockArea is removed, focus isn't automatically set on a remaining tab.
if (process.platform === "linux" && container.isFloating()) {
const win = this.getWindowForFloatingContainer(container.floatingWidget());
doLater(() => {
if ( ! this.#allWindows.includes(win)) {
return;
}
win.focus();
const tabCount = win.getTabCount();
if (tabCount !== 0) {
const i = Math.min(tabCount-1, win.getCurrentTabIndex());
const tab = win.getTab(i);
if (tab != null) {
win.focusTab(tab);
}
}
});
}
});
this.#dockManager.addEventListener("floatingWidgetCreated", (nativeFloatingDockContainer: any) => {
const floatingDockContainer = wrapperCache.getWrapper(nativeFloatingDockContainer) as CFloatingDockContainer;
this.#handleFloatingDockContainer(floatingDockContainer);
});
this.#dockManager.addEventListener("floatingWidgetAboutToBeRemoved", (nativeFloatingDockContainer: any) => {
const floatingDockContainer = wrapperCache.getWrapper(nativeFloatingDockContainer) as CFloatingDockContainer;
this.#handleFloatingDockDestroy(floatingDockContainer);
});
this.#dockManager.addEventListener("dockWidgetAboutToBeRemoved", (dockWidget: any /* ads::CDockWidget */) => {
const dw = wrapperCache.getWrapper(dockWidget) as CDockWidget;
});
this.#dockManager.addEventListener("dockWidgetAdded", (dockWidget: any /* ads::CDockWidget */) => {
const dw = wrapperCache.getWrapper(dockWidget) as CDockWidget;
this.#removeSpacers(dw.dockAreaWidget());
});
this.#dockManager.addEventListener("dockWidgetRemoved", (dockWidget: any /* ads::CDockWidget */) => {
const dw = wrapperCache.getWrapper(dockWidget) as CDockWidget;
});
this.#dockManager.addEventListener("focusedDockWidgetChanged", (oldDockWidget: any /* ads::CDockWidget */,
newDockWidget: any /* ads::CDockWidget */) => {
const dw = wrapperCache.getWrapper(newDockWidget) as CDockWidget;
const oldDw = wrapperCache.getWrapper(oldDockWidget) as CDockWidget;
this.#handleFocusedDockWidgetChanged(dw, oldDw);
});
}
#handleFocusedDockWidgetChanged(dockWidget: CDockWidget, previousDockWidget: CDockWidget): void {
const oldTabPlumbing = this.getTabPlumbingForDockWidget(previousDockWidget);
if (oldTabPlumbing != null) {
oldTabPlumbing.setIsCurrent(false);
}
const tabPlumbing = this.getTabPlumbingForDockWidget(dockWidget);
if (tabPlumbing == null) {
this._log.warn(`#handleFocusedDockWidgetChanged(): tabPlumbing is null`);
return;
}
const window = this.getWindowForTab(tabPlumbing.tab);
if (window == null) {
this._log.warn(`#handleFocusedDockWidgetChanged(): window is null`);
return;
}
tabPlumbing.setIsCurrent(true);
const tab = tabPlumbing.tab;
this.#extensionManager.setActiveTab(tab);
this.#extensionManager.setActiveWindow(window);
window.handleTabFocusChanged(tab);
}
async #handleFloatingDockContainer(floatingDockContainer: CFloatingDockContainer): Promise<void> {
let newWindow = this.#getWindowByFloatingDockContainer(floatingDockContainer);
if (newWindow == null) {
newWindow = new Window(this, floatingDockContainer, this.#configDatabase, this.#extensionManager,
this.#keybindingsManager, this.#themeManager, this.#uiStyle);
this.#allWindows.push(newWindow);
}
newWindow.init();
this.#onNewWindowEventEmitter.fire(newWindow);
}
#handleFloatingDockDestroy(floatingDockContainer: CFloatingDockContainer): void {
const window = this.#getWindowByFloatingDockContainer(floatingDockContainer);
if (window != null) {
this.disposeWindow(window);
}
}
#getWindowByFloatingDockContainer(dockContainer: CFloatingDockContainer): Window {
for (const win of this.#allWindows) {
if (win.dockContainer === dockContainer) {
return win;
}
}
return null;
}
getDockManager(): CDockManager {
return this.#dockManager;
}
createEmptyPaneTab(): TabPlumbing {
const emptyPaneTab = new EmptyPaneTab(this.#extensionManager, this.#keybindingsManager, this.#uiStyle);
const plumbing = this.prepareTab(emptyPaneTab);
plumbing.dockWidget.setFeature(DockWidgetFeature.NoTab, true);
return plumbing;
}
createWindow(geometry: QRect): Window {
const emptyPaneTabPlumbing = this.createEmptyPaneTab();
const dockContainer = this.#dockManager.addDockWidgetFloating(emptyPaneTabPlumbing.dockWidget);
// ^ This will hit `handleNewFloatingDockContainer()` below via an event.
if (geometry != null) {
dockContainer.setGeometry(geometry.left(), geometry.top(), geometry.width(), geometry.height());
}
const win = this.#getWindowByFloatingDockContainer(dockContainer);
(<EmptyPaneTab> emptyPaneTabPlumbing.tab).populateMenu(win);
return win;
}
disposeWindow(window: Window): void {
if ( ! this.#allWindows.includes(window)) {
this._log.warn(`Double disposeWindow() on ${objectName(window)}`);
return;
}
window.dispose();
this.#allWindows = this.#allWindows.filter(w => w !== window);
}
#removeSpacers(dw: CDockAreaWidget): void {
const openedDockWidgets = dw.openedDockWidgets();
if (openedDockWidgets.length <= 1) {
return;
}
for (const dockWidget of openedDockWidgets) {
const plumbing = this.getTabPlumbingForDockWidget(dockWidget);
if (plumbing.tab instanceof EmptyPaneTab) {
const win = this.getWindowForTab(plumbing.tab);
win.removeTab(plumbing.tab);
break;
}
}
}
getAllWindows(): Window[] {
return this.#allWindows;
}
getTabPlumbingForTab(tab: Tab): TabPlumbing {
for (const tabPlumbing of this.#allTabs) {
if (tabPlumbing.tab === tab) {
return tabPlumbing;
}
}
return null;
}
getTabPlumbingForDockWidget(dockWidget: CDockWidget): TabPlumbing {
for (const tabPlumbing of this.#allTabs) {
if (tabPlumbing.dockWidget === dockWidget) {
return tabPlumbing;
}
}
return null;
}
getWindowForFloatingContainer(floatingContainer: CFloatingDockContainer): Window {
for (const win of this.#allWindows) {
if (win.dockContainer === floatingContainer) {
return win;
}
}
return null;
}
getWindowForTab(tab: Tab): Window {
for (const win of this.#allWindows) {
if (win.hasTab(tab)) {
return win;
}
}
return null;
}
hasTab(tab: Tab): boolean {
return this.#allTabs.map(t => t.tab).includes(tab);
}
prepareTab(tab: Tab): TabPlumbing {
const tabPlumbing = new TabPlumbing(this, tab);
this.#allTabs.push(tabPlumbing);
return tabPlumbing;
}
disposeTabPlumbing(tabPlumbing: TabPlumbing): void {
this.#allTabs.splice(this.#allTabs.indexOf(tabPlumbing), 1);
}
getSafeWindowTabs(window: Window): Tab[] {
// This is a work around for some flakey behaviour in QADS where a
// `FloatingDockContainer` keeps its tabs during event firing when it
// is being destroyed and its tabs redistributed to other windows.
// Really, these references to tabs it no longer should own, should
// have been removed from the `FloatingDockContainer` instance.
// They're 'ghost' pointers.
const windowTabs = this.#getWindowTabs(window);
const otherTabs = new Set<Tab>();
for (const w of this.#allWindows) {
if (w !== window) {
for (const tab of this.#getWindowTabs(w)) {
otherTabs.add(tab);
}
}
}
// Remove any tabs which also appear to belong to other windows.
return windowTabs.filter(t => ! otherTabs.has(t));
}
#getWindowTabs(window: Window): Tab[] {
const result: Tab[] = [];
for (const dockWidget of window.dockContainer.dockWidgets()) {
const plumbing = this.getTabPlumbingForDockWidget(dockWidget);
if (plumbing != null) {
result.push(plumbing.tab);
}
}
return result;
}
moveTabIntoFloatingWindow(tab: Tab): void {
const plumbing = this.getTabPlumbingForTab(tab);
this.#dockManager.addDockWidgetFloating(plumbing.dockWidget);
}
}
export interface PopOutClickedDetails {
window: Window;
frame: DecoratedFrame;
terminal: Terminal;
}
function createWindowIcon(): QIcon {
const windowIcon = new QIcon();
for (const size of [16, 22, 32, 64, 256]) {
const iconPath = path.join(SourceDir.path, `../resources/logo/extraterm_small_logo_${size}x${size}.png`);
windowIcon.addFile(iconPath, new QSize(size, size));
}
return windowIcon;
}
class TabPlumbing implements Disposable {
private _log: Logger = null;
tab: Tab = null;
#windowManager: WindowManager = null;
#disposableHolder = new DisposableHolder();
titleLabel: QLabel = null;
titleWidget: QWidget = null;
dockWidget: CDockWidget = null;
constructor(windowManager: WindowManager, tab: Tab) {
this._log = getLogger("TabPlumbing", this);
this.#windowManager = windowManager;
this.tab = tab;
const dockWidget = new CDockWidget(tab.getWindowTitle());
dockWidget.setFeature(DockWidgetFeature.CustomCloseHandling, true);
dockWidget.setWidget(tab.getContents());
const tabWidget = dockWidget.tabWidget();
this.dockWidget = dockWidget;
if (tab instanceof Terminal) {
this.#disposableHolder.add(tab.onContextMenu((ev: ContextMenuEvent) => {
const window = this.#windowManager.getWindowForTab(tab);
window.openContextMenu(ev.terminal, ev.blockFrame, ev.x, ev.y);
}));
this.#disposableHolder.add(tab.onPopOutClicked((details) => {
const window = this.#windowManager.getWindowForTab(tab);
window.tabPopOutClicked(details);
}));
}
this.#disposableHolder.add(tab.onWindowTitleChanged((title: string) => {
const window = this.#windowManager.getWindowForTab(tab);
if (window == null) {
return;
}
window.handleTabWindowTitleChanged(tab, title);
}));
dockWidget.addEventListener("closeRequested", () => {
const window = this.#windowManager.getWindowForTab(tab);
if (window == null) {
return;
}
window.handleTabCloseClicked(tab);
});
this.#disposableHolder.add(tab.onWindowTitleChanged((title: string) => {
this.dockWidget.setWindowTitle(title);
}));
tabWidget.addEventListener(WidgetEventTypes.MouseButtonPress, (nativeEvent) => {
const ev = new QMouseEvent(nativeEvent);
const window = this.#windowManager.getWindowForTab(tab);
window.handleTabMouseButtonPress(tab, ev);
});
tabWidget.addEventListener(WidgetEventTypes.Wheel, (nativeEvent) => {
const ev = new QWheelEvent(nativeEvent);
const hScrollBar = dockWidget.dockAreaWidget().titleBar().tabBar().horizontalScrollBar();
hScrollBar.setValue(hScrollBar.value() - ev.pixelDelta().y);
});
}
setIsCurrent(isCurrent: boolean): void {
this.tab.setIsCurrent(isCurrent);
}
dispose(): void {
this.dockWidget.takeWidget();
this.tab.setParent(null);
this.dockWidget.deleteDockWidget();
this.#disposableHolder.dispose();
this.#windowManager.disposeTabPlumbing(this);
}
}
enum WindowOpenState {
Closed,
Open,
Minimized,
ClosedMinimized
}
let windowIdCounter = 0;
class DockAreaMenu {
private _log: Logger = null;
#dockAreaWidget: CDockAreaWidget = null;
#extensionManager: ExtensionManager = null;
#keybindingsIOManager: KeybindingsIOManager = null;
#uiStyle: UiStyle = null;
#hamburgerMenuButton: QToolButton = null;
#hamburgerMenu: QMenu = null;
#tabsMenuButton:QToolButton = null;
#tabsMenu: QMenu = null;
constructor(extensionManager: ExtensionManager, keybindingsIOManager: KeybindingsIOManager,
uiStyle: UiStyle, dockAreaWidget: CDockAreaWidget) {
this._log = getLogger("DockAreaMenu", this);
this.#dockAreaWidget = dockAreaWidget;
this.#extensionManager = extensionManager;
this.#keybindingsIOManager = keybindingsIOManager;
this.#uiStyle = uiStyle;
this.#init();
}
#init(): void {
const menu = this.#createHamburgerMenu();
const titleBar = this.#dockAreaWidget.titleBar();
const index = titleBar.indexOf(titleBar.button(TitleBarButton.TitleBarButtonTabsMenu));
titleBar.insertWidget(index + 1, menu);
const tabsMenu = this.#createTabsMenu();
titleBar.insertWidget(index + 1, tabsMenu);
}
#createHamburgerMenu(): QToolButton {
const iconPair = this.#uiStyle.getToolbarButtonIconPair("fa-bars");
this.#hamburgerMenuButton = ToolButton({
icon: iconPair.normal,
popupMode: ToolButtonPopupMode.InstantPopup,
onEnter: () => {
this.#hamburgerMenuButton.setIcon(iconPair.hover);
},
onLeave: () => {
this.#hamburgerMenuButton.setIcon(iconPair.normal);
},
onMouseButtonPress: () => {
this.#updateHamburgerMenu(this.#uiStyle);
},
menu: this.#hamburgerMenu = Menu({
attribute: [WidgetAttribute.WA_TranslucentBackground],
onTriggered: (nativeAction) => {
const action = new QAction(nativeAction);
this.#handleWindowMenuTriggered(action.data().toString());
}
})
});
this.#updateHamburgerMenu(this.#uiStyle);
return this.#hamburgerMenuButton;
}
#updateHamburgerMenu(uiStyle: UiStyle): void {
const options: CommandQueryOptions = {
when: true,
windowMenu: true,
};
this.#updateMenu(this.#hamburgerMenu, uiStyle, options);
}
#updateMenu(menu: QMenu, uiStyle: UiStyle, options: CommandQueryOptions, context?: CommonExtensionWindowState): void {
menu.clear();
if (context == null) {
context = this.#extensionManager.copyExtensionWindowState();
}
const entries = this.#extensionManager.queryCommandsWithExtensionWindowState(options, context);
if (entries.length === 0) {
return;
}
const termKeybindingsMapping = this.#keybindingsIOManager.getCurrentKeybindingsMapping();
let category = entries[0].category;
for (const entry of entries) {
if (entry.category !== category) {
menu.addSeparator();
category = entry.category;
}
const action = menu.addAction(entry.title);
action.setData(new QVariant(entry.command));
action.setShortcutContext(ShortcutContext.WidgetShortcut);
if (entry.icon != null && entry.icon !== "") {
const icon = uiStyle.getMenuIcon(entry.icon);
if (icon != null) {
action.setIcon(icon);
}
}
const shortcuts = termKeybindingsMapping.getKeyStrokesForCommand(entry.command);
if (shortcuts.length !== 0) {
const shortcut = shortcuts.length !== 0 ? shortcuts[0].formatHumanReadable() : "";
action.setShortcut(new QKeySequence(shortcut));
}
}
}
#handleWindowMenuTriggered(commandName: string): void {
doLater( () => {
try {
this.#extensionManager.executeCommand(commandName);
} catch(e) {
this._log.warn(e);
}
});
}
#createTabsMenu(): QToolButton {
const iconPair = this.#uiStyle.getToolbarButtonIconPair("fa-caret-down");
this.#tabsMenuButton = ToolButton({
icon: iconPair.normal,
popupMode: ToolButtonPopupMode.InstantPopup,
onEnter: () => {
this.#tabsMenuButton.setIcon(iconPair.hover);
},
onLeave: () => {
this.#tabsMenuButton.setIcon(iconPair.normal);
},
onMouseButtonPress: () => {
this.#updateHamburgerMenu(this.#uiStyle);
},
menu: this.#tabsMenu = Menu({
attribute: [WidgetAttribute.WA_TranslucentBackground],
onAboutToShow: () => {
this.#handleTabsMenuAboutToShow();
},
onTriggered: (nativeAction) => {
const action = new QAction(nativeAction);
this.#handleTabsMenuTriggered(action.data().toInt());
}
})
});
return this.#tabsMenuButton;
}
#handleTabsMenuAboutToShow(): void {
this.#tabsMenu.clear();
const tabBar = this.#dockAreaWidget.titleBar().tabBar();
for (let i = 0; i < tabBar.count(); ++i) {
if (!tabBar.isTabOpen(i)) {
continue;
}
const tab = tabBar.tab(i);
const action = new QAction();
action.setText(tab.text());
this.#tabsMenu.addAction(action);
action.setData(new QVariant(i));
}
}
#handleTabsMenuTriggered(index: number): void {
this.#dockAreaWidget.setCurrentIndex(index);
}
}
export class Window implements Disposable {
private _log: Logger = null;
#id = 0;
#windowManager: WindowManager = null;
#configDatabase: ConfigDatabase = null;
#extensionManager: ExtensionManager = null;
#keybindingsIOManager: KeybindingsIOManager = null;
#disposables: DisposableHolder = null;
#dockContainerEventHolder: DisposableEventHolder<CFloatingDockContainerSignals> = null;
#windowOpenState = WindowOpenState.Closed;
dockContainer: CFloatingDockContainer = null;
#initialEmptyState = true;
#windowHandle: QWindow = null;
#screen: QScreen = null;
#lastConfigDpi = -1;
#lastConfigDpr = -1;
#contextMenu: QMenu = null;
#terminalVisualConfig: TerminalVisualConfig = null;
#themeManager: ThemeManager = null;
#uiStyle: UiStyle = null;
onTabCloseRequest: Event<Tab> = null;
#onTabCloseRequestEventEmitter = new EventEmitter<Tab>();
onTabChange: Event<Tab> = null;
#onTabChangeEventEmitter = new EventEmitter<Tab>();
onWindowGeometryChanged: Event<void> = null;
#onWindowGeometryChangedEventEmitter = new EventEmitter<void>();
#onPopOutClickedEventEmitter = new EventEmitter<PopOutClickedDetails>();
onPopOutClicked: Event<PopOutClickedDetails> = null;
#onWindowDisposeEventEmitter = new EventEmitter<Window>();
onWindowDispose: Event<Window> = null;
constructor(windowManager: WindowManager, dockContainer: CFloatingDockContainer, configDatabase: ConfigDatabase,
extensionManager: ExtensionManager, keybindingsIOManager: KeybindingsIOManager, themeManager: ThemeManager,
uiStyle: UiStyle) {
this._log = getLogger("Window", this);
++windowIdCounter;
this.#id = windowIdCounter;
this.#windowManager = windowManager;
this.dockContainer = dockContainer;
this.#configDatabase = configDatabase;
this.#extensionManager = extensionManager;
this.#keybindingsIOManager = keybindingsIOManager;
this.#themeManager = themeManager;
this.#uiStyle = uiStyle;
this.#disposables = new DisposableHolder();
this.#dockContainerEventHolder = new DisposableEventHolder<CFloatingDockContainerSignals>(dockContainer);
this.#disposables.add(this.#dockContainerEventHolder);
this.#handleLogicalDpiChanged = this.#UnboundHandleLogicalDpiChanged.bind(this);
this.onTabCloseRequest = this.#onTabCloseRequestEventEmitter.event;
this.onTabChange = this.#onTabChangeEventEmitter.event;
this.onWindowGeometryChanged = this.#onWindowGeometryChangedEventEmitter.event;
this.onPopOutClicked = this.#onPopOutClickedEventEmitter.event;
this.onWindowDispose = this.#onWindowDisposeEventEmitter.event;
}
async init(): Promise<void> {
const generalConfig = this.#configDatabase.getGeneralConfig();
this.#configDatabase.onChange((event: ConfigChangeEvent) => this.#handleConfigChangeEvent(event));
this.#dockContainerEventHolder.addEventListener(WidgetEventTypes.KeyPress, (nativeEvent) => {
this.#handleKeyPress(new QKeyEvent(nativeEvent));
});
this.#dockContainerEventHolder.addEventListener(WidgetEventTypes.Close, () => {
this.#windowOpenState = WindowOpenState.Closed;
});
this.dockContainer.setWindowIcon(createWindowIcon());
this.dockContainer.setMouseTracking(true);
this.dockContainer.setContextMenuPolicy(ContextMenuPolicy.PreventContextMenu);
this.dockContainer.setFocusPolicy(FocusPolicy.ClickFocus);
this.#loadStyleSheet(generalConfig.uiScalePercent/100);
this.#initContextMenu();
this.#terminalVisualConfig = await this.#createTerminalVisualConfig();
this.dockContainer.show();
this.#windowHandle = this.dockContainer.windowHandle();
this.#windowHandle.addEventListener("screenChanged", (screen: QScreen) => {
this.#watchScreen(screen);
this.#handleDpiAndDprChanged(this.#screen.logicalDotsPerInch(), this.#screen.devicePixelRatio());
});
this.#windowHandle.addEventListener("visibilityChanged", (visibility: Visibility) => {
this.#onWindowGeometryChangedEventEmitter.fire();
});
this.#windowHandle.addEventListener(WidgetEventTypes.Move, () => {
this.#onWindowGeometryChangedEventEmitter.fire();
});
this.#windowHandle.addEventListener(WidgetEventTypes.Resize, () => {
this.#onWindowGeometryChangedEventEmitter.fire();
});
this.#windowHandle.addEventListener("windowStateChanged", (windowState: WindowState) => {
this.#handleWindowStateChanged(windowState);
});
this.#windowOpenState = WindowOpenState.Open;
this.#updateTerminalVisualConfig();
}
#loadStyleSheet(uiScale: number): void {
this.dockContainer.setStyleSheet("", false);
// this.#hamburgerMenu.setStyleSheet("", false);
if (process.platform === "darwin") {
uiScale *= 1.5; // Make everything bigger on macOS to more closely match native apps.
// Note: This factor appears in main.ts:#setApplicationStyle too.
}
const sheet = this.#uiStyle.getApplicationStyleSheet(uiScale, this.getDpi());
this.dockContainer.setStyleSheet(sheet, false);
// this.#hamburgerMenu.setStyleSheet(sheet, false);
}
#updateMenu(menu: QMenu, uiStyle: UiStyle, options: CommandQueryOptions, context?: CommonExtensionWindowState): void {
menu.clear();
if (context == null) {
context = this.#extensionManager.copyExtensionWindowState();
}
const entries = this.#extensionManager.queryCommandsWithExtensionWindowState(options, context);
if (entries.length === 0) {
return;
}
const termKeybindingsMapping = this.#keybindingsIOManager.getCurrentKeybindingsMapping();
let category = entries[0].category;
for (const entry of entries) {
if (entry.category !== category) {
menu.addSeparator();
category = entry.category;
}
const action = menu.addAction(entry.title);
action.setData(new QVariant(entry.command));
action.setShortcutContext(ShortcutContext.WidgetShortcut);
if (entry.icon != null && entry.icon !== "") {
const icon = uiStyle.getMenuIcon(entry.icon);
if (icon != null) {
action.setIcon(icon);
}
}
const shortcuts = termKeybindingsMapping.getKeyStrokesForCommand(entry.command);
if (shortcuts.length !== 0) {
const shortcut = shortcuts.length !== 0 ? shortcuts[0].formatHumanReadable() : "";
action.setShortcut(new QKeySequence(shortcut));
}
}
}
#initContextMenu(): void {
this.#contextMenu = Menu({
attribute: [WidgetAttribute.WA_TranslucentBackground],
onTriggered: (nativeAction) => {
const action = new QAction(nativeAction);
this.#handleContextMenuTriggered(this.#contextMenuState, action.data().toString());
},
onClose: () => {
doLater(() => {
this.#contextMenuState = null;
});
}
});
this.#contextMenu.hide();
}
openContextMenu(terminal: Terminal, blockFrame: BlockFrame, x: number, y: number): void {
const options: CommandQueryOptions = {
when: true,
contextMenu: true,
};
const state = this.#extensionManager.copyExtensionWindowState();
state.activeTerminal = terminal;
state.activeBlockFrame = blockFrame;
this.#contextMenuState = state;
this.#updateMenu(this.#contextMenu, this.#uiStyle, options, state);
this.#contextMenu.popup(new QPoint(x, y));
}
#contextMenuState: CommonExtensionWindowState = null;
#handleContextMenuTriggered(context: CommonExtensionWindowState, commandName: string): void {
doLater( async () => {
try {
this.#extensionManager.executeCommandWithExtensionWindowState(context, commandName);
// ^ Let any Promise here run to completion by itself.
this.#contextMenuState = null;
} catch(e) {
this._log.warn(e);
}
});
}
handleTabMouseButtonPress(tab: Tab, ev: QMouseEvent): void {
const isContextMenu = ev.button() === MouseButton.RightButton;
if (!isContextMenu) {
return;
}
this.focusTab(tab);
ev.accept();
const options: CommandQueryOptions = {
when: true,
terminalTitleMenu: true,
};
this.#updateMenu(this.#contextMenu, this.#uiStyle, options);
this.#contextMenu.popup(new QPoint(ev.globalX(), ev.globalY()));
}
handleTabCloseClicked(tab: Tab): void {
this.#onTabCloseRequestEventEmitter.fire(tab);
}
#handleKeyPress(event: QKeyEvent): void {
const ev = qKeyEventToMinimalKeyboardEvent(event);
const commands = this.#keybindingsIOManager.getCurrentKeybindingsMapping().mapEventToCommands(ev);
const filteredCommands = this.#extensionManager.queryCommands({
commands,
when: true
});
if (filteredCommands.length !== 0) {
if (filteredCommands.length !== 1) {
this._log.warn(`Commands ${filteredCommands.map(fc => fc.command).join(", ")} have conflicting keybindings.`);
}
try {
this.#extensionManager.executeCommand(filteredCommands[0].command);
} catch(ex) {
this._log.warn(ex);
}
}
}
async #createTerminalVisualConfig(): Promise<TerminalVisualConfig> {
const config = this.#configDatabase.getGeneralConfig();
const fontInfo = this.#getFontInfo(config.terminalFont);
const terminalTheme = this.#themeManager.getTerminalTheme(config.themeTerminal);
let ligatureMarker: LigatureMarker = null;
if (config.terminalDisplayLigatures && fontInfo.path != null) {
try {
const plainLigatureMarker = await loadFontFile(fontInfo.path);
if (plainLigatureMarker != null) {
ligatureMarker = new CachingLigatureMarker(plainLigatureMarker);
}
} catch(ex) {
this._log.warn(`Unable to read ligature data from font. Error was '${ex.message}'`);
}
}
const transparentBackground = config.windowBackgroundMode !== "opaque";
const extraFonts: FontSlice[] = [
{
fontFamily: TWEMOJI_FAMILY,
fontSizePx: 16,
containsCodePoint: hasEmojiPresentation,
sampleChars: ["\u{1f600}"] // Smile emoji
}
];
this.#lastConfigDpi = this.getDpi();
this.#lastConfigDpr = this.getDpr();
const scaledFontSize = config.terminalFontSize * this.#lastConfigDpr;
const terminalFontSizePx = Math.round(this.#pointsToPx(scaledFontSize, this.#lastConfigDpi));
const terminalVisualConfig: TerminalVisualConfig = {
cursorStyle: config.cursorStyle,
cursorBlink: config.blinkingCursor,
fontInfo,
fontSizePt: config.terminalFontSize,
fontSizePx: terminalFontSizePx,
extraFonts,
palette: this.#extractPalette(terminalTheme, transparentBackground),
terminalTheme,
transparentBackground,
useLigatures: config.terminalDisplayLigatures,
ligatureMarker,
windowDpr: this.getDpr(),
screenHeightHintPx: 1024, // FIXME
screenWidthHintPx: 1024, // FIXME
};
return terminalVisualConfig;
}
getId(): number {
return this.#id;
}
getDpi(): number {
const window = this.dockContainer;
const screen = window.isVisible() ? window.windowHandle().screen() : QApplication.primaryScreen();
return screen.logicalDotsPerInch();
}
getDpr(): number {
const window = this.dockContainer;
const screen = window.isVisible() ? window.windowHandle().screen() : QApplication.primaryScreen();
return screen.devicePixelRatio();
}
async #handleConfigChangeEvent(event: ConfigChangeEvent): Promise<void> {
if (event.key !== GENERAL_CONFIG) {
return;
}
const oldConfig = <GeneralConfig> event.oldConfig;
const newConfig = <GeneralConfig> event.newConfig;
if (oldConfig.uiScalePercent !== newConfig.uiScalePercent) {
this.#loadStyleSheet(newConfig.uiScalePercent / 100);
}
if (!(oldConfig.terminalFont === newConfig.terminalFont &&
oldConfig.terminalFontSize === newConfig.terminalFontSize &&
oldConfig.cursorStyle === newConfig.cursorStyle &&
oldConfig.blinkingCursor === newConfig.blinkingCursor &&
oldConfig.themeTerminal === newConfig.themeTerminal &&
oldConfig.terminalDisplayLigatures === newConfig.terminalDisplayLigatures &&
oldConfig.terminalMarginStyle === newConfig.terminalMarginStyle)) {
await this.#updateTerminalVisualConfig();
}
if (oldConfig.titleBarStyle !== newConfig.titleBarStyle) {
// this.#setWindowFrame(newConfig.titleBarStyle);
}
if (oldConfig.minimizeToTray !== newConfig.minimizeToTray) {
if (newConfig.minimizeToTray && newConfig.showTrayIcon) {
this.#convertToMinimizeToTray();
}
if ( ! newConfig.minimizeToTray) {
this.#convertToNormalMinimize();
}
}
}
async #updateTerminalVisualConfig(): Promise<void> {
this.#terminalVisualConfig = await this.#createTerminalVisualConfig();
for (const tab of this.#getTabs()) {
if (tab instanceof Terminal) {
tab.setTerminalVisualConfig(this.#terminalVisualConfig);
}
if (tab instanceof SettingsTab) {
tab.setTerminalVisualConfig(this.#terminalVisualConfig);
}
}
}
#extractPalette(terminalTheme: TerminalTheme, transparentBackground: boolean): number[] {
const palette = this.#extractPaletteFromTerminalVisualConfig(terminalTheme);
if (transparentBackground) {
palette[256] = 0x00000000;
}
return palette;
}
#extractPaletteFromTerminalVisualConfig(terminalTheme: TerminalTheme): number[] {
const result: number[] = [];
for (let i=0; i<256; i++) {
result.push(cssHexColorToRGBA(terminalTheme[i]));
}
result.push(cssHexColorToRGBA(terminalTheme.backgroundColor));
result.push(cssHexColorToRGBA(terminalTheme.foregroundColor));
result.push(cssHexColorToRGBA(terminalTheme.cursorBackgroundColor));
return result;
}
#pointsToPx(point: number, dpi: number): number {
return point * dpi / 72;
}
#getFontInfo(fontId: string): FontInfo {
const systemConfig = this.#configDatabase.getSystemConfig();
for (const fontInfo of systemConfig.availableFonts) {
if (fontInfo.id === fontId) {
return fontInfo;
}
}
return null;
}
open(): void {
this.dockContainer.show();
this.#moveOnScreen();
}
#moveOnScreen(): void {
const screenGeometry = this.dockContainer.windowHandle().screen().geometry();
const windowGeometry = this.dockContainer.geometry();
let changed = false;
let windowWidth = windowGeometry.width();
if (windowWidth > screenGeometry.width()) {
windowWidth = screenGeometry.width();
changed = true;
}
let windowHeight = windowGeometry.height();
if (windowHeight > screenGeometry.height()) {
windowHeight = screenGeometry.height();
changed = true;
}
let windowLeft = windowGeometry.left();
if (windowLeft < 0) {
windowLeft = 0;
changed = true;
}
if (windowLeft > screenGeometry.width() - windowWidth) {
windowLeft = screenGeometry.width() - windowWidth;
}
let windowTop = windowGeometry.top();
if (windowTop < 0) {
windowTop = 0;
changed = true;
}
if (windowTop > screenGeometry.height() - windowHeight) {
windowTop = screenGeometry.height() - windowHeight;
changed = true;
}
if (changed) {
this.dockContainer.setGeometry(windowLeft, windowTop, windowWidth, windowHeight);
}
}
dispose(): void {
// Terminate any running terminal tabs.
for (const tab of this.#getTabs()) {
this.removeTab(tab);
if (tab instanceof Terminal) {
tab.dispose();
}
}
this.#onWindowDisposeEventEmitter.fire(this);
this.#disposables.dispose();
}
isMaximized(): boolean {
return this.#windowHandle.visibility() === Visibility.Maximized;
}
maximize(): void {
this.dockContainer.showMaximized();
this.#windowOpenState = WindowOpenState.Open;
}
minimize(): void {
const config = this.#configDatabase.getGeneralConfig();
if (config.showTrayIcon && config.minimizeToTray) {
this.dockContainer.hide();
this.#windowOpenState = WindowOpenState.ClosedMinimized;
} else {
this.dockContainer.showMinimized();
this.#windowOpenState = WindowOpenState.Minimized;
}
}
isMinimized(): boolean {
return this.#windowOpenState === WindowOpenState.Minimized || this.#windowOpenState === WindowOpenState.ClosedMinimized;
}
isSplit(): boolean {
return this.dockContainer.dockContainer().dockAreaCount() !== 1;
}
restore(): void {
this.dockContainer.hide();
this.dockContainer.show();
this.dockContainer.showNormal();
for (const dockWidget of this.dockContainer.dockWidgets()) {
dockWidget.toggleView(true);
}
this.#windowOpenState = WindowOpenState.Open;
}
raise(): void {
this.dockContainer.activateWindow();
this.dockContainer.raise();
}
#convertToMinimizeToTray(): void {
if (this.#windowOpenState === WindowOpenState.Minimized) {
this.dockContainer.hide();
this.#windowOpenState = WindowOpenState.ClosedMinimized;
}
}
#convertToNormalMinimize(): void {
if (this.#windowOpenState === WindowOpenState.ClosedMinimized) {
this.dockContainer.showMinimized();
this.#windowOpenState = WindowOpenState.Minimized;
}
}
#handleWindowStateChanged(windowState: WindowState): void {
if (windowState === WindowState.WindowMinimized) {
const config = this.#configDatabase.getGeneralConfig();
if (config.showTrayIcon && config.minimizeToTray) {
this.dockContainer.hide();
this.#windowOpenState = WindowOpenState.ClosedMinimized;
} else {
this.#windowOpenState = WindowOpenState.Minimized;
}
}
}
getGeometry(): QRect {
return this.dockContainer.geometry();
}
#handleLogicalDpiChanged: (dpi: number) => void;
#UnboundHandleLogicalDpiChanged(dpi: number): void {
this.#handleDpiAndDprChanged(dpi, this.#screen.devicePixelRatio());
}
#handleDpiAndDprChanged(dpi: number, dpr: number): void {
if (dpi !== this.#lastConfigDpi || dpr !==this.#lastConfigDpr) {
this.#updateTerminalVisualConfig();
}
}
#watchScreen(screen: QScreen): void {
if (this.#screen != null) {
this.#screen.removeEventListener("logicalDotsPerInchChanged", this.#handleLogicalDpiChanged);
}
this.#screen = screen;
this.#screen.addEventListener("logicalDotsPerInchChanged", this.#handleLogicalDpiChanged);
}
isActiveWindow(): boolean {
return this.dockContainer.isActiveWindow();
}
getWidget(): QWidget {
return this.dockContainer;
}
setCurrentTabIndex(index: number): void {
const tabs = this.#getTabs();
const noTabs = tabs.length === 0;
if (noTabs) {
this.#onTabChangeEventEmitter.fire(null);
return;
}
const currentIndex = this.getCurrentTabIndex();
tabs[currentIndex].unfocus();
for (let i=0; i<tabs.length; i++) {
const tab = tabs[i];
const tabPlumbing = this.#windowManager.getTabPlumbingForTab(tab);
tabPlumbing.setIsCurrent(i === index);
}
const currentTab = tabs[index];
const tabPlumbing = this.#windowManager.getTabPlumbingForTab(currentTab);
tabPlumbing.dockWidget.setAsCurrentTab();
currentTab.focus();
this.#onTabChangeEventEmitter.fire(currentTab);
}
handleTabFocusChanged(tab: Tab): void {
if (tab != null) {
tab.focus();
}
this.#onTabChangeEventEmitter.fire(tab);
}
#getTabs(): Tab[] {
return this.#windowManager.getSafeWindowTabs(this);
}
getCurrentTabIndex(): number {
let currentTab: Tab = null;
const tabs = this.#getTabs();
if (this.#extensionManager.getActiveWindow() === this) {
currentTab = this.#extensionManager.getActiveTab();
} else {
for (const tab of tabs) {
const plumbing = this.#windowManager.getTabPlumbingForTab(tab);
if (plumbing.dockWidget.isCurrentTab()) {
currentTab = tab;
break;
}
}
}
return currentTab == null ? 0 : tabs.indexOf(currentTab);
}
getTabCount(): number {
return this.#getTabs().length;
}
getTab(index: number): Tab {
return this.#getTabs()[index];
}
addTab(tab: Tab, preTabHeader?: () => void, besideTab: Tab = null): void {
if (this.#windowManager.hasTab(tab)) {
return;
}
this.#initialEmptyState = false;
const currentTab = besideTab ?? this.#extensionManager.getActiveTab();
const tabPlumbing = this.#windowManager.prepareTab(tab);
tab.setParent(this);
if (tab instanceof Terminal) {
tab.setTerminalVisualConfig(this.#terminalVisualConfig);
}
if (tab instanceof SettingsTab) {
tab.setTerminalVisualConfig(this.#terminalVisualConfig);
}
let dockAreaWidget: CDockAreaWidget = null;
if (currentTab != null) {
const plumbing = this.#windowManager.getTabPlumbingForTab(currentTab);
dockAreaWidget = plumbing.dockWidget.dockAreaWidget();
} else {
dockAreaWidget = this.dockContainer.dockContainer().dockArea(0);
}
CDockManager.setFloatingContainersTitle(tab.getTitle() ?? "ExtratermQt");
this.#windowManager.getDockManager().addDockWidgetTabToArea(tabPlumbing.dockWidget, dockAreaWidget);
if (preTabHeader != null) {
preTabHeader();
}
let tabTitleWidget = tab.getTabWidget();
if (tabTitleWidget == null) {
const iconName = tab.getIconName();
const iconHtml = iconName != null ? createHtmlIcon(iconName) + " " : "";
const titleHtml = `${iconHtml}${he.escape(tab.getTitle() ?? "")}`;
tabPlumbing.titleLabel = Label({
cssClass: ["tab-title"],
contentsMargins: [8, 0, 0, 0],
text: titleHtml,
textFormat: TextFormat.RichText,
textInteractionFlag: TextInteractionFlag.NoTextInteraction,
});
tabTitleWidget = tabPlumbing.titleLabel;
}
tabPlumbing.titleWidget = tabTitleWidget;
const tabWidget = tabPlumbing.dockWidget.tabWidget();
const layout = <QBoxLayout> tabWidget.layout();
layout.insertWidget(0, tabPlumbing.titleWidget);
tabPlumbing.setIsCurrent(true);
}
tabPopOutClicked(details: {frame: DecoratedFrame, terminal: Terminal}): void {
this.#onPopOutClickedEventEmitter.fire({
window: this,
terminal: details.terminal,
frame: details.frame
});
}
handleTabWindowTitleChanged(tab: Tab, title: string): void {
// TODO: Should this just be moved into TabPlumbing directly?
const tabPlumbing = this.#windowManager.getTabPlumbingForTab(tab);
tabPlumbing.dockWidget.setWindowTitle(title);
}
hasTab(targetTab: Tab): boolean {
for (const dockWidget of this.dockContainer.dockWidgets()) {
const plumbing = this.#windowManager.getTabPlumbingForDockWidget(dockWidget);
if (plumbing != null && plumbing.tab === targetTab) {
return true;
}
}
return false;
}
focus(): void {
this.dockContainer.setFocus();
this.dockContainer.raise();
}
removeTab(targetTab: Tab): void {
const tabPlumbing = this.#windowManager.getTabPlumbingForTab(targetTab);
if (tabPlumbing == null) {
return;
}
if (this.#extensionManager.getActiveTab() === targetTab) {
if (this.getTabCount()=== 1) {
this.#extensionManager.setActiveTab(null);
} else {
const nextTab = this.getTab(Math.max(this.getCurrentTabIndex()-1, 0));
this.focusTab(nextTab);
}
}
tabPlumbing.dispose();
}
focusTab(tab: Tab): void {
const tabPlumbing = this.#windowManager.getTabPlumbingForTab(tab);
tabPlumbing.dockWidget.dockAreaWidget().setCurrentDockWidget(tabPlumbing.dockWidget);
tab.focus();
// FIXME: update any context related state
}
getTabGlobalGeometry(tab: Tab): QRect {
const tabPlumbing = this.#windowManager.getTabPlumbingForTab(tab);
const localGeometry = tabPlumbing.dockWidget.geometry();
const topLeftGlobal = tabPlumbing.dockWidget.mapToGlobal(new QPoint(0, 0));
return new QRect(topLeftGlobal.x(), topLeftGlobal.y(), localGeometry.width(), localGeometry.height());
}
getWindowGlobalGeometry(): QRect {
const localGeometry = this.dockContainer.geometry();
const topLeftGlobal = this.dockContainer.mapToGlobal(new QPoint(0, 0));
return new QRect(topLeftGlobal.x(), topLeftGlobal.y(), localGeometry.width(), localGeometry.height());
}
getTerminals(): Terminal[] {
const result: Terminal[] = [];
for (const dockWidget of this.dockContainer.dockWidgets()) {
const plumbing = this.#windowManager.getTabPlumbingForDockWidget(dockWidget);
if (plumbing != null && plumbing.tab instanceof Terminal) {
result.push(plumbing.tab);
}
}
return result;
}
getUiStyle(): UiStyle {
return this.#uiStyle;
}
#focusPaneInDirection(direction: Direction): void {
const activeTabPlumbing = this.#getCurrentTabPlumping();
if (activeTabPlumbing == null) {
return;
}
const dockArea = nextDockAreaInDirection(activeTabPlumbing.dockWidget.dockAreaWidget(),
this.dockContainer.dockContainer(), direction);
if (dockArea == null) {
return;
}
dockArea.currentDockWidget().setFocus();
}
focusPaneLeft(): void {
this.#focusPaneInDirection(Direction.LEFT);
}
focusPaneRight(): void {
this.#focusPaneInDirection(Direction.RIGHT);
}
focusPaneAbove(): void {
this.#focusPaneInDirection(Direction.ABOVE);
}
focusPaneBelow(): void {
this.#focusPaneInDirection(Direction.BELOW);
}
#split(panePosition: DockWidgetArea): void {
const activeTabPlumbing = this.#getCurrentTabPlumping();
if (activeTabPlumbing == null) {
return;
}
const emptyPaneTabPlumbing = this.#windowManager.createEmptyPaneTab();
activeTabPlumbing.dockWidget.dockContainer().addDockWidget(panePosition,
emptyPaneTabPlumbing.dockWidget);
const win = this.#windowManager.getWindowForTab(activeTabPlumbing.tab);
(<EmptyPaneTab> emptyPaneTabPlumbing.tab).populateMenu(win);
activeTabPlumbing.tab.focus();
}
horizontalSplit(): void {
this.#split(DockWidgetArea.BottomDockWidgetArea);
}
verticalSplit(): void {
this.#split(DockWidgetArea.RightDockWidgetArea);
}
#getCurrentTabPlumping(): TabPlumbing {
if (this.#extensionManager.getActiveWindow() === this) {
const currentTab = this.#extensionManager.getActiveTab();
return this.#windowManager.getTabPlumbingForTab(currentTab);
} else {
return null;
}
}
}
function cssHexColorToRGBA(cssColor: string): number {
const color = new Color(cssColor);
return color.toRGBA();
}
``` | /content/code_sandbox/main/src/Window.ts | xml | 2016-03-04T12:39:59 | 2024-08-16T18:44:37 | extraterm | sedwards2009/extraterm | 2,501 | 11,696 |
```xml
import "reflect-metadata"
import { expect } from "chai"
import {
closeTestingConnections,
createTestingConnections,
} from "../../utils/test-utils"
import { DataSource } from "../../../src"
describe("query runner > drop column", () => {
let connections: DataSource[]
before(async () => {
connections = await createTestingConnections({
entities: [__dirname + "/entity/*{.js,.ts}"],
schemaCreate: true,
dropSchema: true,
})
})
after(() => closeTestingConnections(connections))
describe("when columns are instances of TableColumn", () => {
it("should correctly drop column and revert drop", () =>
Promise.all(
connections.map(async (connection) => {
const queryRunner = connection.createQueryRunner()
let table = await queryRunner.getTable("post")
const idColumn = table!.findColumnByName("id")!
const nameColumn = table!.findColumnByName("name")!
const versionColumn = table!.findColumnByName("version")!
idColumn!.should.be.exist
nameColumn!.should.be.exist
versionColumn!.should.be.exist
// better-sqlite3 seems not able to create a check constraint on a non-existing column
if (connection.name === "better-sqlite3") {
await queryRunner.dropCheckConstraints(
table!,
table!.checks,
)
}
// In Sqlite 'dropColumns' method is more optimal than 'dropColumn', because it recreate table just once,
// without all removed columns. In other drivers it's no difference between these methods, because 'dropColumns'
// calls 'dropColumn' method for each removed column.
// CockroachDB and Spanner does not support changing pk.
if (
connection.driver.options.type === "cockroachdb" ||
connection.driver.options.type === "spanner"
) {
await queryRunner.dropColumns(table!, [
nameColumn,
versionColumn,
])
} else {
await queryRunner.dropColumns(table!, [
idColumn,
nameColumn,
versionColumn,
])
}
table = await queryRunner.getTable("post")
expect(table!.findColumnByName("name")).to.be.undefined
expect(table!.findColumnByName("version")).to.be.undefined
if (
!(
connection.driver.options.type === "cockroachdb" ||
connection.driver.options.type === "spanner"
)
)
expect(table!.findColumnByName("id")).to.be.undefined
await queryRunner.executeMemoryDownSql()
table = await queryRunner.getTable("post")
table!.findColumnByName("id")!.should.be.exist
table!.findColumnByName("name")!.should.be.exist
table!.findColumnByName("version")!.should.be.exist
await queryRunner.release()
}),
))
})
describe("when columns are strings", () => {
it("should correctly drop column and revert drop", () =>
Promise.all(
connections.map(async (connection) => {
const queryRunner = connection.createQueryRunner()
let table = await queryRunner.getTable("post")
const idColumn = table!.findColumnByName("id")!
const nameColumn = table!.findColumnByName("name")!
const versionColumn = table!.findColumnByName("version")!
idColumn!.should.be.exist
nameColumn!.should.be.exist
versionColumn!.should.be.exist
// better-sqlite3 seems not able to create a check constraint on a non-existing column
if (connection.name === "better-sqlite3") {
await queryRunner.dropCheckConstraints(
table!,
table!.checks,
)
}
// In Sqlite 'dropColumns' method is more optimal than 'dropColumn', because it recreate table just once,
// without all removed columns. In other drivers it's no difference between these methods, because 'dropColumns'
// calls 'dropColumn' method for each removed column.
// CockroachDB does not support changing pk.
if (
connection.driver.options.type === "cockroachdb" ||
connection.driver.options.type === "spanner"
) {
await queryRunner.dropColumns(table!, [
"name",
"version",
])
} else {
await queryRunner.dropColumns(table!, [
"id",
"name",
"version",
])
}
table = await queryRunner.getTable("post")
expect(table!.findColumnByName("name")).to.be.undefined
expect(table!.findColumnByName("version")).to.be.undefined
if (
!(
connection.driver.options.type === "cockroachdb" ||
connection.driver.options.type === "spanner"
)
)
expect(table!.findColumnByName("id")).to.be.undefined
await queryRunner.executeMemoryDownSql()
table = await queryRunner.getTable("post")
table!.findColumnByName("id")!.should.be.exist
table!.findColumnByName("name")!.should.be.exist
table!.findColumnByName("version")!.should.be.exist
await queryRunner.release()
}),
))
})
})
``` | /content/code_sandbox/test/functional/query-runner/drop-column.ts | xml | 2016-02-29T07:41:14 | 2024-08-16T18:28:52 | typeorm | typeorm/typeorm | 33,875 | 1,087 |
```xml
/* eslint-disable no-underscore-dangle, @typescript-eslint/naming-convention */
declare var STORYBOOK_ENV: 'web-components';
declare var __STORYBOOK_CUSTOM_ELEMENTS_MANIFEST__: any;
declare var __STORYBOOK_CUSTOM_ELEMENTS__: any;
declare var LOGLEVEL: 'trace' | 'debug' | 'info' | 'warn' | 'error' | 'silent' | undefined;
``` | /content/code_sandbox/code/renderers/web-components/src/typings.d.ts | xml | 2016-03-18T04:23:44 | 2024-08-16T19:22:08 | storybook | storybookjs/storybook | 83,755 | 83 |
```xml
import React from 'react';
import { format } from 'date-fns';
import { testStandardProps, testControlledUnControlled, testFormControl } from '@test/utils';
import { render, screen, fireEvent } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import { mockClipboardEvent } from '@test/mocks/data-mock';
import sinon from 'sinon';
import DateRangeInput from '../DateRangeInput';
import CustomProvider from '../../CustomProvider';
import zhCN from '../../locales/zh_CN';
import { keyPressTests } from '../../DateInput/test/testUtils';
const { testKeyPress, testKeyPressAsync, testContinuousKeyPress } = keyPressTests(DateRangeInput);
describe('DateRangeInput', () => {
testStandardProps(<DateRangeInput />, { sizes: ['lg', 'md', 'sm', 'xs'] });
testControlledUnControlled(DateRangeInput, {
defaultValue: [new Date('2023-10-01'), new Date('2023-10-02')],
value: [new Date('2023-10-01'), new Date('2023-10-02')],
changedValue: [new Date('2023-10-02'), new Date('2023-10-03')],
simulateEvent: null,
simulateChangeEvents: [
{
change: () => {
(screen.getByRole('textbox') as HTMLInputElement).select();
userEvent.type(screen.getByRole('textbox'), '2025');
},
value: [new Date('2025-10-01'), new Date('2023-10-02')],
callCount: 4
},
{
change: () => {
(screen.getByRole('textbox') as HTMLInputElement).select();
userEvent.type(screen.getByRole('textbox'), '{backspace}');
},
value: new Date(''),
expectedValue: () => {
expect(screen.getByRole('textbox')).to.value('yyyy-10-01 ~ 2023-10-02');
}
}
],
expectedValue: (value: [Date, Date]) => {
expect(screen.getByRole('textbox')).to.value(
`${format(value[0], 'yyyy-MM-dd')} ~ ${format(value[1], 'yyyy-MM-dd')}`
);
}
});
testFormControl(DateRangeInput, {
value: [new Date('2023-10-01'), new Date('2023-10-02')]
});
it('Should render placeholder according to the default format', () => {
render(<DateRangeInput />);
expect(screen.getByRole('textbox')).to.have.attribute('placeholder', 'yyyy-MM-dd ~ yyyy-MM-dd');
fireEvent.focus(screen.getByRole('textbox'));
expect(screen.getByRole('textbox')).to.have.value('yyyy-MM-dd ~ yyyy-MM-dd');
});
it('Should render a custom character', () => {
const { rerender } = render(<DateRangeInput character=" to " />);
expect(screen.getByRole('textbox')).to.have.attribute(
'placeholder',
'yyyy-MM-dd to yyyy-MM-dd'
);
fireEvent.focus(screen.getByRole('textbox'));
expect(screen.getByRole('textbox')).to.have.value('yyyy-MM-dd to yyyy-MM-dd');
rerender(
<DateRangeInput character=" to " value={[new Date('2023-10-01'), new Date('2023-10-02')]} />
);
expect(screen.getByRole('textbox')).to.have.value('2023-10-01 to 2023-10-02');
});
it('Should render placeholder according to the given format', () => {
render(<DateRangeInput format="dd-MM-yyyy" />);
expect(screen.getByRole('textbox')).to.have.attribute('placeholder', 'dd-MM-yyyy ~ dd-MM-yyyy');
fireEvent.focus(screen.getByRole('textbox'));
expect(screen.getByRole('textbox')).to.have.value('dd-MM-yyyy ~ dd-MM-yyyy');
});
it('Should format the value according to the given `format`', () => {
render(
<DateRangeInput
format="MMMM dd, yyyy"
value={[new Date('2023-12-08'), new Date('2023-12-09')]}
/>
);
expect(screen.getByRole('textbox')).to.value('December 08, 2023 ~ December 09, 2023');
});
it('Should get null value in onChange callback', () => {
const onChange = sinon.spy();
render(
<DateRangeInput
onChange={onChange}
format="yyyy"
defaultValue={[new Date('2023-10-01'), null]}
/>
);
const input = screen.getByRole('textbox') as HTMLInputElement;
fireEvent.click(input);
fireEvent.keyDown(input, { key: 'Backspace' });
fireEvent.blur(input);
expect(input).to.value('');
expect(onChange).to.have.been.calledWith([null, null]);
expect(onChange).to.have.been.calledOnce;
});
it('Should format dates according to locale configuration', () => {
const { rerender } = render(
<CustomProvider locale={zhCN}>
<DateRangeInput
value={[new Date('2023-10-01'), new Date('2023-10-02')]}
format="dd MMMM yyyy"
/>
</CustomProvider>
);
expect(screen.getByRole('textbox')).to.have.value('01 2023 ~ 02 2023');
rerender(
<CustomProvider locale={zhCN}>
<DateRangeInput
value={[new Date('2023-11-20'), new Date('2023-11-21')]}
format="dd MMM yyyy"
/>
</CustomProvider>
);
expect(screen.getByRole('textbox')).to.have.value('20 11 2023 ~ 21 11 2023');
});
describe('DateRangeInput - KeyPress', () => {
it('Should increase year when pressing ArrowUp ', () => {
testKeyPress({
key: '{arrowup}',
defaultValue: [new Date('2023-10-01'), null],
expectedValue: '2024-10-01 ~ yyyy-MM-dd'
});
});
it('Should decrement year when pressing ArrowDown ', () => {
testKeyPress({
key: '{arrowdown}',
defaultValue: [new Date('2023-10-01'), null],
expectedValue: '2022-10-01 ~ yyyy-MM-dd'
});
});
it('Should increase month when pressing ArrowUp ', () => {
testKeyPress({
key: '{arrowright}{arrowup}',
defaultValue: [new Date('2023-10-01'), null],
expectedValue: '2023-11-01 ~ yyyy-MM-dd'
});
});
it('Should go back to January when it exceeds December', () => {
testKeyPress({
key: '{arrowright}{arrowup}',
defaultValue: [new Date('2023-12-01'), null],
expectedValue: '2023-01-01 ~ yyyy-MM-dd'
});
});
it('Should go back to December when it exceeds January', () => {
testKeyPress({
key: '{arrowright}{arrowdown}',
defaultValue: [new Date('2023-01-01'), null],
expectedValue: '2023-12-01 ~ yyyy-MM-dd'
});
});
it('Should decrement month when pressing ArrowDown ', () => {
testKeyPress({
key: '{arrowright}{arrowdown}',
defaultValue: [new Date('2023-10-01'), null],
expectedValue: '2023-09-01 ~ yyyy-MM-dd'
});
});
it('Should be returned to January when the maximum month is exceeded', () => {
testKeyPress({
key: '{arrowright}{arrowup}',
defaultValue: [new Date('2023-12-01'), null],
expectedValue: '2023-01-01 ~ yyyy-MM-dd'
});
});
it('Should be returned to December when the minimum month is exceeded', () => {
testKeyPress({
key: '{arrowright}{arrowdown}',
defaultValue: [new Date('2023-01-01'), null],
expectedValue: '2023-12-01 ~ yyyy-MM-dd'
});
});
it('Should increase day when pressing ArrowUp ', () => {
testKeyPress({
key: '{arrowright}{arrowright}{arrowup}',
defaultValue: [new Date('2023-10-01'), null],
expectedValue: '2023-10-02 ~ yyyy-MM-dd'
});
});
it('Should be updated for full month', () => {
testKeyPress({
defaultValue: [new Date('2023-01-01'), null],
format: 'dd MMMM yyyy',
key: '{arrowright}{arrowup}',
expectedValue: '01 February 2023 ~ dd MMMM yyyy'
});
});
it('Should decrement day when pressing ArrowDown ', () => {
testKeyPress({
key: '{arrowright}{arrowright}{arrowdown}',
defaultValue: [new Date('2023-10-02'), null],
expectedValue: '2023-10-01 ~ yyyy-MM-dd'
});
});
it('Should return to the first day of this month when the maximum number of days is exceeded', () => {
testKeyPress({
key: '{arrowright}{arrowright}{arrowup}',
defaultValue: [new Date('2023-02-28'), null],
expectedValue: '2023-02-01 ~ yyyy-MM-dd'
});
});
it('Should return to the last day of the month when the minimum number of days is exceeded', () => {
testKeyPress({
key: '{arrowright}{arrowright}{arrowdown}',
defaultValue: [new Date('2023-02-01'), null],
expectedValue: '2023-02-28 ~ yyyy-MM-dd'
});
});
it('Should remove the year when delete key is pressed', () => {
testKeyPress({
key: '{backspace}',
defaultValue: [new Date('2023-10-01'), null],
expectedValue: 'yyyy-10-01 ~ yyyy-MM-dd'
});
});
it('Should remove the month when delete key is pressed', () => {
testKeyPress({
key: '{arrowright}{backspace}',
defaultValue: [new Date('2023-10-01'), null],
expectedValue: '2023-MM-01 ~ yyyy-MM-dd'
});
});
it('Should remove the day when delete key is pressed', () => {
testKeyPress({
key: '{arrowright}{arrowright}{backspace}',
defaultValue: [new Date('2023-10-01'), null],
expectedValue: '2023-10-dd ~ yyyy-MM-dd'
});
});
it('Should support the hour format', () => {
testContinuousKeyPress({
format: 'HH',
defaultValue: [new Date('2023-10-01 10:20:30'), null],
keySequences: [
{ key: '{arrowup}', expected: '11 ~ HH' },
{ key: '{arrowdown}', expected: '10 ~ HH' }
]
});
});
it('Should support 12 hour format', () => {
testContinuousKeyPress({
format: 'hh',
defaultValue: [new Date('2023-10-01 12:00:00'), null],
keySequences: [
{ key: '{arrowup}', expected: '01 ~ hh' },
{ key: '{arrowdown}', expected: '12 ~ hh' }
]
});
});
it('Should support the minute format', () => {
testContinuousKeyPress({
format: 'mm',
defaultValue: [new Date('2023-10-01 10:20:30'), null],
keySequences: [
{ key: '{arrowup}', expected: '21 ~ mm' },
{ key: '{arrowdown}', expected: '20 ~ mm' }
]
});
});
it('Should support the second format', () => {
testContinuousKeyPress({
format: 'ss',
defaultValue: [new Date('2023-10-01 10:20:30'), null],
keySequences: [
{ key: '{arrowup}', expected: '31 ~ ss' },
{ key: '{arrowdown}', expected: '30 ~ ss' }
]
});
});
it('Should support the AM/PM format', () => {
testContinuousKeyPress({
format: 'aa',
defaultValue: [new Date('2023-10-01 13:00:00'), null],
keySequences: [
{ key: '{arrowup}', expected: 'AM ~ aa' },
{ key: '{arrowdown}', expected: 'PM ~ aa' }
]
});
});
it('Should show correct AM/PM by changing the hour', () => {
testContinuousKeyPress({
format: 'HH aa',
defaultValue: [new Date('2023-10-01 13:00:00'), null],
keySequences: [
{ key: '1', expected: '01 AM ~ HH aa' },
{ key: '3', expected: '13 PM ~ HH aa' }
]
});
});
it('Should support the year format', () => {
testContinuousKeyPress({
format: 'yyyy',
defaultValue: [new Date('2023-10-01'), null],
keySequences: [
{ key: '2', expected: '0002 ~ yyyy' },
{ key: '0', expected: '0020 ~ yyyy' },
{ key: '2', expected: '0202 ~ yyyy' },
{ key: '3', expected: '2023 ~ yyyy' },
{ key: '1', expected: '0001 ~ yyyy' },
{ key: '9', expected: '0019 ~ yyyy' },
{ key: '9', expected: '0199 ~ yyyy' },
{ key: '8', expected: '1998 ~ yyyy' }
]
});
});
it('Should support the month format', () => {
testContinuousKeyPress({
format: 'MM',
defaultValue: [new Date('2023-10-01'), null],
keySequences: [
{ key: '2', expected: '02 ~ MM' },
{ key: '1', expected: '01 ~ MM' },
{ key: '2', expected: '12 ~ MM' },
{ key: '9', expected: '09 ~ MM' },
{ key: '1', expected: '01 ~ MM' },
{ key: '1', expected: '11 ~ MM' }
]
});
});
it('Should use numeric input to match to month', () => {
testContinuousKeyPress({
format: 'MMMM',
defaultValue: [new Date('2023-10-01'), null],
keySequences: [
{ key: '2', expected: 'February ~ MMMM' },
{ key: '1', expected: 'January ~ MMMM' },
{ key: '2', expected: 'December ~ MMMM' },
{ key: '9', expected: 'September ~ MMMM' },
{ key: '1', expected: 'January ~ MMMM' },
{ key: '1', expected: 'November ~ MMMM' }
]
});
});
it('Should use numeric input to match to abbreviated month', () => {
testContinuousKeyPress({
format: 'MMM',
defaultValue: [new Date('2023-10-01'), null],
keySequences: [
{ key: '2', expected: 'Feb ~ MMM' },
{ key: '1', expected: 'Jan ~ MMM' },
{ key: '2', expected: 'Dec ~ MMM' },
{ key: '9', expected: 'Sep ~ MMM' },
{ key: '1', expected: 'Jan ~ MMM' },
{ key: '1', expected: 'Nov ~ MMM' }
]
});
});
it('Should support the day format', () => {
testContinuousKeyPress({
format: 'dd',
defaultValue: [new Date('2023-10-10'), null],
keySequences: [
{ key: '3', expected: '03 ~ dd' },
{ key: '1', expected: '31 ~ dd' },
{ key: '2', expected: '02 ~ dd' },
{ key: '9', expected: '29 ~ dd' },
{ key: '1', expected: '01 ~ dd' },
{ key: '1', expected: '11 ~ dd' }
]
});
});
it('Should support the hour format', () => {
testContinuousKeyPress({
format: 'HH',
defaultValue: [new Date('2023-10-01 00:00:00'), null],
keySequences: [
{ key: '2', expected: '02 ~ HH' },
{ key: '1', expected: '21 ~ HH' },
{ key: '5', expected: '05 ~ HH' },
{ key: '9', expected: '09 ~ HH' },
{ key: '1', expected: '01 ~ HH' },
{ key: '1', expected: '11 ~ HH' }
]
});
});
it('Should support the minute format', () => {
testContinuousKeyPress({
format: 'mm',
defaultValue: [new Date('2023-10-01 00:00:00'), null],
keySequences: [
{ key: '2', expected: '02 ~ mm' },
{ key: '1', expected: '21 ~ mm' },
{ key: '5', expected: '05 ~ mm' },
{ key: '9', expected: '59 ~ mm' },
{ key: '6', expected: '06 ~ mm' },
{ key: '1', expected: '01 ~ mm' }
]
});
});
it('Should support the second format', () => {
testContinuousKeyPress({
format: 'ss',
defaultValue: [new Date('2023-10-01 00:00:00'), null],
keySequences: [
{ key: '2', expected: '02 ~ ss' },
{ key: '1', expected: '21 ~ ss' },
{ key: '5', expected: '05 ~ ss' },
{ key: '9', expected: '59 ~ ss' },
{ key: '6', expected: '06 ~ ss' },
{ key: '1', expected: '01 ~ ss' }
]
});
});
it('Should be able to enter key input continuously', async () => {
await testKeyPressAsync({
keys: '2024010120240202'.split(''),
expectedValue: '2024-01-01 ~ 2024-02-02'
});
});
it('Should be able to enter key input continuously with custom format', async () => {
await testKeyPressAsync({
format: 'MM/dd/yyyy',
keys: '0101202402022024'.split(''),
expectedValue: '01/01/2024 ~ 02/02/2024'
});
});
it('Should be able to enter key input continuously with abbreviated month', async () => {
await testKeyPressAsync({
format: 'MMM dd,yyyy',
keys: '0101202402022024'.split(''),
expectedValue: 'Jan 01,2024 ~ Feb 02,2024'
});
});
it('Should reset the value rather than concatenate the value', async () => {
await testKeyPressAsync({
format: 'MM/dd/yyyy',
defaultValue: [new Date('2024-01-01'), new Date('2024-02-01')],
keys: '0401',
// Fix #3828
// Error value: 10/14/0001
expectedValue: '04/01/2024 ~ 02/01/2024'
});
});
});
describe('DateRangeInput - Paste', () => {
it('Should call `onChange` with pasted value', () => {
const onChange = sinon.spy();
render(<DateRangeInput onChange={onChange} />);
const input = screen.getByRole('textbox') as HTMLInputElement;
const event = mockClipboardEvent('2024-07-21 ~ 2024-07-22');
fireEvent(input, event);
expect(input).to.have.value('2024-07-21 ~ 2024-07-22');
expect(format(onChange.lastCall.firstArg[0], 'yyyy-MM-dd')).to.have.eql('2024-07-21');
expect(format(onChange.lastCall.firstArg[1], 'yyyy-MM-dd')).to.have.eql('2024-07-22');
});
it('Should not call `onChange` with invalid pasted value', () => {
const onChange = sinon.spy();
render(
<DateRangeInput
onChange={onChange}
defaultValue={[new Date('2023-10-01'), new Date('2023-10-02')]}
/>
);
const input = screen.getByRole('textbox') as HTMLInputElement;
// Invalid month
const event = mockClipboardEvent('2024-07-dd ~ 2024-07-22');
fireEvent(input, event);
expect(input).to.have.value('2023-10-01 ~ 2023-10-02');
expect(onChange).to.not.have.been.called;
});
it('Should not call `onChange` with invalid pasted value', () => {
const onChange = sinon.spy();
render(
<DateRangeInput
onChange={onChange}
format="MM/dd/yyyy"
defaultValue={[new Date('2023-10-01'), new Date('2023-10-02')]}
/>
);
const input = screen.getByRole('textbox') as HTMLInputElement;
// Invalid date format
const event = mockClipboardEvent('2024-07-21 ~ 2024-07-22');
fireEvent(input, event);
expect(input).to.have.value('10/01/2023 ~ 10/02/2023');
expect(onChange).to.not.have.been.called;
});
it('Should call `onPaste` callback', () => {
const onPaste = sinon.spy();
render(<DateRangeInput onPaste={onPaste} />);
const input = screen.getByRole('textbox') as HTMLInputElement;
const event = mockClipboardEvent('2024-07-21 ~ 2024-07-22');
fireEvent(input, event);
expect(onPaste).to.have.been.called;
});
});
});
``` | /content/code_sandbox/src/DateRangeInput/test/DateRangeInputSpec.tsx | xml | 2016-06-06T02:27:46 | 2024-08-16T16:41:54 | rsuite | rsuite/rsuite | 8,263 | 4,970 |
```xml
<menu xmlns:android="path_to_url"
xmlns:app="path_to_url">
<item
android:id="@+id/action_recycler_view"
android:title="RecyclerView"
app:showAsAction="never" />
<item
android:id="@+id/action_list_view"
android:title="ListView"
app:showAsAction="never" />
<item
android:id="@+id/action_grid_view"
android:title="GridView"
app:showAsAction="never" />
</menu>
``` | /content/code_sandbox/demo/src/main/res/menu/menu_main.xml | xml | 2016-04-12T19:28:34 | 2024-08-16T01:28:49 | SwipeRevealLayout | chthai64/SwipeRevealLayout | 1,567 | 114 |
```xml
import * as React from 'react';
import createSvgIcon from '../utils/createSvgIcon';
const CaretTopRightSolid8Icon = createSvgIcon({
svg: ({ classes }) => (
<svg xmlns="path_to_url" viewBox="0 0 2048 2048" className={classes.svg} focusable="false">
<path d="M64 0h1984v1984L64 0z" />
</svg>
),
displayName: 'CaretTopRightSolid8Icon',
});
export default CaretTopRightSolid8Icon;
``` | /content/code_sandbox/packages/react-icons-mdl2/src/components/CaretTopRightSolid8Icon.tsx | xml | 2016-06-06T15:03:44 | 2024-08-16T18:49:29 | fluentui | microsoft/fluentui | 18,221 | 123 |
```xml
import React, { ReactElement } from 'react';
import Link from 'next/link';
import styles from './Menu.module.css';
const links: [string, string][][] = [
[
['/plugin/mention', 'Mention'],
['/plugin/emoji', 'Emoji'],
['/plugin/image', 'Image'],
['/plugin/video', 'Video'],
],
[
['/plugin/sticker', 'Sticker'],
['/plugin/hashtag', 'Hashtag'],
['/plugin/inline-toolbar', 'Inline Toolbar'],
['/plugin/side-toolbar', 'Side Toolbar'],
],
[
['/plugin/static-toolbar', 'Static Toolbar'],
['/plugin/undo', 'Undo'],
['/plugin/counter', 'Counter'],
['/plugin/anchor', 'Anchor'],
['/plugin/linkify', 'Linkify'],
],
[
['/plugin/focus', 'Focus'],
['/plugin/alignment', 'Alignment'],
['/plugin/text-alignment', 'Text Alignment'],
['/plugin/resizeable', 'Resizeable'],
['/plugin/drag-n-drop', "Drag'n'Drop"],
['/plugin/divider', 'Divider'],
],
];
export default function Menu(): ReactElement {
return (
<div className={styles.pluginsWrapper}>
<div className={styles.wideContainer}>
{links.map((link, index) => (
// eslint-disable-next-line react/no-array-index-key
<ul className={styles.plugins} key={index}>
{link.map(([path, name]) => (
<li className={styles.plugin} key={path}>
<Link href={path}>
<a className={styles.link}>{name}</a>
</Link>
</li>
))}
</ul>
))}
</div>
<div
style={{
textAlign: 'center',
marginTop: '3rem',
fontSize: 13,
color: '#aaa',
}}
>
The documentation currently represents the 4.0.0 release.
<br />
For troubleshooting please checkout the
{/* eslint-disable-next-line jsx-a11y/anchor-has-content */}
<a
href="path_to_url"
className={styles.link}
>
FAQ
</a>
</div>
</div>
);
}
``` | /content/code_sandbox/packages/docs/components/Menu/Menu.tsx | xml | 2016-02-26T09:54:56 | 2024-08-16T18:16:31 | draft-js-plugins | draft-js-plugins/draft-js-plugins | 4,087 | 483 |
```xml
/**
* When a notification is received while the app is backgrounded, using this function you can set a callback that will be run in response to that notification.
* Under the hood, this function is run using `expo-task-manager`. You **must** define the task first, with [`TaskManager.defineTask`](./task-manager#taskmanagerdefinetasktaskname-taskexecutor).
* Make sure you define it in the global scope.
*
* The callback function you define with `TaskManager.defineTask` will receive an object with the following fields:
* - `data`: The remote payload delivered by either FCM (Android) or APNs (iOS). See [`PushNotificationTrigger`](#pushnotificationtrigger) for details.
* - `error`: The error (if any) that occurred during execution of the task.
* - `executionInfo`: JSON object of additional info related to the task, including the `taskName`.
* @param taskName The string you passed to `TaskManager.defineTask` as the `taskName` parameter.
*
* @example
* ```ts
* import * as TaskManager from 'expo-task-manager';
* import * as Notifications from 'expo-notifications';
*
* const BACKGROUND_NOTIFICATION_TASK = 'BACKGROUND-NOTIFICATION-TASK';
*
* TaskManager.defineTask(BACKGROUND_NOTIFICATION_TASK, ({ data, error, executionInfo }) => {
* console.log('Received a notification in the background!');
* // Do something with the notification data
* });
*
* Notifications.registerTaskAsync(BACKGROUND_NOTIFICATION_TASK);
* ```
* @header inBackground
*/
export default function registerTaskAsync(taskName: string): Promise<null>;
//# sourceMappingURL=registerTaskAsync.d.ts.map
``` | /content/code_sandbox/packages/expo-notifications/build/registerTaskAsync.d.ts | xml | 2016-08-15T17:14:25 | 2024-08-16T19:54:44 | expo | expo/expo | 32,004 | 351 |
```xml
// path_to_url
import { InitializableXmlComponent, XmlComponent } from "@file/xml-components";
import { Paragraph } from "../paragraph";
import { Table } from "../table";
import { FooterAttributes } from "./footer-attributes";
export class Footer extends InitializableXmlComponent {
private readonly refId: number;
public constructor(referenceNumber: number, initContent?: XmlComponent) {
super("w:ftr", initContent);
this.refId = referenceNumber;
if (!initContent) {
this.root.push(
new FooterAttributes({
wpc: "path_to_url",
mc: "path_to_url",
o: "urn:schemas-microsoft-com:office:office",
r: "path_to_url",
m: "path_to_url",
v: "urn:schemas-microsoft-com:vml",
wp14: "path_to_url",
wp: "path_to_url",
w10: "urn:schemas-microsoft-com:office:word",
w: "path_to_url",
w14: "path_to_url",
w15: "path_to_url",
wpg: "path_to_url",
wpi: "path_to_url",
wne: "path_to_url",
wps: "path_to_url",
}),
);
}
}
public get ReferenceId(): number {
return this.refId;
}
public add(item: Paragraph | Table): void {
this.root.push(item);
}
}
``` | /content/code_sandbox/src/file/footer/footer.ts | xml | 2016-03-26T23:43:56 | 2024-08-16T13:02:47 | docx | dolanmiu/docx | 4,139 | 316 |
```xml
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>APTSourceManagerPage</class>
<widget class="QWidget" name="APTSourceManagerPage">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>836</width>
<height>582</height>
</rect>
</property>
<property name="windowTitle">
<string>APT Repository Manager</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout_2">
<property name="spacing">
<number>0</number>
</property>
<property name="leftMargin">
<number>0</number>
</property>
<property name="topMargin">
<number>0</number>
</property>
<property name="rightMargin">
<number>0</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item>
<widget class="QWidget" name="verticalWidget" native="true">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Expanding">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="cursor">
<cursorShape>ArrowCursor</cursorShape>
</property>
<property name="styleSheet">
<string notr="true"/>
</property>
<layout class="QGridLayout" name="gridLayout_2">
<property name="leftMargin">
<number>30</number>
</property>
<property name="topMargin">
<number>5</number>
</property>
<property name="rightMargin">
<number>30</number>
</property>
<property name="bottomMargin">
<number>20</number>
</property>
<property name="horizontalSpacing">
<number>10</number>
</property>
<property name="verticalSpacing">
<number>5</number>
</property>
<item row="1" column="0" colspan="7">
<widget class="QWidget" name="verticalWidget_2" native="true">
<layout class="QVBoxLayout" name="verticalLayout">
<property name="spacing">
<number>0</number>
</property>
<property name="leftMargin">
<number>0</number>
</property>
<property name="topMargin">
<number>0</number>
</property>
<property name="rightMargin">
<number>0</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item>
<widget class="QWidget" name="notFoundWidget" native="true">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Expanding">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>0</width>
<height>200</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>16777215</width>
<height>200</height>
</size>
</property>
<property name="styleSheet">
<string notr="true"/>
</property>
<layout class="QVBoxLayout" name="notFoundLayout">
<property name="spacing">
<number>0</number>
</property>
<property name="leftMargin">
<number>0</number>
</property>
<property name="topMargin">
<number>0</number>
</property>
<property name="rightMargin">
<number>0</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item alignment="Qt::AlignHCenter|Qt::AlignBottom">
<widget class="QLabel" name="lblNotFound">
<property name="text">
<string>Not Found APT Repositories</string>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item>
<widget class="QListWidget" name="listWidgetAptSources">
<property name="focusPolicy">
<enum>Qt::NoFocus</enum>
</property>
<property name="frameShape">
<enum>QFrame::NoFrame</enum>
</property>
<property name="horizontalScrollBarPolicy">
<enum>Qt::ScrollBarAlwaysOff</enum>
</property>
<property name="editTriggers">
<set>QAbstractItemView::NoEditTriggers</set>
</property>
<property name="selectionMode">
<enum>QAbstractItemView::SingleSelection</enum>
</property>
<property name="selectionBehavior">
<enum>QAbstractItemView::SelectRows</enum>
</property>
<property name="resizeMode">
<enum>QListView::Adjust</enum>
</property>
<property name="layoutMode">
<enum>QListView::Batched</enum>
</property>
<property name="spacing">
<number>4</number>
</property>
<property name="uniformItemSizes">
<bool>true</bool>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item row="4" column="0" colspan="7">
<spacer name="verticalSpacer_2">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeType">
<enum>QSizePolicy::Fixed</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>15</height>
</size>
</property>
</spacer>
</item>
<item row="0" column="6">
<widget class="QLineEdit" name="txtSearchAptSource">
<property name="placeholderText">
<string>Search...</string>
</property>
</widget>
</item>
<item row="5" column="0" colspan="7">
<layout class="QHBoxLayout" name="horizontalLayout_2">
<property name="spacing">
<number>10</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item>
<widget class="QPushButton" name="btnEditAptSource">
<property name="sizePolicy">
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="font">
<font>
<family>Ubuntu</family>
</font>
</property>
<property name="cursor">
<cursorShape>PointingHandCursor</cursorShape>
</property>
<property name="focusPolicy">
<enum>Qt::NoFocus</enum>
</property>
<property name="accessibleName">
<string notr="true">primary</string>
</property>
<property name="styleSheet">
<string notr="true"/>
</property>
<property name="text">
<string>Edit</string>
</property>
<property name="icon">
<iconset resource="../../static.qrc">
<normaloff>:/static/themes/default/img/edit.png</normaloff>:/static/themes/default/img/edit.png</iconset>
</property>
<property name="iconSize">
<size>
<width>16</width>
<height>16</height>
</size>
</property>
<property name="checkable">
<bool>false</bool>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="btnDeleteAptSource">
<property name="sizePolicy">
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="font">
<font>
<family>Ubuntu</family>
</font>
</property>
<property name="cursor">
<cursorShape>PointingHandCursor</cursorShape>
</property>
<property name="focusPolicy">
<enum>Qt::NoFocus</enum>
</property>
<property name="accessibleName">
<string notr="true">danger</string>
</property>
<property name="styleSheet">
<string notr="true"/>
</property>
<property name="text">
<string>Delete</string>
</property>
<property name="icon">
<iconset resource="../../static.qrc">
<normaloff>:/static/themes/default/img/trash.png</normaloff>:/static/themes/default/img/trash.png</iconset>
</property>
<property name="iconSize">
<size>
<width>16</width>
<height>16</height>
</size>
</property>
<property name="checkable">
<bool>false</bool>
</property>
</widget>
</item>
<item>
<spacer name="bottomSectionHorizontalSpacer">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>0</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QLineEdit" name="txtAptSource"/>
</item>
<item>
<widget class="QCheckBox" name="checkEnableSource">
<property name="accessibleName">
<string notr="true">circle</string>
</property>
<property name="text">
<string>Enable Source</string>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="btnAddAPTSourceRepository">
<property name="sizePolicy">
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="font">
<font>
<family>Ubuntu</family>
</font>
</property>
<property name="cursor">
<cursorShape>PointingHandCursor</cursorShape>
</property>
<property name="focusPolicy">
<enum>Qt::NoFocus</enum>
</property>
<property name="accessibleName">
<string notr="true">primary</string>
</property>
<property name="styleSheet">
<string notr="true"/>
</property>
<property name="text">
<string>Add Repository</string>
</property>
<property name="checkable">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="btnCancel">
<property name="sizePolicy">
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="font">
<font>
<family>Ubuntu</family>
</font>
</property>
<property name="cursor">
<cursorShape>PointingHandCursor</cursorShape>
</property>
<property name="focusPolicy">
<enum>Qt::NoFocus</enum>
</property>
<property name="accessibleName">
<string notr="true">danger</string>
</property>
<property name="styleSheet">
<string notr="true"/>
</property>
<property name="text">
<string>Cancel</string>
</property>
<property name="iconSize">
<size>
<width>16</width>
<height>16</height>
</size>
</property>
<property name="checkable">
<bool>false</bool>
</property>
</widget>
</item>
</layout>
</item>
<item row="0" column="5">
<spacer name="horizontalSpacer">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item row="0" column="0" colspan="5">
<widget class="QLabel" name="lblAptSourceTitle">
<property name="font">
<font>
<family>Ubuntu</family>
<pointsize>11</pointsize>
<italic>false</italic>
</font>
</property>
<property name="styleSheet">
<string notr="true"/>
</property>
<property name="text">
<string notr="true"/>
</property>
</widget>
</item>
<item row="2" column="0" colspan="7">
<widget class="QLabel" name="lblAptSourceSelectInfo">
<property name="text">
<string>Select to delete or edit.</string>
</property>
</widget>
</item>
</layout>
</widget>
</item>
</layout>
</widget>
<resources>
<include location="../../static.qrc"/>
</resources>
<connections/>
</ui>
``` | /content/code_sandbox/stacer/Pages/AptSourceManager/apt_source_manager_page.ui | xml | 2016-11-06T09:48:44 | 2024-08-16T05:48:30 | Stacer | oguzhaninan/Stacer | 8,831 | 3,149 |
```xml
// copied from path_to_url
import { Kind } from '../../graphql';
import GraphQLDate from '../date';
describe('GraphQLDate', () => {
describe('serialize', () => {
it('pass Date object', () => {
expect(GraphQLDate.serialize(new Date(Date.UTC(2017, 10, 19)))).toBe(
'2017-11-19T00:00:00.000Z'
);
});
it('pass number', () => {
expect(GraphQLDate.serialize(new Date(Date.UTC(2018, 10, 1)).getTime())).toBe(
'2018-11-01T00:00:00.000Z'
);
});
it('pass "2016-02-02T00:13:22.000Z"', () => {
expect(GraphQLDate.serialize('2016-02-02T00:13:22.000Z')).toBe('2016-02-02T00:13:22.000Z');
});
it('pass "2016-02-02T00:13:22Z"', () => {
expect(GraphQLDate.serialize('2016-02-02T00:13:22Z')).toBe('2016-02-02T00:13:22Z');
});
it('pass "2016-02-02"', () => {
expect(GraphQLDate.serialize('2016-02-02')).toBe('2016-02-02');
});
});
describe('parseValue', () => {
it('support parsing values', () => {
expect(GraphQLDate.parseValue('2017-11-18T00:00:00.000Z')).toEqual(
new Date(Date.UTC(2017, 10, 18, 0, 0, 0))
);
});
});
describe('parseLiteral', () => {
it('parse a ast literal', async () => {
const ast = {
kind: Kind.STRING,
value: '2015-07-24T10:56:42.744Z',
} as any;
const date = GraphQLDate.parseLiteral(ast, {});
expect(date).toBeInstanceOf(Date);
expect(date.toJSON()).toEqual(ast.value);
});
it('parse a ast literal with tz', async () => {
const ast = {
kind: Kind.STRING,
value: '2015-07-24T10:56:42.744+06:00',
} as any;
const date = GraphQLDate.parseLiteral(ast, {});
expect(date).toBeInstanceOf(Date);
expect(date.toJSON()).toEqual('2015-07-24T04:56:42.744Z');
});
});
it('parse a ast literal of integer kind', async () => {
const ast = {
kind: Kind.INT,
value: '1541030400000',
} as any;
const date = GraphQLDate.parseLiteral(ast, {});
expect(date).toBeInstanceOf(Date);
expect(date.toJSON()).toBe('2018-11-01T00:00:00.000Z');
});
});
``` | /content/code_sandbox/src/type/__tests__/date-test.ts | xml | 2016-06-07T07:43:40 | 2024-07-30T19:45:36 | graphql-compose | graphql-compose/graphql-compose | 1,205 | 666 |
```xml
/*
* @license Apache-2.0
*
*
*
* path_to_url
*
* Unless required by applicable law or agreed to in writing, software
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
// TypeScript Version: 4.1
/// <reference types="@stdlib/types"/>
import { Iterator as Iter, IterableIterator } from '@stdlib/types/iter';
// Define a union type representing both iterable and non-iterable iterators:
type Iterator = Iter | IterableIterator;
/**
* Returns an iterator which iteratively computes the cube root.
*
* ## Notes
*
* - If an environment supports `Symbol.iterator` **and** a provided iterator is iterable, the returned iterator is iterable.
*
* @param iterator - input iterator
* @returns iterator
*
* @example
* var randu = require( '@stdlib/random/iter/randu' );
*
* var iter = iterCbrt( randu() );
*
* var r = iter.next().value;
* // returns <number>
*
* r = iter.next().value;
* // returns <number>
*
* r = iter.next().value;
* // returns <number>
*
* // ...
*/
declare function iterCbrt( iterator: Iterator ): Iterator;
// EXPORTS //
export = iterCbrt;
``` | /content/code_sandbox/lib/node_modules/@stdlib/math/iter/special/cbrt/docs/types/index.d.ts | xml | 2016-03-24T04:19:52 | 2024-08-16T09:03:19 | stdlib | stdlib-js/stdlib | 4,266 | 275 |
```xml
<clickhouse>
<profiles>
<default>
</default>
</profiles>
<users>
<kuser>
<kerberos>
<realm>TEST.CLICKHOUSE.TECH</realm>
</kerberos>
<access_management>1</access_management>
<networks replace="replace">
<ip>::/0</ip>
</networks>
<profile>default</profile>
<quota>default</quota>
</kuser>
</users>
</clickhouse>
``` | /content/code_sandbox/tests/integration/test_kerberos_auth/configs/users.xml | xml | 2016-06-02T08:28:18 | 2024-08-16T18:39:33 | ClickHouse | ClickHouse/ClickHouse | 36,234 | 114 |
```xml
/*
* LiskHQ/lisk-commander
*
* See the LICENSE file at the top-level directory of this distribution
* for licensing information.
*
* Unless otherwise agreed in a custom licensing agreement with the Lisk Foundation,
* no part of this software, including this file, may be copied, modified,
* propagated, or distributed except according to the terms contained in the
* LICENSE file.
*
* Removal or modification of this copyright notice is prohibited.
*
*/
import { Application } from 'lisk-framework';
export const getApplication = (): Application => {
const { app } = Application.defaultApplication({ genesis: { chainID: '00000000' } });
return app;
};
``` | /content/code_sandbox/commander/test/helpers/application.ts | xml | 2016-02-01T21:45:35 | 2024-08-15T19:16:48 | lisk-sdk | LiskArchive/lisk-sdk | 2,721 | 141 |
```xml
import * as Joi from 'joi';
import * as jf from 'joiful';
export class RollingAverageOptions {
@(jf.number().integer().min(1).required())
window: number;
}
export class DebounceOptions {
@(jf.number().min(0).optional())
wait?: number;
@(jf.number().min(0).optional())
maxWait?: number;
@(jf.boolean().optional())
leading?: boolean;
@(jf.boolean().optional())
trailing?: boolean;
}
export class EntityBehavior {
@(jf.object({ objectClass: DebounceOptions }).optional())
debounce?: DebounceOptions;
@(jf.object({ objectClass: RollingAverageOptions }).optional())
rollingAverage?: RollingAverageOptions;
}
export class EntitiesConfig {
@(jf.object().custom(validateBehaviours).required())
behaviors: { [entityId: string]: EntityBehavior } = {};
}
// Custom validators as no decorator for "[key: string]: Type"
function validateBehaviours(options: {
schema: Joi.Schema;
joi: typeof Joi;
}): Joi.Schema {
return options.joi
.object()
.pattern(options.joi.string(), jf.getSchema(EntityBehavior));
}
``` | /content/code_sandbox/src/entities/entities.config.ts | xml | 2016-08-18T18:50:21 | 2024-08-12T16:12:05 | room-assistant | mKeRix/room-assistant | 1,255 | 255 |
```xml
//
//
// Microsoft Bot Framework: path_to_url
//
// Bot Framework Emulator Github:
// path_to_url
//
// All rights reserved.
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED ""AS IS"", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
import * as React from 'react';
import { mount, ReactWrapper, shallow, ShallowWrapper } from 'enzyme';
import { Provider } from 'react-redux';
import { createDirectLine, createStyleSet, Components } from 'botframework-webchat';
import { ActivityTypes } from 'botframework-schema';
import {
bot,
chat,
clientAwareSettings,
editor,
setInspectorObjects,
showContextMenuForActivity,
setHighlightedObjects,
ValueTypes,
RestartConversationStatus,
} from '@bfemulator/app-shared';
import { combineReducers, createStore } from 'redux';
import { CommandServiceImpl, CommandServiceInstance } from '@bfemulator/sdk-shared';
import { BotCommands } from '../../../../../commands/botCommands';
import webChatStyleOptions from './webChatTheme';
import { ChatContainer } from './chatContainer';
import { ChatProps, Chat } from './chat';
const { Composer } = Components;
jest.mock('./chat.scss', () => ({
get bubbleContentColor() {
return '#fff';
},
get bubbleBackground() {
return '#ff0000';
},
}));
jest.mock('electron', () => ({
ipcMain: new Proxy(
{},
{
get(): any {
return () => ({});
},
has() {
return true;
},
}
),
ipcRenderer: new Proxy(
{},
{
get(): any {
return () => ({});
},
has() {
return true;
},
}
),
}));
const defaultDocument = {
directLine: createDirectLine({
secret: '1234',
domain: 'path_to_url
webSocket: false,
}),
inspectorObjects: [],
botId: '456',
mode: 'livechat',
userId: 'user1',
};
const mockStore = createStore(combineReducers({ bot, chat, clientAwareSettings, editor }), {
chat: {
chats: {
doc1: defaultDocument,
},
restartStatus: {},
pendingSpeechTokenRetrieval: false,
webChatStores: {},
webSpeechFactories: {},
},
directLine: {},
});
jest.mock('../../../../../state/store', () => ({
get store() {
return mockStore;
},
}));
describe('<ChatContainer />', () => {
let wrapper: ReactWrapper<any, any, Chat> | ShallowWrapper<any, any, Chat>;
let commandService: CommandServiceImpl;
beforeAll(() => {
new BotCommands();
const decorator = CommandServiceInstance();
const descriptor = decorator({ descriptor: {} }, 'none') as any;
commandService = descriptor.descriptor.get();
});
let props;
beforeEach(() => {
URL.createObjectURL = jest.fn(() => '');
props = {
documentId: 'doc1',
endpoint: {},
mode: 'livechat',
onStartConversation: jest.fn(),
locale: 'en-US',
selectedActivity: {},
restartStatus: undefined,
} as ChatProps;
wrapper = mount(
<Provider store={mockStore}>
<ChatContainer {...props} />
</Provider>
);
});
it('should disable webchat if chat window is in restart conversation flow', () => {
let updatedProps = {
...props,
restartStatus: RestartConversationStatus.Started,
};
wrapper.setProps({
children: <ChatContainer {...updatedProps} />,
});
expect(wrapper.find(Composer).props().disabled).toBeTruthy();
updatedProps = {
...props,
restartStatus: RestartConversationStatus.Rejected,
};
wrapper.setProps({
children: <ChatContainer {...updatedProps} />,
});
expect(wrapper.find(Composer).props().disabled).toBeFalsy();
updatedProps = {
...props,
restartStatus: RestartConversationStatus.Completed,
};
wrapper.setProps({
children: <ChatContainer {...updatedProps} />,
});
expect(wrapper.find(Composer).props().disabled).toBeFalsy();
updatedProps = {
...props,
restartStatus: undefined,
};
wrapper.setProps({
children: <ChatContainer {...updatedProps} />,
});
expect(wrapper.find(Composer).props().disabled).toBeFalsy();
updatedProps = {
...props,
restartStatus: RestartConversationStatus.Stop,
};
wrapper.setProps({
children: <ChatContainer {...updatedProps} />,
});
expect(wrapper.find(Composer).props().disabled).toBeFalsy();
updatedProps = {
...props,
restartStatus: RestartConversationStatus.Started,
};
wrapper.setProps({
children: <ChatContainer {...updatedProps} />,
});
expect(wrapper.find(Composer).props().disabled).toBeTruthy();
});
describe('when there is no direct line client', () => {
it('renders a `not connected` message', () => {
wrapper = shallow(<Chat directLine={undefined} />);
expect(wrapper.text()).toEqual('Not Connected');
});
});
describe('when there is a direct line client', () => {
it('renders the WebChat component', () => {
const webChat = wrapper.find(Composer);
const styleSet = createStyleSet({ ...webChatStyleOptions });
styleSet.fileContent = {
...styleSet.fileContent,
background: '#ff0000',
'& .webchat__fileContent__badge': { padding: '4px' },
'& .webchat__fileContent__downloadIcon': { fill: '#fff' },
'& .webchat__fileContent__fileName': { color: '#fff' },
'& .webchat__fileContent__size': { color: '#fff' },
};
expect(webChat.exists()).toBe(true);
const wcProps = webChat.props();
expect(wcProps.bot).toEqual({ id: defaultDocument.botId, name: 'Bot' });
expect(wcProps.directLine).toEqual(defaultDocument.directLine);
expect(wcProps.locale).toBe('en-US');
expect(wcProps.styleSet).toEqual(styleSet);
expect(wcProps.userID).toBe('user1');
expect(wcProps.username).toBe('User');
});
});
describe('activity middleware', () => {
it('should render an activity wrapper', () => {
wrapper = shallow(<Chat />);
const middleware = card => children => <div>{children}</div>;
const mockCard = { activity: { type: ActivityTypes.Message, valueType: ValueTypes.Activity } };
const activityWrapper = (wrapper.instance() as any).createActivityMiddleware()(middleware)(mockCard)(<span />);
expect(activityWrapper).toBeTruthy();
});
it('should render nothing at the end of conversation', () => {
wrapper = shallow(<Chat />);
const middleware = card => children => <div>{children}</div>;
const mockCard = { activity: { type: ActivityTypes.EndOfConversation, valueType: ValueTypes.Activity } };
const activityWrapper = (wrapper.instance() as any).createActivityMiddleware()(middleware)(mockCard)(<span />);
expect(activityWrapper).toBe(null);
});
it('should render a trace activity', () => {
wrapper = shallow(<Chat />);
const middleware = card => children => <div>{children}</div>;
const mockCard = { activity: { type: ActivityTypes.Trace, valueType: ValueTypes.Debug } };
const activityWrapper = (wrapper.instance() as any).createActivityMiddleware()(middleware)(mockCard)(<span />);
expect(activityWrapper).toBeTruthy();
});
});
});
describe('event handlers', () => {
let dispatchSpy: jest.SpyInstance;
let wrapper: ReactWrapper<any, any, Chat> | ShallowWrapper<any, any, Chat>;
let instance: Chat;
let commandService: CommandServiceImpl;
beforeAll(() => {
new BotCommands();
const decorator = CommandServiceInstance();
const descriptor = decorator({ descriptor: {} }, 'none') as any;
commandService = descriptor.descriptor.get();
dispatchSpy = jest.spyOn(mockStore, 'dispatch').mockImplementation((action: any) => {
// don't block on awaited commands
if (action.payload && action.payload.resolver) {
action.payload.resolver();
return action;
}
});
const props = {
documentId: 'doc1',
endpoint: {},
mode: 'livechat',
onStartConversation: jest.fn(),
locale: 'en-US',
selectedActivity: {},
} as ChatProps;
wrapper = mount(
<Provider store={mockStore}>
<ChatContainer {...props} />
</Provider>
);
instance = wrapper.find(Chat).instance();
});
beforeEach(() => {
dispatchSpy.mockClear();
});
it('should handle an item renderer click', () => {
const selectedActivity = {};
(instance as any).activityMap = { activity1: selectedActivity };
const mockEvent = { currentTarget: { dataset: { activityId: 'activity1' } } };
(instance as any).onItemRendererClick(mockEvent);
expect(dispatchSpy).toHaveBeenCalledWith(setHighlightedObjects('doc1', []));
expect(dispatchSpy).toHaveBeenCalledWith(
setInspectorObjects('doc1', { ...selectedActivity, showInInspector: true } as any)
);
});
it('should handle a non-space or -enter key press', () => {
(instance as any).onItemRendererKeyDown({ key: 'A' });
expect(dispatchSpy).not.toHaveBeenCalled();
});
it('should handle a space or enter key press', () => {
const selectedActivity = {};
(instance as any).activityMap = { activity1: selectedActivity };
const mockEvent = { currentTarget: { dataset: { activityId: 'activity1' } }, key: 'Enter' };
(instance as any).onItemRendererKeyDown(mockEvent);
expect(dispatchSpy).toHaveBeenCalledWith(setHighlightedObjects('doc1', []));
expect(dispatchSpy).toHaveBeenCalledWith(
setInspectorObjects('doc1', { ...selectedActivity, showInInspector: true } as any)
);
});
it('should open a context menu for an activity', () => {
const selectedActivity = {};
(instance as any).activityMap = { activity1: selectedActivity };
const mockEvent = { currentTarget: { dataset: { activityId: 'activity1' } } };
(instance as any).onContextMenu(mockEvent);
expect(dispatchSpy).toHaveBeenCalledWith(setHighlightedObjects('doc1', []));
expect(dispatchSpy).toHaveBeenCalledWith(
setInspectorObjects('doc1', { ...selectedActivity, showInInspector: true } as any)
);
expect(dispatchSpy).toHaveBeenCalledWith(showContextMenuForActivity(selectedActivity));
});
});
``` | /content/code_sandbox/packages/app/client/src/ui/editor/emulator/parts/chat/chat.spec.tsx | xml | 2016-11-11T23:15:09 | 2024-08-16T12:45:29 | BotFramework-Emulator | microsoft/BotFramework-Emulator | 1,803 | 2,512 |
```xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "path_to_url">
<mapper namespace="org.dromara.maxkey.persistence.mapper.RegisterMapper">
<select id="findByEmail" parameterType="string" resultType="Register">
select
*
from
mxk_register
where
workemail = #{value}
</select>
</mapper>
``` | /content/code_sandbox/maxkey-persistence/src/main/resources/org/dromara/maxkey/persistence/mapper/xml/mysql/RegisterMapper.xml | xml | 2016-11-16T03:06:50 | 2024-08-16T09:22:42 | MaxKey | dromara/MaxKey | 1,423 | 104 |
```xml
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <Cocoa/Cocoa.h>
#include <stddef.h>
#include "base/macros.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/gfx/font.h"
TEST(PlatformFontMacTest, DeriveFont) {
// Use a base font that support all traits.
gfx::Font base_font("Helvetica", 13);
// Bold
gfx::Font bold_font(base_font.Derive(0, gfx::Font::BOLD));
NSFontTraitMask traits = [[NSFontManager sharedFontManager]
traitsOfFont:bold_font.GetNativeFont()];
EXPECT_EQ(NSBoldFontMask, traits);
// Italic
gfx::Font italic_font(base_font.Derive(0, gfx::Font::ITALIC));
traits = [[NSFontManager sharedFontManager]
traitsOfFont:italic_font.GetNativeFont()];
EXPECT_EQ(NSItalicFontMask, traits);
// Bold italic
gfx::Font bold_italic_font(base_font.Derive(
0, gfx::Font::BOLD | gfx::Font::ITALIC));
traits = [[NSFontManager sharedFontManager]
traitsOfFont:bold_italic_font.GetNativeFont()];
EXPECT_EQ(static_cast<NSFontTraitMask>(NSBoldFontMask | NSItalicFontMask),
traits);
}
TEST(PlatformFontMacTest, ConstructFromNativeFont) {
gfx::Font normal_font([NSFont fontWithName:@"Helvetica" size:12]);
EXPECT_EQ(12, normal_font.GetFontSize());
EXPECT_EQ("Helvetica", normal_font.GetFontName());
EXPECT_EQ(gfx::Font::NORMAL, normal_font.GetStyle());
gfx::Font bold_font([NSFont fontWithName:@"Helvetica-Bold" size:14]);
EXPECT_EQ(14, bold_font.GetFontSize());
EXPECT_EQ("Helvetica", bold_font.GetFontName());
EXPECT_EQ(gfx::Font::BOLD, bold_font.GetStyle());
gfx::Font italic_font([NSFont fontWithName:@"Helvetica-Oblique" size:14]);
EXPECT_EQ(14, italic_font.GetFontSize());
EXPECT_EQ("Helvetica", italic_font.GetFontName());
EXPECT_EQ(gfx::Font::ITALIC, italic_font.GetStyle());
gfx::Font bold_italic_font(
[NSFont fontWithName:@"Helvetica-BoldOblique" size:14]);
EXPECT_EQ(14, bold_italic_font.GetFontSize());
EXPECT_EQ("Helvetica", bold_italic_font.GetFontName());
EXPECT_EQ(gfx::Font::BOLD | gfx::Font::ITALIC, bold_italic_font.GetStyle());
}
// Ensures that the Font's reported height is consistent with the native font's
// ascender and descender metrics.
TEST(PlatformFontMacTest, ValidateFontHeight) {
// Use the default ResourceBundle system font. E.g. Helvetica Neue in 10.10,
// Lucida Grande before that, and San Francisco after.
gfx::Font default_font;
gfx::Font::FontStyle styles[] = {
gfx::Font::NORMAL, gfx::Font::BOLD, gfx::Font::ITALIC, gfx::Font::UNDERLINE
};
for (size_t i = 0; i < arraysize(styles); ++i) {
SCOPED_TRACE(testing::Message() << "Font::FontStyle: " << styles[i]);
// Include the range of sizes used by ResourceBundle::FontStyle (-1 to +8).
for (int delta = -1; delta <= 8; ++delta) {
gfx::Font font = default_font.Derive(delta, styles[i]);
SCOPED_TRACE(testing::Message() << "FontSize(): " << font.GetFontSize());
NSFont* native_font = font.GetNativeFont();
// Font height (an integer) should be the sum of these.
CGFloat ascender = [native_font ascender];
CGFloat descender = [native_font descender];
CGFloat leading = [native_font leading];
// NSFont always gives a negative value for descender. Others positive.
EXPECT_GE(0, descender);
EXPECT_LE(0, ascender);
EXPECT_LE(0, leading);
int sum = ceil(ascender - descender + leading);
// Text layout is performed using an integral baseline offset derived from
// the ascender. The height needs to be enough to fit the full descender
// (plus baseline). So the height depends on the rounding of the ascender,
// and can be as much as 1 greater than the simple sum of floats.
EXPECT_LE(sum, font.GetHeight());
EXPECT_GE(sum + 1, font.GetHeight());
// Recreate the rounding performed for GetBaseLine().
EXPECT_EQ(ceil(ceil(ascender) - descender + leading), font.GetHeight());
}
}
}
``` | /content/code_sandbox/orig_chrome/ui/gfx/platform_font_mac_unittest.mm | xml | 2016-09-27T03:41:10 | 2024-08-16T10:42:57 | miniblink49 | weolar/miniblink49 | 7,069 | 1,036 |
```xml
<resources>
<string name="app_name">AsyncTask</string>
<string name="hello_world">Hello world!</string>
<string name="action_settings">Settings</string>
</resources>
``` | /content/code_sandbox/Android/AsyncTask/app/src/main/res/values/strings.xml | xml | 2016-05-02T05:43:21 | 2024-08-16T06:51:39 | journaldev | WebJournal/journaldev | 1,314 | 45 |
```xml
import * as React from 'react';
import { Legends, ILegend, DataVizPalette, getColorFromToken } from '@fluentui/react-charting';
import { Toggle } from '@fluentui/react';
import { useBoolean } from '@fluentui/react-hooks';
const legends: ILegend[] = [
{
title: 'Legend 1',
color: getColorFromToken(DataVizPalette.color1),
},
{
title: 'Legend 2',
color: getColorFromToken(DataVizPalette.color2),
},
{
title: 'Legend 3',
color: getColorFromToken(DataVizPalette.color3),
shape: 'diamond',
},
{
title: 'Legend 4',
color: getColorFromToken(DataVizPalette.color4),
shape: 'triangle',
},
];
export const LegendsOnChangeExample: React.FunctionComponent = () => {
const defaultSelectedLegends = ['Legend 1', 'Legend 3'];
const [isMulti, { toggle: toggleIsMulti }] = useBoolean(true);
const onChange = (keys: string[]) => {
alert(keys.length ? `Selected: ${keys.join()}` : 'Empty');
};
return (
<div>
<Toggle
label="Can select multiple legends"
onText="Multiple"
offText="Single"
checked={isMulti}
onChange={toggleIsMulti}
/>
<Legends
legends={legends}
canSelectMultipleLegends={isMulti}
defaultSelectedLegends={defaultSelectedLegends}
// eslint-disable-next-line react/jsx-no-bind
onChange={onChange}
/>
</div>
);
};
``` | /content/code_sandbox/packages/react-examples/src/react-charting/Legends/Legends.OnChange.Example.tsx | xml | 2016-06-06T15:03:44 | 2024-08-16T18:49:29 | fluentui | microsoft/fluentui | 18,221 | 361 |
```xml
import * as Enzyme from "enzyme";
import * as Adapter from "enzyme-adapter-react-16";
import * as JQuery from "jquery";
Enzyme.configure({
adapter: new Adapter(),
});
(window as any).$ = JQuery;
const __IS_DEBUG__ = false;
``` | /content/code_sandbox/src/test-setup.ts | xml | 2016-01-21T17:02:22 | 2024-08-12T19:21:02 | datacamp-light | datacamp/datacamp-light | 1,304 | 60 |
```xml
import * as React from 'react';
import { IMicroFeedbackStyles, VoteType, MicroFeedback } from '@fluentui/react-experiments';
export class MicroFeedbackExample extends React.Component<{}, {}> {
public render(): JSX.Element {
const sendFeedbackCallback = (vote: VoteType) => {
// can be sent to a backend that collects user feedback
console.log('Logged vote type:', vote);
};
const microfeedbackStyles: IMicroFeedbackStyles = {
root: {
float: 'left',
},
};
return (
<div>
<MicroFeedback
styles={microfeedbackStyles}
likeIconTitle="Like"
dislikeIconTitle="Dislike"
thanksText="Thank you!"
// eslint-disable-next-line react/jsx-no-bind
sendFeedback={sendFeedbackCallback}
/>
</div>
);
}
}
``` | /content/code_sandbox/packages/react-examples/src/react-experiments/MicroFeedback/MicroFeedback.Example.tsx | xml | 2016-06-06T15:03:44 | 2024-08-16T18:49:29 | fluentui | microsoft/fluentui | 18,221 | 188 |
```xml
import * as React from 'react';
import { ReactNode, useEffect, useState } from 'react';
import {
EditBase,
InferredElement,
useResourceContext,
useEditContext,
getElementsFromRecords,
RaRecord,
} from 'ra-core';
import { capitalize, singularize } from 'inflection';
import { EditProps } from './Edit';
import { EditView } from './EditView';
import { editFieldTypes } from './editFieldTypes';
export const EditGuesser = <RecordType extends RaRecord = any>(
props: EditGuesserProps<RecordType>
) => {
const {
resource,
id,
mutationMode,
mutationOptions,
queryOptions,
redirect,
transform,
disableAuthentication,
...rest
} = props;
return (
<EditBase<RecordType>
resource={resource}
id={id}
mutationMode={mutationMode}
mutationOptions={mutationOptions}
queryOptions={queryOptions}
redirect={redirect}
transform={transform}
disableAuthentication={disableAuthentication}
>
<EditViewGuesser {...rest} />
</EditBase>
);
};
interface EditGuesserProps<RecordType extends RaRecord = any>
extends Omit<EditProps<RecordType>, 'children'> {}
const EditViewGuesser = <RecordType extends RaRecord = any>(
props: EditGuesserProps<RecordType>
) => {
const resource = useResourceContext(props);
if (!resource) {
throw new Error(
`<EditGuesser> was called outside of a ResourceContext and without a resource prop. You must set the resource prop.`
);
}
const { record } = useEditContext();
const [child, setChild] = useState<ReactNode>(null);
const { enableLog = process.env.NODE_ENV === 'development', ...rest } =
props;
useEffect(() => {
setChild(null);
}, [resource]);
useEffect(() => {
if (record && !child) {
const inferredElements = getElementsFromRecords(
[record],
editFieldTypes
);
const inferredChild = new InferredElement(
editFieldTypes.form,
null,
inferredElements
);
setChild(inferredChild.getElement());
if (!enableLog) return;
const representation = inferredChild.getRepresentation();
const components = ['Edit']
.concat(
Array.from(
new Set(
Array.from(representation.matchAll(/<([^/\s>]+)/g))
.map(match => match[1])
.filter(component => component !== 'span')
)
)
)
.sort();
// eslint-disable-next-line no-console
console.log(
`Guessed Edit:
import { ${components.join(', ')} } from 'react-admin';
export const ${capitalize(singularize(resource))}Edit = () => (
<Edit>
${representation}
</Edit>
);`
);
}
}, [record, child, resource, enableLog]);
return <EditView {...rest}>{child}</EditView>;
};
``` | /content/code_sandbox/packages/ra-ui-materialui/src/detail/EditGuesser.tsx | xml | 2016-07-13T07:58:54 | 2024-08-16T18:32:27 | react-admin | marmelab/react-admin | 24,624 | 661 |
```xml
export { checkHardwareForAssistant } from './checkHardwareForAssistant';
export * from './types';
``` | /content/code_sandbox/packages/shared/lib/assistant/index.ts | xml | 2016-06-08T11:16:51 | 2024-08-16T14:14:27 | WebClients | ProtonMail/WebClients | 4,300 | 21 |
```xml
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
<item name="android:windowAnimationStyle">@style/ActivityTransition</item>
<item name="patternViewStyle">@style/MyPatternView</item>
</style>
<style name="ActionBarTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="windowActionBar">true</item>
<item name="windowNoTitle">false</item>
<item name="android:windowAnimationStyle">@style/ActivityTransition</item>
<item name="patternViewStyle">@style/PatternView.Light</item>
</style>
<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />
<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />
<style name="ActivityTransition" parent="@android:style/Animation.Activity">
<item name="android:activityOpenEnterAnimation">@anim/fade_in</item>
<item name="android:activityOpenExitAnimation">@anim/no_anim</item>
<item name="android:activityCloseEnterAnimation">@anim/no_anim</item>
<item name="android:activityCloseExitAnimation">@anim/fade_out</item>
</style>
<style name="MaterialSearchViewStyle">
<!-- Background for the search bar -->
<item name="searchBackground">@color/colorPrimary</item>
<!-- Change voice icon -->
<item name="searchVoiceIcon">@drawable/ic_action_voice_search_inverted</item>
<!-- Change clear text icon -->
<item name="searchCloseIcon">@drawable/ic_action_navigation_close_inverted</item>
<!-- Change up icon -->
<item name="searchBackIcon">@drawable/ic_action_navigation_arrow_back_inverted</item>
<!-- Change icon for the suggestions -->
<item name="searchSuggestionIcon">@drawable/ic_suggestion</item>
<!-- Change background for the suggestions list view -->
<item name="searchSuggestionBackground">@android:color/white</item>
<!-- Change text color for edit text. This will also be the color of the cursor -->
<item name="android:textColor">@color/black_80</item>
<!-- Change hint text color for edit text -->
<item name="android:textColorHint">@color/black_40</item>
<!-- Hint for edit text -->
<item name="android:hint">@string/search_hint</item>
</style>
<style name="EditTextAddSite">
<item name="android:maxLines">1</item>
<item name="android:ellipsize">end</item>
<item name="android:inputType">text</item>
<item name="android:scrollHorizontally">true</item>
<item name="android:textSize">13sp</item>
<item name="met_baseColor">@color/black</item>
<item name="met_primaryColor">@color/colorAccent</item>
<item name="met_floatingLabel">highlight</item>
<item name="met_floatingLabelAlwaysShown">true</item>
</style>
<style name="MyPatternView">
<item name="pl_aspect">square</item>
<item name="pl_regularColor">@color/white</item>
<item name="pl_errorColor">#fff4511e</item>
<item name="pl_successColor">@color/colorPrimaryLightest</item>
</style>
<style name="source_spinner" parent="Widget.AppCompat.DropDownItem.Spinner">
<item name="android:textColor">@color/black_80</item>
<item name="android:textSize">16sp</item>
</style>
</resources>
``` | /content/code_sandbox/app/src/main/res/values/styles.xml | xml | 2016-08-08T13:25:41 | 2024-08-15T07:21:04 | H-Viewer | PureDark/H-Viewer | 1,738 | 931 |
```xml
/* eslint-disable */
import { TypedDocumentNode as DocumentNode } from "@graphql-typed-document-node/core";
export type Maybe<T> = T | null;
export type InputMaybe<T> = Maybe<T>;
export type Exact<T extends { [key: string]: unknown }> = {
[K in keyof T]: T[K];
};
export type MakeOptional<T, K extends keyof T> = Omit<T, K> & {
[SubKey in K]?: Maybe<T[SubKey]>;
};
export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & {
[SubKey in K]: Maybe<T[SubKey]>;
};
/** All built-in and custom scalars, mapped to their actual values */
export type Scalars = {
ID: string;
String: string;
Boolean: boolean;
Int: number;
Float: number;
/**
* A date-time string at UTC, such as 2007-12-03T10:15:30Z, is compliant with the date-time format outlined in section 5.6 of the RFC 3339
* profile of the ISO 8601 standard for representation of dates and times using the Gregorian calendar.
*
* This scalar is a description of an exact instant on the timeline such as the instant that a user account was created.
*
* # Input Coercion
*
* When expected as an input type, only RFC 3339 compliant date-time strings are accepted. All other input values raise a query error indicating an incorrect type.
*
* # Result Coercion
*
* Where an RFC 3339 compliant date-time string has a time-zone other than UTC, it is shifted to UTC.
* For example, the date-time string 2016-01-01T14:10:20+01:00 is shifted to 2016-01-01T13:10:20Z.
*/
DateTime: any;
};
export type Comment = {
__typename?: "Comment";
/** when the model was created */
createdAt: Scalars["DateTime"];
id: Scalars["ID"];
message: Scalars["String"];
post?: Maybe<Post>;
/** when the model was updated */
updatedAt: Scalars["DateTime"];
};
export type CommentByInput = {
id?: InputMaybe<Scalars["ID"]>;
};
/** Input to create a new CommentCommentRelatePostPost */
export type CommentCommentRelatePostPostCreateInput = {
slug: Scalars["String"];
title: Scalars["String"];
};
/** Input to create a new CommentCommentRelatePostPost relation */
export type CommentCommentRelatePostPostCreateRelationInput = {
create?: InputMaybe<CommentCommentRelatePostPostCreateInput>;
link?: InputMaybe<Scalars["ID"]>;
};
/** Input to update a CommentCommentRelatePostPost relation */
export type CommentCommentRelatePostPostUpdateRelationInput = {
create?: InputMaybe<CommentCommentRelatePostPostCreateInput>;
link?: InputMaybe<Scalars["ID"]>;
unlink?: InputMaybe<Scalars["ID"]>;
};
export type CommentConnection = {
__typename?: "CommentConnection";
edges?: Maybe<Array<Maybe<CommentEdge>>>;
/** Information to aid in pagination */
pageInfo: PageInfo;
};
/** Input to create a new Comment */
export type CommentCreateInput = {
message: Scalars["String"];
post?: InputMaybe<CommentCommentRelatePostPostCreateRelationInput>;
};
export type CommentCreatePayload = {
__typename?: "CommentCreatePayload";
comment?: Maybe<Comment>;
};
export type CommentDeletePayload = {
__typename?: "CommentDeletePayload";
deletedId: Scalars["ID"];
};
export type CommentEdge = {
__typename?: "CommentEdge";
cursor: Scalars["String"];
node: Comment;
};
/** Input to create a new Comment */
export type CommentUpdateInput = {
message?: InputMaybe<Scalars["String"]>;
post?: InputMaybe<CommentCommentRelatePostPostUpdateRelationInput>;
};
export type CommentUpdatePayload = {
__typename?: "CommentUpdatePayload";
comment?: Maybe<Comment>;
};
export type Mutation = {
__typename?: "Mutation";
/** Create a Comment */
commentCreate?: Maybe<CommentCreatePayload>;
/** Delete a Comment by ID or unique field */
commentDelete?: Maybe<CommentDeletePayload>;
/** Update a Comment */
commentUpdate?: Maybe<CommentUpdatePayload>;
/** Create a Post */
postCreate?: Maybe<PostCreatePayload>;
/** Delete a Post by ID or unique field */
postDelete?: Maybe<PostDeletePayload>;
/** Update a Post */
postUpdate?: Maybe<PostUpdatePayload>;
};
export type MutationCommentCreateArgs = {
input: CommentCreateInput;
};
export type MutationCommentDeleteArgs = {
by: CommentByInput;
};
export type MutationCommentUpdateArgs = {
by: CommentByInput;
input: CommentUpdateInput;
};
export type MutationPostCreateArgs = {
input: PostCreateInput;
};
export type MutationPostDeleteArgs = {
by: PostByInput;
};
export type MutationPostUpdateArgs = {
by: PostByInput;
input: PostUpdateInput;
};
export type PageInfo = {
__typename?: "PageInfo";
endCursor?: Maybe<Scalars["String"]>;
hasNextPage: Scalars["Boolean"];
hasPreviousPage: Scalars["Boolean"];
startCursor?: Maybe<Scalars["String"]>;
};
export type Post = {
__typename?: "Post";
comments?: Maybe<CommentConnection>;
/** when the model was created */
createdAt: Scalars["DateTime"];
id: Scalars["ID"];
slug: Scalars["String"];
title: Scalars["String"];
/** when the model was updated */
updatedAt: Scalars["DateTime"];
};
export type PostCommentsArgs = {
after?: InputMaybe<Scalars["String"]>;
before?: InputMaybe<Scalars["String"]>;
first?: InputMaybe<Scalars["Int"]>;
last?: InputMaybe<Scalars["Int"]>;
};
export type PostByInput = {
id?: InputMaybe<Scalars["ID"]>;
slug?: InputMaybe<Scalars["String"]>;
};
/** Input to create a new PostCommentRelatePostComment */
export type PostCommentRelatePostCommentCreateInput = {
message: Scalars["String"];
};
/** Input to create a new PostCommentRelatePostComment relation */
export type PostCommentRelatePostCommentCreateRelationInput = {
create?: InputMaybe<PostCommentRelatePostCommentCreateInput>;
link?: InputMaybe<Scalars["ID"]>;
};
/** Input to update a PostCommentRelatePostComment relation */
export type PostCommentRelatePostCommentUpdateRelationInput = {
create?: InputMaybe<PostCommentRelatePostCommentCreateInput>;
link?: InputMaybe<Scalars["ID"]>;
unlink?: InputMaybe<Scalars["ID"]>;
};
export type PostConnection = {
__typename?: "PostConnection";
edges?: Maybe<Array<Maybe<PostEdge>>>;
/** Information to aid in pagination */
pageInfo: PageInfo;
};
/** Input to create a new Post */
export type PostCreateInput = {
comments?: InputMaybe<
Array<InputMaybe<PostCommentRelatePostCommentCreateRelationInput>>
>;
slug: Scalars["String"];
title: Scalars["String"];
};
export type PostCreatePayload = {
__typename?: "PostCreatePayload";
post?: Maybe<Post>;
};
export type PostDeletePayload = {
__typename?: "PostDeletePayload";
deletedId: Scalars["ID"];
};
export type PostEdge = {
__typename?: "PostEdge";
cursor: Scalars["String"];
node: Post;
};
/** Input to create a new Post */
export type PostUpdateInput = {
comments?: InputMaybe<
Array<InputMaybe<PostCommentRelatePostCommentUpdateRelationInput>>
>;
slug?: InputMaybe<Scalars["String"]>;
title?: InputMaybe<Scalars["String"]>;
};
export type PostUpdatePayload = {
__typename?: "PostUpdatePayload";
post?: Maybe<Post>;
};
export type Query = {
__typename?: "Query";
/** Query a single Comment by an ID or a unique field */
comment?: Maybe<Comment>;
/** Paginated query to fetch the whole list of `Comment`. */
commentCollection?: Maybe<CommentConnection>;
/** Query a single Post by an ID or a unique field */
post?: Maybe<Post>;
/** Paginated query to fetch the whole list of `Post`. */
postCollection?: Maybe<PostConnection>;
};
export type QueryCommentArgs = {
by: CommentByInput;
};
export type QueryCommentCollectionArgs = {
after?: InputMaybe<Scalars["String"]>;
before?: InputMaybe<Scalars["String"]>;
first?: InputMaybe<Scalars["Int"]>;
last?: InputMaybe<Scalars["Int"]>;
};
export type QueryPostArgs = {
by: PostByInput;
};
export type QueryPostCollectionArgs = {
after?: InputMaybe<Scalars["String"]>;
before?: InputMaybe<Scalars["String"]>;
first?: InputMaybe<Scalars["Int"]>;
last?: InputMaybe<Scalars["Int"]>;
};
export type GetAllPostsQueryVariables = Exact<{
first: Scalars["Int"];
}>;
export type GetAllPostsQuery = {
__typename?: "Query";
postCollection?: {
__typename?: "PostConnection";
edges?: Array<{
__typename?: "PostEdge";
node: { __typename?: "Post"; id: string; title: string; slug: string };
} | null> | null;
} | null;
};
export type GetPostBySlugQueryVariables = Exact<{
slug: Scalars["String"];
}>;
export type GetPostBySlugQuery = {
__typename?: "Query";
post?: {
__typename?: "Post";
id: string;
title: string;
slug: string;
} | null;
};
export const GetAllPostsDocument = {
kind: "Document",
definitions: [
{
kind: "OperationDefinition",
operation: "query",
name: { kind: "Name", value: "GetAllPosts" },
variableDefinitions: [
{
kind: "VariableDefinition",
variable: {
kind: "Variable",
name: { kind: "Name", value: "first" },
},
type: {
kind: "NonNullType",
type: { kind: "NamedType", name: { kind: "Name", value: "Int" } },
},
},
],
selectionSet: {
kind: "SelectionSet",
selections: [
{
kind: "Field",
name: { kind: "Name", value: "postCollection" },
arguments: [
{
kind: "Argument",
name: { kind: "Name", value: "first" },
value: {
kind: "Variable",
name: { kind: "Name", value: "first" },
},
},
],
selectionSet: {
kind: "SelectionSet",
selections: [
{
kind: "Field",
name: { kind: "Name", value: "edges" },
selectionSet: {
kind: "SelectionSet",
selections: [
{
kind: "Field",
name: { kind: "Name", value: "node" },
selectionSet: {
kind: "SelectionSet",
selections: [
{
kind: "Field",
name: { kind: "Name", value: "id" },
},
{
kind: "Field",
name: { kind: "Name", value: "title" },
},
{
kind: "Field",
name: { kind: "Name", value: "slug" },
},
],
},
},
],
},
},
],
},
},
],
},
},
],
} as unknown as DocumentNode<GetAllPostsQuery, GetAllPostsQueryVariables>;
export const GetPostBySlugDocument = {
kind: "Document",
definitions: [
{
kind: "OperationDefinition",
operation: "query",
name: { kind: "Name", value: "GetPostBySlug" },
variableDefinitions: [
{
kind: "VariableDefinition",
variable: { kind: "Variable", name: { kind: "Name", value: "slug" } },
type: {
kind: "NonNullType",
type: {
kind: "NamedType",
name: { kind: "Name", value: "String" },
},
},
},
],
selectionSet: {
kind: "SelectionSet",
selections: [
{
kind: "Field",
name: { kind: "Name", value: "post" },
arguments: [
{
kind: "Argument",
name: { kind: "Name", value: "by" },
value: {
kind: "ObjectValue",
fields: [
{
kind: "ObjectField",
name: { kind: "Name", value: "slug" },
value: {
kind: "Variable",
name: { kind: "Name", value: "slug" },
},
},
],
},
},
],
selectionSet: {
kind: "SelectionSet",
selections: [
{ kind: "Field", name: { kind: "Name", value: "id" } },
{ kind: "Field", name: { kind: "Name", value: "title" } },
{ kind: "Field", name: { kind: "Name", value: "slug" } },
],
},
},
],
},
},
],
} as unknown as DocumentNode<GetPostBySlugQuery, GetPostBySlugQueryVariables>;
``` | /content/code_sandbox/examples/with-grafbase/gql/graphql.ts | xml | 2016-10-05T23:32:51 | 2024-08-16T19:44:30 | next.js | vercel/next.js | 124,056 | 2,909 |
```xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="path_to_url">
<solid android:color="@color/highlightBlack"/>
<stroke android:width="1dp" android:color="@android:color/background_light" />
<corners android:radius="5dp"/>
<padding android:left="0dp" android:top="0dp" android:right="0dp" android:bottom="0dp" />
</shape>
``` | /content/code_sandbox/app/src/main/res/drawable/rounded_view.xml | xml | 2016-02-01T23:48:36 | 2024-08-15T03:35:42 | TagMo | HiddenRamblings/TagMo | 2,976 | 102 |
```xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
"path_to_url" [
<!ENTITY legal SYSTEM "legal.xml">
]>
<!--<?yelp:chunk-depth 4?>
-->
<!--
(Do not remove this comment block.)
Version: 3.0
Last modified: Sep 8, 2010
Maintainers:
Michael Vogt <mvo@ubuntu.com>
Translators:
(translators put your name and email here)
-->
<!-- =============Document Header ============================= -->
<book id="index" lang="en">
<!-- ============= Document Body ============================= -->
<!-- ============= Introduction ============================== -->
<bookinfo>
<!-- please do not change the id; for translations, change lang to -->
<!-- appropriate code -->
<title>Ubuntu program centras</title>
<!-- translators: uncomment this:
<copyright>
<year>2000</year>
<holder>ME-THE-TRANSLATOR (Latin translation)</holder>
</copyright>
-->
<!-- An address can be added to the publisher information. If a role is
not specified, the publisher/author is the same for all versions of the
document. -->
<!-- This file contains link to license for the documentation (GNU FDL), and
other legal stuff such as "NO WARRANTY" statement. Please do not change
any of this. -->
<publisher> <publishername>Ubuntu Documentation Project</publishername>
</publisher> &legal;
<authorgroup>
<author>
<firstname>Michael</firstname>
<surname>Vogt</surname>
<email>mvo@ubuntu.com</email>
</author>
<author>
<firstname>Matthew</firstname>
<firstname>Paul</firstname>
<surname>Thomas</surname>
<email>mpt@ubuntu.com</email>
</author>
<author>
<firstname>Andrew</firstname>
<surname>Higginson</surname>
<email>rugby471@gmail.com</email>
</author>
</authorgroup>
<abstract>
<para>Kaip diegti ar paalinti programin rang Ubuntu sistemoje.</para>
</abstract>
</bookinfo>
<chapter id="introduction">
<title>Kas yra Ubuntu program centras?</title>
<para>
Ubuntu Software Center is a virtual catalog of thousands of free
applications and other software to make your Ubuntu computer more useful.
</para>
<para>
You can find software by category or by searching, and you can install an
item with the click of a button.
</para>
<para>
You can also examine which software is installed on the computer already,
and remove anything you no longer need.
</para>
</chapter>
<chapter id="installing">
<title>Programins rangos diegimas</title>
<para>
To install something with Ubuntu Software Center, you need administrator
access and a working Internet connection. (If you set up Ubuntu on this
computer yourself, you have administrator access automatically.)
</para>
<orderedlist>
<listitem>
<para>
In the <guilabel>Get Software</guilabel> section, find the thing you want to
install. If you already know its name, try typing the name in the search
field. Or try searching for the type of program you want (like
“spreadsheet”). Otherwise, browse the list of departments.
</para>
</listitem>
<listitem>
<para>
Select the item in the list, and choose <guilabel>More Info</guilabel>.
</para>
</listitem>
<listitem>
<para>
Choose <guilabel>Install</guilabel>. You may need to enter your Ubuntu
password before the installation can begin.
</para>
</listitem>
</orderedlist>
<para>
How long something takes to install depends on how large it is, and the
speed of your computer and Internet connection.
</para>
<para>
When the screen changes to say “Installed”, the software is
ready to use.
</para>
<itemizedlist>
<listitem><para><xref linkend="launching" endterm="launching-title"/></para></listitem>
<listitem><para><xref linkend="missing" endterm="missing-title"/></para></listitem>
</itemizedlist>
</chapter>
<chapter id="launching">
<title id="launching-title"
>Using a program once it’s installed</title>
<para>
For most programs, once they are installed, you can launch them from the
<guimenu>Applications</guimenu> menu. (Utilities for changing settings may
appear inside <menuchoice><guimenu>System</guimenu>
<guisubmenu>Preferences</guisubmenu></menuchoice> or
<menuchoice><guimenu>System</guimenu>
<guisubmenu>Administration</guisubmenu></menuchoice> instead).
</para>
<para>
To find out where to launch a new program, navigate to the screen for that
program in Ubuntu Software Center, if it is not still being displayed. The
menu location should be displayed on that screen, below the colored bar.
</para>
<para>
If you are using Ubuntu Netbook Edition, an application appears in the
appropriate category on the home screen.
</para>
<para>
Some items, such as media playback or Web browser plugins, do not appear in
the menus. They are used automatically when Ubuntu needs them. For a Web
browser plugin, you may need to close the browser and reopen it before the
plugin will be used.
</para>
</chapter>
<chapter id="removing">
<title id="removing-title">Removing software</title>
<para>
To remove software, you need administrator access. (If you set up Ubuntu on
this computer yourself, you have administrator access automatically.)
</para>
<orderedlist>
<listitem>
<para>
In the <guilabel>Installed Software</guilabel> section, find the item you
want to remove.
</para>
</listitem>
<listitem>
<para>
Select the item in the list, and choose <guilabel>Remove</guilabel>. You
may need to enter your Ubuntu password.
</para>
</listitem>
</orderedlist>
<para>
If a program is open when you remove it, usually it will stay open even
after it is removed. As soon as you close it, it will no longer be
available.
</para>
<itemizedlist>
<listitem><para><xref linkend="metapackages" endterm="metapackages-title"/></para></listitem>
</itemizedlist>
</chapter>
<chapter id="metapackages">
<title id="metapackages-title"
>Why is it asking me to remove several programs together?</title>
<para>
Sometimes if you try to remove one item, Ubuntu Software Center will warn
you that other items will be removed too. There are two main reasons this
happens.
</para>
<itemizedlist>
<listitem>
<para>
If you remove an application, any add-ons or plugins for that application
usually will be removed too.
</para>
</listitem>
<listitem>
<para>
Multiple applications are sometimes provided as a single package. If any of
them are installed, all of them are installed. And if any of them are
removed, all of them are removed. Ubuntu Software Center cannot remove them
individually, because it has no instructions on how to separate them.
</para>
</listitem>
</itemizedlist>
<para>
You can use the <guilabel>Main Menu</guilabel> settings to hide unwanted
items without removing them from the computer. In Ubuntu, you can find
<guilabel>Main Menu</guilabel> inside <menuchoice><guimenu>System</guimenu>
<guisubmenu>Preferences</guisubmenu></menuchoice>. In Ubuntu Netbook
Edition, it is in <menuchoice><guimenu>Settings</guimenu>
<guisubmenu>Preferences</guisubmenu></menuchoice>.
</para>
<itemizedlist>
<listitem>
<para><ulink url="ghelp:user-guide?menu-editor" >Customizing the menu bar</ulink></para>
</listitem>
</itemizedlist>
</chapter>
<chapter id="canonical-maintained">
<title>What is “Canonical-maintained”?</title>
<para>
Some of the software available for Ubuntu is maintained by Canonical.
Canonical engineers ensure that security fixes and other critical updates
are provided for these programs.
</para>
<para>
Other software is maintained by the Ubuntu developer community. Any updates
are provided on a best-effort basis.
</para>
</chapter>
<chapter id="canonical-partners">
<title>What is “Canonical Partners”?</title>
<para>
<guilabel>Canonical Partners</guilabel> shows software from vendors who have
worked with Canonical to make their software available for Ubuntu.
</para>
<para>
You can install this software in the same way as any other software in
Ubuntu Software Center.
</para>
</chapter>
<chapter id="commercial">
<title id="commercial-title">Do I need to pay anything?</title>
<para>
Dauguma Ubuntu program centre pateikiamos programins rangos yra nemokama.
</para>
<para>
If something costs money, it has a <guilabel>Buy</guilabel> button instead
of an <guilabel>Install</guilabel> button, and its price is shown on the
screen for the individual item.
</para>
<para>
To pay for commercial software, you need an Internet connection, and an
Ubuntu Single Sign On account or Launchpad account. If you do not have an
account, Ubuntu Software Center will help you register one.
</para>
</chapter>
<chapter id="commercial-reinstalling">
<title id="commercial-reinstalling-title">
What if I paid for software and then lost it?
</title>
<para>
If you accidentally removed software that you purchased, and you want it
back, choose <menuchoice><guimenu>File</guimenu> <guimenuitem>Reinstall
Previous Purchases</guimenuitem></menuchoice>.
</para>
<para>
Once you sign in to the account that you used to buy the software, Ubuntu
Software Center will display your purchases for reinstalling.
</para>
<para>
This works even if you have reinstalled Ubuntu on the computer.
</para>
</chapter>
<chapter id="missing">
<title id="missing-title"
>K daryti, jei man reikiamos programos ia nra?</title>
<para>
Pradioje sitikinkite, kad Ubuntu program centre yra pasirinktas meniu
<menuchoice><guimenu>Rodymas</guimenu> <guimenuitem>Visos
programos</guimenuitem></menuchoice>.
</para>
<para>
If the software you want still isn’t there, but you know that it runs
on Ubuntu, try contacting the original developers of the program to ask if
they can help make it available.
</para>
<para>
If a program is available for other operating systems but not for Ubuntu,
let the developers know that you’re interested in running it on
Ubuntu.
</para>
</chapter>
<chapter id="bugs">
<title id="bugs-title"
>What if a program doesn’t work?</title>
<para>
With tens of thousands of programs in Ubuntu Software Center, there’s
always the chance that a few of them won’t work properly on your
computer.
</para>
<para>
If you are familiar with reporting bugs in software, you can help out by
reporting the problem to the Ubuntu developers. Most programs have a
<guimenuitem>Report a Problem</guimenuitem> item in their
<guimenu>Help</guimenu> menu.
</para>
<para>
Otherwise, look through Ubuntu Software Center for another program to do
what you want.
</para>
<itemizedlist>
<listitem><para><xref linkend="removing" endterm="removing-title"/></para></listitem>
</itemizedlist>
</chapter>
</book>
``` | /content/code_sandbox/help/lt/software-center.xml | xml | 2016-08-08T17:54:58 | 2024-08-06T13:58:47 | x-mario-center | fossasia/x-mario-center | 1,487 | 2,931 |
```xml
<run>
<case>
<desc>mLmA - A and B complex, disjoint</desc>
<a>
MULTIPOLYGON(
(
(60 320, 60 80, 300 80, 60 320),
(80 280, 80 100, 260 100, 80 280)),
(
(120 160, 140 160, 140 140, 120 160)))
</a>
<b>
MULTILINESTRING(
(100 240, 100 180, 160 180, 160 120, 220 120),
(40 360, 40 60, 340 60, 40 360, 40 20),
(120 120, 120 140, 100 140, 100 120, 140 120))
</b>
<test>
<op name="symdifference" pattern="FFFFFFFFF" arg1="A" arg2="B">
GEOMETRYCOLLECTION(
LINESTRING(100 240, 100 180, 160 180, 160 120, 220 120),
LINESTRING(40 360, 40 60),
LINESTRING(40 60, 340 60, 40 360),
LINESTRING(40 60, 40 20),
LINESTRING(120 120, 120 140, 100 140, 100 120, 120 120),
LINESTRING(120 120, 140 120),
POLYGON(
(60 320, 300 80, 60 80, 60 320),
(80 280, 80 100, 260 100, 80 280)),
POLYGON(
(120 160, 140 160, 140 140, 120 160)))
</op>
</test>
<test>
<op name="difference" pattern="FFFFFFFFF" arg1="A" arg2="B">
MULTIPOLYGON(
(
(60 320, 300 80, 60 80, 60 320),
(80 280, 80 100, 260 100, 80 280)),
(
(120 160, 140 160, 140 140, 120 160)))
</op>
</test>
<test>
<op name="union" pattern="FFFFFFFFF" arg1="A" arg2="B">
GEOMETRYCOLLECTION(
LINESTRING(100 240, 100 180, 160 180, 160 120, 220 120),
LINESTRING(40 360, 40 60),
LINESTRING(40 60, 340 60, 40 360),
LINESTRING(40 60, 40 20),
LINESTRING(120 120, 120 140, 100 140, 100 120, 120 120),
LINESTRING(120 120, 140 120),
POLYGON(
(60 320, 300 80, 60 80, 60 320),
(80 280, 80 100, 260 100, 80 280)),
POLYGON(
(120 160, 140 160, 140 140, 120 160)))
</op>
</test>
<test>
<op name="intersection" pattern="FFFFFFFFF" arg1="A" arg2="B">
LINESTRING EMPTY
</op>
</test>
</case>
<case>
<desc>mLmA - A and B complex, overlapping and touching #1</desc>
<a>
MULTIPOLYGON(
(
(60 260, 60 120, 220 120, 220 260, 60 260),
(80 240, 80 140, 200 140, 200 240, 80 240)),
(
(100 220, 100 160, 180 160, 180 220, 100 220),
(120 200, 120 180, 160 180, 160 200, 120 200)))
</a>
<b>
MULTILINESTRING(
(40 260, 240 260, 240 240, 40 240, 40 220, 240 220),
(120 300, 120 80, 140 80, 140 300, 140 80, 120 80, 120 320))
</b>
<test>
<op name="intersection" arg1="A" arg2="B">
MULTILINESTRING(
(220 260, 140 260),
(140 260, 120 260),
(120 260, 60 260),
(200 240, 140 240),
(140 240, 120 240),
(120 240, 80 240),
(180 220, 140 220),
(140 220, 120 220),
(120 220, 100 220),
(120 200, 120 180),
(220 240, 200 240),
(80 240, 60 240),
(60 220, 80 220),
(200 220, 220 220),
(120 260, 120 240),
(120 220, 120 200),
(120 180, 120 160),
(120 140, 120 120),
(140 120, 140 140),
(140 160, 140 180),
(140 200, 140 220),
(140 240, 140 260))
</op>
</test>
<test>
<op name="union" arg1="A" arg2="B">
GEOMETRYCOLLECTION(
LINESTRING(40 260, 60 260),
LINESTRING(220 260, 240 260, 240 240, 220 240),
LINESTRING(60 240, 40 240, 40 220, 60 220),
LINESTRING(80 220, 100 220),
LINESTRING(180 220, 200 220),
LINESTRING(220 220, 240 220),
LINESTRING(120 300, 120 260),
LINESTRING(120 240, 120 220),
LINESTRING(120 160, 120 140),
LINESTRING(120 120, 120 80),
LINESTRING(120 80, 140 80),
LINESTRING(140 80, 140 120),
LINESTRING(140 140, 140 160),
LINESTRING(140 180, 140 200),
LINESTRING(140 220, 140 240),
LINESTRING(140 260, 140 300),
LINESTRING(120 300, 120 320),
POLYGON(
(60 240, 60 260, 120 260, 140 260, 220 260, 220 240, 220 220, 220 120, 140 120,
120 120, 60 120, 60 220, 60 240),
(80 240, 80 220, 80 140, 120 140, 140 140, 200 140, 200 220, 200 240, 140 240,
120 240, 80 240)),
POLYGON(
(120 160, 100 160, 100 220, 120 220, 140 220, 180 220, 180 160, 140 160, 120 160),
(120 200, 120 180, 140 180, 160 180, 160 200, 140 200, 120 200)))
</op>
</test>
<test>
<op name="difference" arg1="A" arg2="B">
MULTIPOLYGON(
(
(60 240, 60 260, 120 260, 140 260, 220 260, 220 240, 220 220, 220 120, 140 120,
120 120, 60 120, 60 220, 60 240),
(80 240, 80 220, 80 140, 120 140, 140 140, 200 140, 200 220, 200 240, 140 240,
120 240, 80 240)),
(
(120 160, 100 160, 100 220, 120 220, 140 220, 180 220, 180 160, 140 160, 120 160),
(120 200, 120 180, 140 180, 160 180, 160 200, 140 200, 120 200)))
</op>
</test>
<test>
<op name="symdifference" arg1="A" arg2="B">
GEOMETRYCOLLECTION(
LINESTRING(40 260, 60 260),
LINESTRING(220 260, 240 260, 240 240, 220 240),
LINESTRING(60 240, 40 240, 40 220, 60 220),
LINESTRING(80 220, 100 220),
LINESTRING(180 220, 200 220),
LINESTRING(220 220, 240 220),
LINESTRING(120 300, 120 260),
LINESTRING(120 240, 120 220),
LINESTRING(120 160, 120 140),
LINESTRING(120 120, 120 80),
LINESTRING(120 80, 140 80),
LINESTRING(140 80, 140 120),
LINESTRING(140 140, 140 160),
LINESTRING(140 180, 140 200),
LINESTRING(140 220, 140 240),
LINESTRING(140 260, 140 300),
LINESTRING(120 300, 120 320),
POLYGON(
(60 240, 60 260, 120 260, 140 260, 220 260, 220 240, 220 220, 220 120, 140 120,
120 120, 60 120, 60 220, 60 240),
(80 240, 80 220, 80 140, 120 140, 140 140, 200 140, 200 220, 200 240, 140 240,
120 240, 80 240)),
POLYGON(
(120 160, 100 160, 100 220, 120 220, 140 220, 180 220, 180 160, 140 160, 120 160),
(120 200, 120 180, 140 180, 160 180, 160 200, 140 200, 120 200)))
</op>
</test>
</case>
<case>
<desc>mLmA - A and B complex, overlapping and touching #2</desc>
<a>
MULTIPOLYGON(
(
(60 320, 60 120, 280 120, 280 320, 60 320),
(120 260, 120 180, 240 180, 240 260, 120 260)),
(
(280 400, 320 400, 320 360, 280 360, 280 400)),
(
(300 240, 300 220, 320 220, 320 240, 300 240)))
</a>
<b>
MULTILINESTRING(
(80 300, 80 160, 260 160, 260 300, 80 300, 80 140),
(220 360, 220 240, 300 240, 300 360))
</b>
<test>
<op name="symdifference" pattern="FFFFFFFFF" arg1="A" arg2="B">
GEOMETRYCOLLECTION(
LINESTRING(220 360, 220 320),
LINESTRING(220 260, 220 240, 240 240),
LINESTRING(280 240, 300 240),
LINESTRING(300 240, 300 360),
POLYGON(
(280 240, 280 120, 60 120, 60 320, 220 320, 280 320, 280 240),
(120 260, 120 180, 240 180, 240 240, 240 260, 220 260, 120 260)),
POLYGON(
(280 400, 320 400, 320 360, 300 360, 280 360, 280 400)),
POLYGON(
(300 240, 320 240, 320 220, 300 220, 300 240)))
</op>
</test>
<test>
<op name="difference" pattern="FFFFFFFFF" arg1="A" arg2="B">
MULTIPOLYGON(
(
(280 240, 280 120, 60 120, 60 320, 220 320, 280 320, 280 240),
(120 260, 120 180, 240 180, 240 240, 240 260, 220 260, 120 260)),
(
(280 400, 320 400, 320 360, 300 360, 280 360, 280 400)),
(
(300 240, 320 240, 320 220, 300 220, 300 240)))
</op>
</test>
<test>
<op name="union" pattern="FFFFFFFFF" arg1="A" arg2="B">
GEOMETRYCOLLECTION(
LINESTRING(220 360, 220 320),
LINESTRING(220 260, 220 240, 240 240),
LINESTRING(280 240, 300 240),
LINESTRING(300 240, 300 360),
POLYGON(
(280 240, 280 120, 60 120, 60 320, 220 320, 280 320, 280 240),
(120 260, 120 180, 240 180, 240 240, 240 260, 220 260, 120 260)),
POLYGON(
(280 400, 320 400, 320 360, 300 360, 280 360, 280 400)),
POLYGON(
(300 240, 320 240, 320 220, 300 220, 300 240)))
</op>
</test>
<test>
<op name="intersection" pattern="FFFFFFFFF" arg1="A" arg2="B">
GEOMETRYCOLLECTION(
POINT(300 240),
POINT(300 360),
LINESTRING(80 300, 80 160),
LINESTRING(80 160, 260 160, 260 240),
LINESTRING(260 240, 260 300, 220 300),
LINESTRING(220 300, 80 300),
LINESTRING(80 160, 80 140),
LINESTRING(220 320, 220 300),
LINESTRING(220 300, 220 260),
LINESTRING(240 240, 260 240),
LINESTRING(260 240, 280 240))
</op>
</test>
</case>
<case>
<desc>mLmA - A and B complex, overlapping and touching #3</desc>
<a>
MULTIPOLYGON(
(
(120 180, 60 80, 180 80, 120 180)),
(
(100 240, 140 240, 120 220, 100 240)))
</a>
<b>
MULTILINESTRING(
(180 260, 120 180, 60 260, 180 260),
(60 300, 60 40),
(100 100, 140 100))
</b>
<test>
<op name="symdifference" pattern="FFFFFFFFF" arg1="A" arg2="B">
GEOMETRYCOLLECTION(
LINESTRING(180 260, 120 180),
LINESTRING(120 180, 60 260),
LINESTRING(60 260, 180 260),
LINESTRING(60 300, 60 260),
LINESTRING(60 260, 60 80),
LINESTRING(60 80, 60 40),
POLYGON(
(60 80, 120 180, 180 80, 60 80)),
POLYGON(
(100 240, 140 240, 120 220, 100 240)))
</op>
</test>
<test>
<op name="difference" pattern="FFFFFFFFF" arg1="A" arg2="B">
MULTIPOLYGON(
(
(60 80, 120 180, 180 80, 60 80)),
(
(100 240, 140 240, 120 220, 100 240)))
</op>
</test>
<test>
<op name="union" pattern="FFFFFFFFF" arg1="A" arg2="B">
GEOMETRYCOLLECTION(
LINESTRING(180 260, 120 180),
LINESTRING(120 180, 60 260),
LINESTRING(60 260, 180 260),
LINESTRING(60 300, 60 260),
LINESTRING(60 260, 60 80),
LINESTRING(60 80, 60 40),
POLYGON(
(60 80, 120 180, 180 80, 60 80)),
POLYGON(
(100 240, 140 240, 120 220, 100 240)))
</op>
</test>
<test>
<op name="intersection" pattern="FFFFFFFFF" arg1="A" arg2="B">
GEOMETRYCOLLECTION(
POINT(60 80),
POINT(120 180),
LINESTRING(100 100, 140 100))
</op>
</test>
</case>
</run>
``` | /content/code_sandbox/modules/tests/src/test/resources/testxml/general/TestOverlayLA.xml | xml | 2016-01-25T18:08:41 | 2024-08-15T17:34:53 | jts | locationtech/jts | 1,923 | 4,329 |
```xml
import { describe, it, expect } from 'vitest';
import { validateConfig } from '../../../../src/util/validate-config';
describe('validateConfig', () => {
it('should not error with empty config', async () => {
const config = {};
const error = validateConfig(config);
expect(error).toBeNull();
});
it('should not error with complete config', async () => {
const config = {
version: 2,
public: true,
regions: ['sfo1', 'iad1'],
cleanUrls: true,
headers: [{ source: '/', headers: [{ key: 'x-id', value: '123' }] }],
rewrites: [{ source: '/help', destination: '/support' }],
redirects: [{ source: '/kb', destination: 'path_to_url }],
trailingSlash: false,
functions: { 'api/user.go': { memory: 128, maxDuration: 5 } },
};
const error = validateConfig(config);
expect(error).toBeNull();
});
it('should not error with builds and routes', async () => {
const config = {
builds: [{ src: 'api/index.js', use: '@vercel/node' }],
routes: [{ src: '/(.*)', dest: '/api/index.js' }],
};
const error = validateConfig(config);
expect(error).toBeNull();
});
it('should error with invalid rewrites due to additional property and offer suggestion', async () => {
const error = validateConfig({
// @ts-ignore
rewrites: [{ src: '/(.*)', dest: '/api/index.js' }],
});
expect(error!.message).toEqual(
'Invalid vercel.json - `rewrites[0]` should NOT have additional property `src`. Did you mean `source`?'
);
expect(error!.link).toEqual(
'path_to_url#rewrites'
);
});
it('should error with invalid routes due to additional property and offer suggestion', async () => {
const error = validateConfig({
// @ts-ignore
routes: [{ source: '/(.*)', destination: '/api/index.js' }],
});
expect(error!.message).toEqual(
'Invalid vercel.json - `routes[0]` should NOT have additional property `source`. Did you mean `src`?'
);
expect(error!.link).toEqual(
'path_to_url#routes'
);
});
it('should error with invalid routes array type', async () => {
const error = validateConfig({
// @ts-ignore
routes: { src: '/(.*)', dest: '/api/index.js' },
});
expect(error!.message).toEqual(
'Invalid vercel.json - `routes` should be array.'
);
expect(error!.link).toEqual(
'path_to_url#routes'
);
});
it('should error with invalid redirects array object', async () => {
const error = validateConfig({
redirects: [
// @ts-ignore
{
/* intentionally empty */
},
],
});
expect(error!.message).toEqual(
'Invalid vercel.json - `redirects[0]` missing required property `source`.'
);
expect(error!.link).toEqual(
'path_to_url#redirects'
);
});
it('should error with invalid redirects.permanent poperty', async () => {
const error = validateConfig({
// @ts-ignore
redirects: [{ source: '/', destination: '/go', permanent: 'yes' }],
});
expect(error!.message).toEqual(
'Invalid vercel.json - `redirects[0].permanent` should be boolean.'
);
expect(error!.link).toEqual(
'path_to_url#redirects'
);
});
it('should error with invalid cleanUrls type', async () => {
const error = validateConfig({
// @ts-ignore
cleanUrls: 'true',
});
expect(error!.message).toEqual(
'Invalid vercel.json - `cleanUrls` should be boolean.'
);
expect(error!.link).toEqual(
'path_to_url#cleanurls'
);
});
it('should error with invalid trailingSlash type', async () => {
const error = validateConfig({
// @ts-ignore
trailingSlash: [true],
});
expect(error!.message).toEqual(
'Invalid vercel.json - `trailingSlash` should be boolean.'
);
expect(error!.link).toEqual(
'path_to_url#trailingslash'
);
});
it('should error with invalid headers property', async () => {
const error = validateConfig({
// @ts-ignore
headers: [{ 'Content-Type': 'text/html' }],
});
expect(error!.message).toEqual(
'Invalid vercel.json - `headers[0]` should NOT have additional property `Content-Type`. Please remove it.'
);
expect(error!.link).toEqual(
'path_to_url#headers'
);
});
it('should error with invalid headers.source type', async () => {
const error = validateConfig({
// @ts-ignore
headers: [{ source: [{ 'Content-Type': 'text/html' }] }],
});
expect(error!.message).toEqual(
'Invalid vercel.json - `headers[0].source` should be string.'
);
expect(error!.link).toEqual(
'path_to_url#headers'
);
});
it('should error with invalid headers additional property', async () => {
const error = validateConfig({
// @ts-ignore
headers: [{ source: '/', stuff: [{ 'Content-Type': 'text/html' }] }],
});
expect(error!.message).toEqual(
'Invalid vercel.json - `headers[0]` should NOT have additional property `stuff`. Please remove it.'
);
expect(error!.link).toEqual(
'path_to_url#headers'
);
});
it('should error with invalid headers wrong nested headers type', async () => {
const error = validateConfig({
// @ts-ignore
headers: [{ source: '/', headers: [{ 'Content-Type': 'text/html' }] }],
});
expect(error!.message).toEqual(
'Invalid vercel.json - `headers[0].headers[0]` should NOT have additional property `Content-Type`. Please remove it.'
);
expect(error!.link).toEqual(
'path_to_url#headers'
);
});
it('should error with invalid headers wrong nested headers additional property', async () => {
const error = validateConfig({
headers: [
// @ts-ignore
{ source: '/', headers: [{ key: 'Content-Type', val: 'text/html' }] },
],
});
expect(error!.message).toEqual(
'Invalid vercel.json - `headers[0].headers[0]` should NOT have additional property `val`. Please remove it.'
);
expect(error!.link).toEqual(
'path_to_url#headers'
);
});
it('should error with too many redirects', async () => {
const error = validateConfig({
redirects: Array.from({ length: 5000 }).map((_, i) => ({
source: `/${i}`,
destination: `/v/${i}`,
})),
});
expect(error!.message).toEqual(
'Invalid vercel.json - `redirects` should NOT have more than 1024 items.'
);
expect(error!.link).toEqual(
'path_to_url#redirects'
);
});
it('should error with too many nested headers', async () => {
const error = validateConfig({
headers: [
{
source: '/',
headers: [{ key: `x-id`, value: `123` }],
},
{
source: '/too-many',
headers: Array.from({ length: 5000 }).map((_, i) => ({
key: `${i}`,
value: `${i}`,
})),
},
],
});
expect(error!.message).toEqual(
'Invalid vercel.json - `headers[1].headers` should NOT have more than 1024 items.'
);
expect(error!.link).toEqual(
'path_to_url#headers'
);
});
it('should error with too low memory value', async () => {
const error = validateConfig({
functions: {
'api/test.js': {
memory: 127,
},
},
});
expect(error!.message).toEqual(
"Invalid vercel.json - `functions['api/test.js'].memory` should be >= 128."
);
expect(error!.link).toEqual(
'path_to_url#functions'
);
});
it('should error with too high memory value', async () => {
const error = validateConfig({
functions: {
'api/test.js': {
memory: 3010,
},
},
});
expect(error!.message).toEqual(
"Invalid vercel.json - `functions['api/test.js'].memory` should be <= 3009."
);
expect(error!.link).toEqual(
'path_to_url#functions'
);
});
it('should error with "functions" and "builds"', async () => {
const error = validateConfig({
builds: [
{
src: 'index.html',
use: '@vercel/static',
},
],
functions: {
'api/test.js': {
memory: 1024,
},
},
});
expect(error!.message).toEqual(
'The `functions` property cannot be used in conjunction with the `builds` property. Please remove one of them.'
);
expect(error!.link).toEqual('path_to_url
});
it('should error when crons have missing schedule', () => {
const error = validateConfig({
// @ts-ignore
crons: [{ path: '/api/test.js' }],
});
expect(error!.message).toEqual(
'Invalid vercel.json - `crons[0]` missing required property `schedule`.'
);
expect(error!.link).toEqual(
'path_to_url#crons'
);
});
it('should error when crons have missing path', () => {
const error = validateConfig({
// @ts-ignore
crons: [{ schedule: '* * * * *' }],
});
expect(error!.message).toEqual(
'Invalid vercel.json - `crons[0]` missing required property `path`.'
);
expect(error!.link).toEqual(
'path_to_url#crons'
);
});
it('should error when path is too long', () => {
const error = validateConfig({
crons: [{ path: '/' + 'x'.repeat(512), schedule: '* * * * *' }],
});
expect(error!.message).toEqual(
'Invalid vercel.json - `crons[0].path` should NOT be longer than 512 characters.'
);
expect(error!.link).toEqual(
'path_to_url#crons'
);
});
it('should error when schedule is too long', () => {
const error = validateConfig({
crons: [{ path: '/', schedule: '*'.repeat(257) }],
});
expect(error!.message).toEqual(
'Invalid vercel.json - `crons[0].schedule` should NOT be longer than 256 characters.'
);
expect(error!.link).toEqual(
'path_to_url#crons'
);
});
it('should error when path is empty', () => {
const error = validateConfig({
crons: [{ path: '', schedule: '* * * * *' }],
});
expect(error!.message).toEqual(
'Invalid vercel.json - `crons[0].path` should NOT be shorter than 1 characters.'
);
expect(error!.link).toEqual(
'path_to_url#crons'
);
});
it('should error when schedule is too short', () => {
const error = validateConfig({
crons: [{ path: '/', schedule: '* * * * ' }],
});
expect(error!.message).toEqual(
'Invalid vercel.json - `crons[0].schedule` should NOT be shorter than 9 characters.'
);
expect(error!.link).toEqual(
'path_to_url#crons'
);
});
it("should error when path doesn't start with `/`", () => {
const error = validateConfig({
crons: [{ path: 'api/cron', schedule: '* * * * *' }],
});
expect(error!.message).toEqual(
'Invalid vercel.json - `crons[0].path` should match pattern "^/.*".'
);
expect(error!.link).toEqual(
'path_to_url#crons'
);
});
});
``` | /content/code_sandbox/packages/cli/test/unit/util/dev/validate.test.ts | xml | 2016-09-09T01:12:08 | 2024-08-16T17:39:45 | vercel | vercel/vercel | 12,545 | 2,768 |
```xml
import { createHooks } from '@proton/redux-utilities';
import { organizationKeyThunk, selectOrganizationKey } from './index';
const hooks = createHooks(organizationKeyThunk, selectOrganizationKey);
export const useOrganizationKey = hooks.useValue;
export const useGetOrganizationKey = hooks.useGet;
``` | /content/code_sandbox/packages/account/organizationKey/hooks.ts | xml | 2016-06-08T11:16:51 | 2024-08-16T14:14:27 | WebClients | ProtonMail/WebClients | 4,300 | 64 |
```xml
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="path_to_url">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Dynamic_Spectre|ARM">
<Configuration>Dynamic_Spectre</Configuration>
<Platform>ARM</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Dynamic_Spectre|ARM64">
<Configuration>Dynamic_Spectre</Configuration>
<Platform>ARM64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Dynamic_Spectre|Win32">
<Configuration>Dynamic_Spectre</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Dynamic_Spectre|x64">
<Configuration>Dynamic_Spectre</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Dynamic|ARM">
<Configuration>Dynamic</Configuration>
<Platform>ARM</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Dynamic|ARM64">
<Configuration>Dynamic</Configuration>
<Platform>ARM64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Dynamic|Win32">
<Configuration>Dynamic</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Dynamic|x64">
<Configuration>Dynamic</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Static_Spectre|ARM">
<Configuration>Static_Spectre</Configuration>
<Platform>ARM</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Static_Spectre|ARM64">
<Configuration>Static_Spectre</Configuration>
<Platform>ARM64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Static_WinXP_Spectre|ARM">
<Configuration>Static_WinXP_Spectre</Configuration>
<Platform>ARM</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Static_WinXP_Spectre|ARM64">
<Configuration>Static_WinXP_Spectre</Configuration>
<Platform>ARM64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Static_WinXP_Spectre|Win32">
<Configuration>Static_WinXP_Spectre</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Static_WinXP_Spectre|x64">
<Configuration>Static_WinXP_Spectre</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Static_WinXP|ARM">
<Configuration>Static_WinXP</Configuration>
<Platform>ARM</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Static_WinXP|ARM64">
<Configuration>Static_WinXP</Configuration>
<Platform>ARM64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Static_WinXP|Win32">
<Configuration>Static_WinXP</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Static_WinXP|x64">
<Configuration>Static_WinXP</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Static_Spectre|Win32">
<Configuration>Static_Spectre</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Static_Spectre|x64">
<Configuration>Static_Spectre</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Static|ARM">
<Configuration>Static</Configuration>
<Platform>ARM</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Static|ARM64">
<Configuration>Static</Configuration>
<Platform>ARM64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Static|Win32">
<Configuration>Static</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Static|x64">
<Configuration>Static</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<VCProjectVersion>15.0</VCProjectVersion>
<ProjectGuid>{1855E9A9-A39C-4A2F-8C9C-027FB362BDC2}</ProjectGuid>
<Keyword>Win32Proj</Keyword>
<RootNamespace>ltlbuild</RootNamespace>
<WindowsTargetPlatformVersion>$([Microsoft.Build.Utilities.ToolLocationHelper]::GetLatestSDKTargetPlatformVersion('Windows', '10.0'))</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import Project="$(MSBuildThisFileDirectory)..\Shared.props" />
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static|Win32'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v141</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static|ARM'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v141</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
<WindowsSDKDesktopARMSupport>true</WindowsSDKDesktopARMSupport>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static|ARM64'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v141</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
<WindowsSDKDesktopARM64Support>true</WindowsSDKDesktopARM64Support>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Dynamic|Win32'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v141</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
<DisableStaticLibSupport>true</DisableStaticLibSupport>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Dynamic_Spectre|Win32'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v141</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
<DisableStaticLibSupport>true</DisableStaticLibSupport>
<SpectreMitigation>Spectre</SpectreMitigation>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Dynamic|ARM'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v141</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
<DisableStaticLibSupport>true</DisableStaticLibSupport>
<WindowsSDKDesktopARMSupport>true</WindowsSDKDesktopARMSupport>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Dynamic_Spectre|ARM'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v141</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
<DisableStaticLibSupport>true</DisableStaticLibSupport>
<WindowsSDKDesktopARMSupport>true</WindowsSDKDesktopARMSupport>
<SpectreMitigation>Spectre</SpectreMitigation>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Dynamic|ARM64'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v141</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
<DisableStaticLibSupport>true</DisableStaticLibSupport>
<WindowsSDKDesktopARM64Support>true</WindowsSDKDesktopARM64Support>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Dynamic_Spectre|ARM64'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v141</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
<DisableStaticLibSupport>true</DisableStaticLibSupport>
<WindowsSDKDesktopARM64Support>true</WindowsSDKDesktopARM64Support>
<SpectreMitigation>Spectre</SpectreMitigation>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static_Spectre|Win32'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v141</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
<SpectreMitigation>Spectre</SpectreMitigation>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static_Spectre|ARM'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v141</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
<SpectreMitigation>Spectre</SpectreMitigation>
<WindowsSDKDesktopARMSupport>true</WindowsSDKDesktopARMSupport>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static_Spectre|ARM64'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v141</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
<SpectreMitigation>Spectre</SpectreMitigation>
<WindowsSDKDesktopARM64Support>true</WindowsSDKDesktopARM64Support>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static_WinXP|Win32'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v141</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
<SupportWinXP>true</SupportWinXP>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static_WinXP|ARM'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v141</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
<SupportWinXP>true</SupportWinXP>
<WindowsSDKDesktopARMSupport>true</WindowsSDKDesktopARMSupport>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static_WinXP|ARM64'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v141</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
<SupportWinXP>true</SupportWinXP>
<WindowsSDKDesktopARM64Support>true</WindowsSDKDesktopARM64Support>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static_WinXP_Spectre|Win32'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v141</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
<SpectreMitigation>Spectre</SpectreMitigation>
<SupportWinXP>true</SupportWinXP>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static_WinXP_Spectre|ARM'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v141</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
<SpectreMitigation>Spectre</SpectreMitigation>
<SupportWinXP>true</SupportWinXP>
<WindowsSDKDesktopARMSupport>true</WindowsSDKDesktopARMSupport>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static_WinXP_Spectre|ARM64'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v141</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
<SpectreMitigation>Spectre</SpectreMitigation>
<SupportWinXP>true</SupportWinXP>
<WindowsSDKDesktopARM64Support>true</WindowsSDKDesktopARM64Support>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static|x64'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v141</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Dynamic|x64'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v141</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
<DisableStaticLibSupport>true</DisableStaticLibSupport>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Dynamic_Spectre|x64'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v141</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
<DisableStaticLibSupport>true</DisableStaticLibSupport>
<SpectreMitigation>Spectre</SpectreMitigation>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static_Spectre|x64'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v141</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
<SpectreMitigation>Spectre</SpectreMitigation>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static_WinXP|x64'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v141</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
<SupportWinXP>true</SupportWinXP>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static_WinXP_Spectre|x64'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v141</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
<SpectreMitigation>Spectre</SpectreMitigation>
<SupportWinXP>true</SupportWinXP>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings">
<Import Project="$(VCTargetsPath)\BuildCustomizations\masm.props" />
</ImportGroup>
<ImportGroup Label="Shared" />
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Static|Win32'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
<Import Project="$(SolutionDir)..\VC-LTL helper for Visual Studio.props" />
<Import Project="..\..\..\VC-LTL_Global.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Static|ARM'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
<Import Project="$(SolutionDir)..\VC-LTL helper for Visual Studio.props" />
<Import Project="..\..\..\VC-LTL_Global.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Static|ARM64'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
<Import Project="$(SolutionDir)..\VC-LTL helper for Visual Studio.props" />
<Import Project="..\..\..\VC-LTL_Global.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Dynamic|Win32'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
<Import Project="$(SolutionDir)..\VC-LTL helper for Visual Studio.props" />
<Import Project="..\..\..\VC-LTL_Global.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Dynamic_Spectre|Win32'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
<Import Project="$(SolutionDir)..\VC-LTL helper for Visual Studio.props" />
<Import Project="..\..\..\VC-LTL_Global.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Dynamic|ARM'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
<Import Project="$(SolutionDir)..\VC-LTL helper for Visual Studio.props" />
<Import Project="..\..\..\VC-LTL_Global.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Dynamic_Spectre|ARM'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
<Import Project="$(SolutionDir)..\VC-LTL helper for Visual Studio.props" />
<Import Project="..\..\..\VC-LTL_Global.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Dynamic|ARM64'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
<Import Project="$(SolutionDir)..\VC-LTL helper for Visual Studio.props" />
<Import Project="..\..\..\VC-LTL_Global.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Dynamic_Spectre|ARM64'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
<Import Project="$(SolutionDir)..\VC-LTL helper for Visual Studio.props" />
<Import Project="..\..\..\VC-LTL_Global.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Static_Spectre|Win32'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
<Import Project="$(SolutionDir)..\VC-LTL helper for Visual Studio.props" />
<Import Project="..\..\..\VC-LTL_Global.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Static_Spectre|ARM'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
<Import Project="$(SolutionDir)..\VC-LTL helper for Visual Studio.props" />
<Import Project="..\..\..\VC-LTL_Global.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Static_Spectre|ARM64'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
<Import Project="$(SolutionDir)..\VC-LTL helper for Visual Studio.props" />
<Import Project="..\..\..\VC-LTL_Global.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Static_WinXP|Win32'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
<Import Project="$(SolutionDir)..\VC-LTL helper for Visual Studio.props" />
<Import Project="..\..\..\VC-LTL_Global.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Static_WinXP|ARM'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
<Import Project="$(SolutionDir)..\VC-LTL helper for Visual Studio.props" />
<Import Project="..\..\..\VC-LTL_Global.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Static_WinXP|ARM64'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
<Import Project="$(SolutionDir)..\VC-LTL helper for Visual Studio.props" />
<Import Project="..\..\..\VC-LTL_Global.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Static_WinXP_Spectre|Win32'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
<Import Project="$(SolutionDir)..\VC-LTL helper for Visual Studio.props" />
<Import Project="..\..\..\VC-LTL_Global.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Static_WinXP_Spectre|ARM'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
<Import Project="$(SolutionDir)..\VC-LTL helper for Visual Studio.props" />
<Import Project="..\..\..\VC-LTL_Global.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Static_WinXP_Spectre|ARM64'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
<Import Project="$(SolutionDir)..\VC-LTL helper for Visual Studio.props" />
<Import Project="..\..\..\VC-LTL_Global.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Static|x64'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
<Import Project="$(SolutionDir)..\VC-LTL helper for Visual Studio.props" />
<Import Project="..\..\..\VC-LTL_Global.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Dynamic|x64'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
<Import Project="$(SolutionDir)..\VC-LTL helper for Visual Studio.props" />
<Import Project="..\..\..\VC-LTL_Global.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Dynamic_Spectre|x64'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
<Import Project="$(SolutionDir)..\VC-LTL helper for Visual Studio.props" />
<Import Project="..\..\..\VC-LTL_Global.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Static_Spectre|x64'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
<Import Project="$(SolutionDir)..\VC-LTL helper for Visual Studio.props" />
<Import Project="..\..\..\VC-LTL_Global.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Static_WinXP|x64'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
<Import Project="$(SolutionDir)..\VC-LTL helper for Visual Studio.props" />
<Import Project="..\..\..\VC-LTL_Global.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Static_WinXP_Spectre|x64'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
<Import Project="$(SolutionDir)..\VC-LTL helper for Visual Studio.props" />
<Import Project="..\..\..\VC-LTL_Global.props" />
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static|Win32'">
<IncludePath>$(SolutionDir)$(VC-LTLUsedToolsVersion)\vcruntime;$(SolutionDir)ucrt\inc;$(SolutionDir)$(VC-LTLUsedToolsVersion);$(SolutionDir);$(IncludePath)</IncludePath>
<TargetName>libcmt</TargetName>
<OutDir>$(SolutionDir)..\VC\$(VC-LTLUsedToolsVersion)\lib\$(PlatformShortName)\Vista\</OutDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static|ARM'">
<IncludePath>$(SolutionDir)$(VC-LTLUsedToolsVersion)\vcruntime;$(SolutionDir)ucrt\inc;$(SolutionDir)$(VC-LTLUsedToolsVersion);$(SolutionDir);$(IncludePath)</IncludePath>
<TargetName>libcmt</TargetName>
<OutDir>$(SolutionDir)..\VC\$(VC-LTLUsedToolsVersion)\lib\$(PlatformShortName)\Vista\</OutDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static|ARM64'">
<IncludePath>$(SolutionDir)$(VC-LTLUsedToolsVersion)\vcruntime;$(SolutionDir)ucrt\inc;$(SolutionDir)$(VC-LTLUsedToolsVersion);$(SolutionDir);$(IncludePath)</IncludePath>
<TargetName>libcmt</TargetName>
<OutDir>$(SolutionDir)..\VC\$(VC-LTLUsedToolsVersion)\lib\$(PlatformShortName)\Vista\</OutDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Dynamic|Win32'">
<IncludePath>$(SolutionDir)$(VC-LTLUsedToolsVersion)\vcruntime;$(SolutionDir)ucrt\inc;$(SolutionDir)$(VC-LTLUsedToolsVersion);$(SolutionDir);$(IncludePath)</IncludePath>
<TargetName>msvcrt</TargetName>
<OutDir>$(SolutionDir)..\VC\$(VC-LTLUsedToolsVersion)\lib\$(PlatformShortName)\Vista\</OutDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Dynamic_Spectre|Win32'">
<IncludePath>$(SolutionDir)$(VC-LTLUsedToolsVersion)\vcruntime;$(SolutionDir)ucrt\inc;$(SolutionDir)$(VC-LTLUsedToolsVersion);$(SolutionDir);$(IncludePath)</IncludePath>
<TargetName>msvcrt</TargetName>
<OutDir>$(SolutionDir)..\VC\$(VC-LTLUsedToolsVersion)\lib\$(SpectreMitigation)\$(PlatformShortName)\Vista\</OutDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Dynamic|ARM'">
<IncludePath>$(SolutionDir)$(VC-LTLUsedToolsVersion)\vcruntime;$(SolutionDir)ucrt\inc;$(SolutionDir)$(VC-LTLUsedToolsVersion);$(SolutionDir);$(IncludePath)</IncludePath>
<TargetName>msvcrt</TargetName>
<OutDir>$(SolutionDir)..\VC\$(VC-LTLUsedToolsVersion)\lib\$(PlatformShortName)\Vista\</OutDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Dynamic_Spectre|ARM'">
<IncludePath>$(SolutionDir)$(VC-LTLUsedToolsVersion)\vcruntime;$(SolutionDir)ucrt\inc;$(SolutionDir)$(VC-LTLUsedToolsVersion);$(SolutionDir);$(IncludePath)</IncludePath>
<TargetName>msvcrt</TargetName>
<OutDir>$(SolutionDir)..\VC\$(VC-LTLUsedToolsVersion)\lib\$(SpectreMitigation)\$(PlatformShortName)\Vista\</OutDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Dynamic|ARM64'">
<IncludePath>$(SolutionDir)$(VC-LTLUsedToolsVersion)\vcruntime;$(SolutionDir)ucrt\inc;$(SolutionDir)$(VC-LTLUsedToolsVersion);$(SolutionDir);$(IncludePath)</IncludePath>
<TargetName>msvcrt</TargetName>
<OutDir>$(SolutionDir)..\VC\$(VC-LTLUsedToolsVersion)\lib\$(PlatformShortName)\Vista\</OutDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Dynamic_Spectre|ARM64'">
<IncludePath>$(SolutionDir)$(VC-LTLUsedToolsVersion)\vcruntime;$(SolutionDir)ucrt\inc;$(SolutionDir)$(VC-LTLUsedToolsVersion);$(SolutionDir);$(IncludePath)</IncludePath>
<TargetName>msvcrt</TargetName>
<OutDir>$(SolutionDir)..\VC\$(VC-LTLUsedToolsVersion)\lib\$(SpectreMitigation)\$(PlatformShortName)\Vista\</OutDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static_Spectre|Win32'">
<IncludePath>$(SolutionDir)$(VC-LTLUsedToolsVersion)\vcruntime;$(SolutionDir)ucrt\inc;$(SolutionDir)$(VC-LTLUsedToolsVersion);$(SolutionDir);$(IncludePath)</IncludePath>
<TargetName>libcmt</TargetName>
<OutDir>$(SolutionDir)..\VC\$(VC-LTLUsedToolsVersion)\lib\$(SpectreMitigation)\$(PlatformShortName)\Vista\</OutDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static_Spectre|ARM'">
<IncludePath>$(SolutionDir)$(VC-LTLUsedToolsVersion)\vcruntime;$(SolutionDir)ucrt\inc;$(SolutionDir)$(VC-LTLUsedToolsVersion);$(SolutionDir);$(IncludePath)</IncludePath>
<TargetName>libcmt</TargetName>
<OutDir>$(SolutionDir)..\VC\$(VC-LTLUsedToolsVersion)\lib\$(SpectreMitigation)\$(PlatformShortName)\Vista\</OutDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static_Spectre|ARM64'">
<IncludePath>$(SolutionDir)$(VC-LTLUsedToolsVersion)\vcruntime;$(SolutionDir)ucrt\inc;$(SolutionDir)$(VC-LTLUsedToolsVersion);$(SolutionDir);$(IncludePath)</IncludePath>
<TargetName>libcmt</TargetName>
<OutDir>$(SolutionDir)..\VC\$(VC-LTLUsedToolsVersion)\lib\$(SpectreMitigation)\$(PlatformShortName)\Vista\</OutDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static_WinXP|Win32'">
<IncludePath>$(SolutionDir)$(VC-LTLUsedToolsVersion)\vcruntime;$(SolutionDir)ucrt\inc;$(SolutionDir)$(VC-LTLUsedToolsVersion);$(SolutionDir);$(IncludePath)</IncludePath>
<TargetName>libcmt</TargetName>
<OutDir>$(SolutionDir)..\VC\$(VC-LTLUsedToolsVersion)\lib\$(PlatformShortName)\WinXP\</OutDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static_WinXP|ARM'">
<IncludePath>$(SolutionDir)$(VC-LTLUsedToolsVersion)\vcruntime;$(SolutionDir)ucrt\inc;$(SolutionDir)$(VC-LTLUsedToolsVersion);$(SolutionDir);$(IncludePath)</IncludePath>
<TargetName>libcmt</TargetName>
<OutDir>$(SolutionDir)..\VC\$(VC-LTLUsedToolsVersion)\lib\$(PlatformShortName)\WinXP\</OutDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static_WinXP|ARM64'">
<IncludePath>$(SolutionDir)$(VC-LTLUsedToolsVersion)\vcruntime;$(SolutionDir)ucrt\inc;$(SolutionDir)$(VC-LTLUsedToolsVersion);$(SolutionDir);$(IncludePath)</IncludePath>
<TargetName>libcmt</TargetName>
<OutDir>$(SolutionDir)..\VC\$(VC-LTLUsedToolsVersion)\lib\$(PlatformShortName)\WinXP\</OutDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static_WinXP_Spectre|Win32'">
<IncludePath>$(SolutionDir)$(VC-LTLUsedToolsVersion)\vcruntime;$(SolutionDir)ucrt\inc;$(SolutionDir)$(VC-LTLUsedToolsVersion);$(SolutionDir);$(IncludePath)</IncludePath>
<TargetName>libcmt</TargetName>
<OutDir>$(SolutionDir)..\VC\$(VC-LTLUsedToolsVersion)\lib\$(SpectreMitigation)\$(PlatformShortName)\WinXP\</OutDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static_WinXP_Spectre|ARM'">
<IncludePath>$(SolutionDir)$(VC-LTLUsedToolsVersion)\vcruntime;$(SolutionDir)ucrt\inc;$(SolutionDir)$(VC-LTLUsedToolsVersion);$(SolutionDir);$(IncludePath)</IncludePath>
<TargetName>libcmt</TargetName>
<OutDir>$(SolutionDir)..\VC\$(VC-LTLUsedToolsVersion)\lib\$(SpectreMitigation)\$(PlatformShortName)\WinXP\</OutDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static_WinXP_Spectre|ARM64'">
<IncludePath>$(SolutionDir)$(VC-LTLUsedToolsVersion)\vcruntime;$(SolutionDir)ucrt\inc;$(SolutionDir)$(VC-LTLUsedToolsVersion);$(SolutionDir);$(IncludePath)</IncludePath>
<TargetName>libcmt</TargetName>
<OutDir>$(SolutionDir)..\VC\$(VC-LTLUsedToolsVersion)\lib\$(SpectreMitigation)\$(PlatformShortName)\WinXP\</OutDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static|x64'">
<IncludePath>$(SolutionDir)$(VC-LTLUsedToolsVersion)\vcruntime;$(SolutionDir)ucrt\inc;$(SolutionDir)$(VC-LTLUsedToolsVersion);$(SolutionDir);$(IncludePath)</IncludePath>
<TargetName>libcmt</TargetName>
<OutDir>$(SolutionDir)..\VC\$(VC-LTLUsedToolsVersion)\lib\$(PlatformShortName)\Vista\</OutDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Dynamic|x64'">
<IncludePath>$(SolutionDir)$(VC-LTLUsedToolsVersion)\vcruntime;$(SolutionDir)ucrt\inc;$(SolutionDir)$(VC-LTLUsedToolsVersion);$(SolutionDir);$(IncludePath)</IncludePath>
<TargetName>msvcrt</TargetName>
<OutDir>$(SolutionDir)..\VC\$(VC-LTLUsedToolsVersion)\lib\$(PlatformShortName)\Vista\</OutDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Dynamic_Spectre|x64'">
<IncludePath>$(SolutionDir)$(VC-LTLUsedToolsVersion)\vcruntime;$(SolutionDir)ucrt\inc;$(SolutionDir)$(VC-LTLUsedToolsVersion);$(SolutionDir);$(IncludePath)</IncludePath>
<TargetName>msvcrt</TargetName>
<OutDir>$(SolutionDir)..\VC\$(VC-LTLUsedToolsVersion)\lib\$(SpectreMitigation)\$(PlatformShortName)\Vista\</OutDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static_Spectre|x64'">
<IncludePath>$(SolutionDir)$(VC-LTLUsedToolsVersion)\vcruntime;$(SolutionDir)ucrt\inc;$(SolutionDir)$(VC-LTLUsedToolsVersion);$(SolutionDir);$(IncludePath)</IncludePath>
<TargetName>libcmt</TargetName>
<OutDir>$(SolutionDir)..\VC\$(VC-LTLUsedToolsVersion)\lib\$(SpectreMitigation)\$(PlatformShortName)\Vista\</OutDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static_WinXP|x64'">
<IncludePath>$(SolutionDir)$(VC-LTLUsedToolsVersion)\vcruntime;$(SolutionDir)ucrt\inc;$(SolutionDir)$(VC-LTLUsedToolsVersion);$(SolutionDir);$(IncludePath)</IncludePath>
<TargetName>libcmt</TargetName>
<OutDir>$(SolutionDir)..\VC\$(VC-LTLUsedToolsVersion)\lib\$(PlatformShortName)\WinXP\</OutDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static_WinXP_Spectre|x64'">
<IncludePath>$(SolutionDir)$(VC-LTLUsedToolsVersion)\vcruntime;$(SolutionDir)ucrt\inc;$(SolutionDir)$(VC-LTLUsedToolsVersion);$(SolutionDir);$(IncludePath)</IncludePath>
<TargetName>libcmt</TargetName>
<OutDir>$(SolutionDir)..\VC\$(VC-LTLUsedToolsVersion)\lib\$(SpectreMitigation)\$(PlatformShortName)\WinXP\</OutDir>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static|Win32'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<Optimization>MaxSpeed</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<PreprocessorDefinitions>_ALLOW_ITERATOR_DEBUG_LEVEL_MISMATCH;_DISABLE_DEPRECATE_LTL_MESSAGE;_CRT_BEST_PRACTICES_USAGE;_CRT_SECURE_NO_WARNINGS;__Build_LTL;_CRTBLD;_MBCS;_CRT_DECLARE_GLOBAL_VARIABLES_DIRECTLY;_VCRT_ALLOW_INTERNALS;_NO__LTL_Initialization;WIN32;NDEBUG;_LIB;_CORECRT_BUILD;_CTIME_;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<WholeProgramOptimization>false</WholeProgramOptimization>
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
<RuntimeTypeInfo>false</RuntimeTypeInfo>
<ProgramDataBaseFileName>$(OutDir)$(TargetName).pdb</ProgramDataBaseFileName>
<EnableEnhancedInstructionSet>NoExtensions</EnableEnhancedInstructionSet>
<LanguageStandard>stdcpp17</LanguageStandard>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<ForcedIncludeFiles>suppress.h;%(ForcedIncludeFiles)</ForcedIncludeFiles>
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
</Link>
<MASM>
<ObjectFileName>$(IntDir)%(FileName).asm.obj</ObjectFileName>
<UseSafeExceptionHandlers>true</UseSafeExceptionHandlers>
</MASM>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static|ARM'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<Optimization>MaxSpeed</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<PreprocessorDefinitions>_ALLOW_ITERATOR_DEBUG_LEVEL_MISMATCH;_DISABLE_DEPRECATE_LTL_MESSAGE;_CRT_BEST_PRACTICES_USAGE;_CRT_SECURE_NO_WARNINGS;__Build_LTL;_CRTBLD;_MBCS;_CRT_DECLARE_GLOBAL_VARIABLES_DIRECTLY;_VCRT_ALLOW_INTERNALS;_NO__LTL_Initialization;WIN32;NDEBUG;_LIB;_CORECRT_BUILD;_CTIME_;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<WholeProgramOptimization>false</WholeProgramOptimization>
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
<RuntimeTypeInfo>false</RuntimeTypeInfo>
<ProgramDataBaseFileName>$(OutDir)$(TargetName).pdb</ProgramDataBaseFileName>
<LanguageStandard>stdcpp17</LanguageStandard>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<ForcedIncludeFiles>suppress.h;%(ForcedIncludeFiles)</ForcedIncludeFiles>
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static|ARM64'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<Optimization>MaxSpeed</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<PreprocessorDefinitions>_ALLOW_ITERATOR_DEBUG_LEVEL_MISMATCH;_DISABLE_DEPRECATE_LTL_MESSAGE;_CRT_BEST_PRACTICES_USAGE;_CRT_SECURE_NO_WARNINGS;__Build_LTL;_CRTBLD;_MBCS;_CRT_DECLARE_GLOBAL_VARIABLES_DIRECTLY;_VCRT_ALLOW_INTERNALS;_NO__LTL_Initialization;NDEBUG;_LIB;_CORECRT_BUILD;_CTIME_;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<WholeProgramOptimization>false</WholeProgramOptimization>
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
<RuntimeTypeInfo>false</RuntimeTypeInfo>
<ProgramDataBaseFileName>$(OutDir)$(TargetName).pdb</ProgramDataBaseFileName>
<LanguageStandard>stdcpp17</LanguageStandard>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<ForcedIncludeFiles>suppress.h;%(ForcedIncludeFiles)</ForcedIncludeFiles>
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Dynamic|Win32'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<Optimization>MaxSpeed</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<PreprocessorDefinitions>_ALLOW_ITERATOR_DEBUG_LEVEL_MISMATCH;CRTDLL;_LTL_Using_Dynamic_Lib;__Bulib_Dynamic_Lib;_DISABLE_DEPRECATE_LTL_MESSAGE;_CRT_SECURE_NO_WARNINGS;__Build_LTL;_CRTBLD;_MBCS;_CRT_DECLARE_GLOBAL_VARIABLES_DIRECTLY;_VCRT_ALLOW_INTERNALS;_NO__LTL_Initialization;WIN32;NDEBUG;_LIB;_CORECRT_BUILD;_CTIME_;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<WholeProgramOptimization>false</WholeProgramOptimization>
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
<RuntimeTypeInfo>false</RuntimeTypeInfo>
<EnableEnhancedInstructionSet>NoExtensions</EnableEnhancedInstructionSet>
<LanguageStandard>stdcpp17</LanguageStandard>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<ForcedIncludeFiles>suppress.h;%(ForcedIncludeFiles)</ForcedIncludeFiles>
<ProgramDataBaseFileName>$(OutDir)$(TargetName).pdb</ProgramDataBaseFileName>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
<IgnoreSpecificDefaultLibraries>ltl.lib;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
<LinkTimeCodeGeneration>Default</LinkTimeCodeGeneration>
<ImportLibrary>$(OutDir)ltl.lib</ImportLibrary>
<ProgramDatabaseFile>$(OutDir)ltl.pdb</ProgramDatabaseFile>
</Link>
<MASM>
<ObjectFileName>$(IntDir)%(FileName).asm.obj</ObjectFileName>
<UseSafeExceptionHandlers>true</UseSafeExceptionHandlers>
</MASM>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Dynamic_Spectre|Win32'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<Optimization>MaxSpeed</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<PreprocessorDefinitions>_ALLOW_ITERATOR_DEBUG_LEVEL_MISMATCH;CRTDLL;_LTL_Using_Dynamic_Lib;__Bulib_Dynamic_Lib;_DISABLE_DEPRECATE_LTL_MESSAGE;_CRT_SECURE_NO_WARNINGS;__Build_LTL;_CRTBLD;_MBCS;_CRT_DECLARE_GLOBAL_VARIABLES_DIRECTLY;_VCRT_ALLOW_INTERNALS;_NO__LTL_Initialization;WIN32;NDEBUG;_LIB;_CORECRT_BUILD;_CTIME_;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<WholeProgramOptimization>false</WholeProgramOptimization>
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
<RuntimeTypeInfo>false</RuntimeTypeInfo>
<EnableEnhancedInstructionSet>NoExtensions</EnableEnhancedInstructionSet>
<LanguageStandard>stdcpp17</LanguageStandard>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<ForcedIncludeFiles>suppress.h;%(ForcedIncludeFiles)</ForcedIncludeFiles>
<ProgramDataBaseFileName>$(OutDir)$(TargetName).pdb</ProgramDataBaseFileName>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
<IgnoreSpecificDefaultLibraries>ltl.lib;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
<LinkTimeCodeGeneration>Default</LinkTimeCodeGeneration>
<ImportLibrary>$(OutDir)ltl.lib</ImportLibrary>
<ProgramDatabaseFile>$(OutDir)ltl.pdb</ProgramDatabaseFile>
</Link>
<MASM>
<ObjectFileName>$(IntDir)%(FileName).asm.obj</ObjectFileName>
<UseSafeExceptionHandlers>true</UseSafeExceptionHandlers>
</MASM>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Dynamic|ARM'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<Optimization>MaxSpeed</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<PreprocessorDefinitions>_ALLOW_ITERATOR_DEBUG_LEVEL_MISMATCH;CRTDLL;_LTL_Using_Dynamic_Lib;__Bulib_Dynamic_Lib;_DISABLE_DEPRECATE_LTL_MESSAGE;_CRT_SECURE_NO_WARNINGS;__Build_LTL;_CRTBLD;_MBCS;_CRT_DECLARE_GLOBAL_VARIABLES_DIRECTLY;_VCRT_ALLOW_INTERNALS;_NO__LTL_Initialization;WIN32;NDEBUG;_LIB;_CORECRT_BUILD;_CTIME_;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<WholeProgramOptimization>false</WholeProgramOptimization>
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
<RuntimeTypeInfo>false</RuntimeTypeInfo>
<LanguageStandard>stdcpp17</LanguageStandard>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<ForcedIncludeFiles>suppress.h;%(ForcedIncludeFiles)</ForcedIncludeFiles>
<ProgramDataBaseFileName>$(OutDir)$(TargetName).pdb</ProgramDataBaseFileName>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
<IgnoreSpecificDefaultLibraries>ltl.lib;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
<LinkTimeCodeGeneration>Default</LinkTimeCodeGeneration>
<ImportLibrary>$(OutDir)ltl.lib</ImportLibrary>
<ProgramDatabaseFile>$(OutDir)ltl.pdb</ProgramDatabaseFile>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Dynamic_Spectre|ARM'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<Optimization>MaxSpeed</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<PreprocessorDefinitions>_ALLOW_ITERATOR_DEBUG_LEVEL_MISMATCH;CRTDLL;_LTL_Using_Dynamic_Lib;__Bulib_Dynamic_Lib;_DISABLE_DEPRECATE_LTL_MESSAGE;_CRT_SECURE_NO_WARNINGS;__Build_LTL;_CRTBLD;_MBCS;_CRT_DECLARE_GLOBAL_VARIABLES_DIRECTLY;_VCRT_ALLOW_INTERNALS;_NO__LTL_Initialization;WIN32;NDEBUG;_LIB;_CORECRT_BUILD;_CTIME_;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<WholeProgramOptimization>false</WholeProgramOptimization>
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
<RuntimeTypeInfo>false</RuntimeTypeInfo>
<LanguageStandard>stdcpp17</LanguageStandard>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<ForcedIncludeFiles>suppress.h;%(ForcedIncludeFiles)</ForcedIncludeFiles>
<ProgramDataBaseFileName>$(OutDir)$(TargetName).pdb</ProgramDataBaseFileName>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
<IgnoreSpecificDefaultLibraries>ltl.lib;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
<LinkTimeCodeGeneration>Default</LinkTimeCodeGeneration>
<ImportLibrary>$(OutDir)ltl.lib</ImportLibrary>
<ProgramDatabaseFile>$(OutDir)ltl.pdb</ProgramDatabaseFile>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Dynamic|ARM64'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<Optimization>MaxSpeed</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<PreprocessorDefinitions>_ALLOW_ITERATOR_DEBUG_LEVEL_MISMATCH;CRTDLL;_LTL_Using_Dynamic_Lib;__Bulib_Dynamic_Lib;_DISABLE_DEPRECATE_LTL_MESSAGE;_CRT_SECURE_NO_WARNINGS;__Build_LTL;_CRTBLD;_MBCS;_CRT_DECLARE_GLOBAL_VARIABLES_DIRECTLY;_VCRT_ALLOW_INTERNALS;_NO__LTL_Initialization;NDEBUG;_LIB;_CORECRT_BUILD;_CTIME_;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<WholeProgramOptimization>false</WholeProgramOptimization>
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
<RuntimeTypeInfo>false</RuntimeTypeInfo>
<LanguageStandard>stdcpp17</LanguageStandard>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<ForcedIncludeFiles>suppress.h;%(ForcedIncludeFiles)</ForcedIncludeFiles>
<ProgramDataBaseFileName>$(OutDir)$(TargetName).pdb</ProgramDataBaseFileName>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
<IgnoreSpecificDefaultLibraries>ltl.lib;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
<LinkTimeCodeGeneration>Default</LinkTimeCodeGeneration>
<ImportLibrary>$(OutDir)ltl.lib</ImportLibrary>
<ProgramDatabaseFile>$(OutDir)ltl.pdb</ProgramDatabaseFile>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Dynamic_Spectre|ARM64'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<Optimization>MaxSpeed</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<PreprocessorDefinitions>_ALLOW_ITERATOR_DEBUG_LEVEL_MISMATCH;CRTDLL;_LTL_Using_Dynamic_Lib;__Bulib_Dynamic_Lib;_DISABLE_DEPRECATE_LTL_MESSAGE;_CRT_SECURE_NO_WARNINGS;__Build_LTL;_CRTBLD;_MBCS;_CRT_DECLARE_GLOBAL_VARIABLES_DIRECTLY;_VCRT_ALLOW_INTERNALS;_NO__LTL_Initialization;NDEBUG;_LIB;_CORECRT_BUILD;_CTIME_;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<WholeProgramOptimization>false</WholeProgramOptimization>
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
<RuntimeTypeInfo>false</RuntimeTypeInfo>
<LanguageStandard>stdcpp17</LanguageStandard>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<ForcedIncludeFiles>suppress.h;%(ForcedIncludeFiles)</ForcedIncludeFiles>
<ProgramDataBaseFileName>$(OutDir)$(TargetName).pdb</ProgramDataBaseFileName>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
<IgnoreSpecificDefaultLibraries>ltl.lib;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
<LinkTimeCodeGeneration>Default</LinkTimeCodeGeneration>
<ImportLibrary>$(OutDir)ltl.lib</ImportLibrary>
<ProgramDatabaseFile>$(OutDir)ltl.pdb</ProgramDatabaseFile>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static_Spectre|Win32'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<Optimization>MaxSpeed</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<PreprocessorDefinitions>_ALLOW_ITERATOR_DEBUG_LEVEL_MISMATCH;_DISABLE_DEPRECATE_LTL_MESSAGE;_CRT_SECURE_NO_WARNINGS;__Build_LTL;_CRTBLD;_MBCS;_CRT_DECLARE_GLOBAL_VARIABLES_DIRECTLY;_VCRT_ALLOW_INTERNALS;_NO__LTL_Initialization;WIN32;NDEBUG;_LIB;_CORECRT_BUILD;_CTIME_;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<WholeProgramOptimization>false</WholeProgramOptimization>
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
<RuntimeTypeInfo>false</RuntimeTypeInfo>
<ProgramDataBaseFileName>$(OutDir)$(TargetName).pdb</ProgramDataBaseFileName>
<EnableEnhancedInstructionSet>NoExtensions</EnableEnhancedInstructionSet>
<LanguageStandard>stdcpp17</LanguageStandard>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<ForcedIncludeFiles>suppress.h;%(ForcedIncludeFiles)</ForcedIncludeFiles>
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
</Link>
<MASM>
<ObjectFileName>$(IntDir)%(FileName).asm.obj</ObjectFileName>
<UseSafeExceptionHandlers>true</UseSafeExceptionHandlers>
</MASM>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static_Spectre|ARM'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<Optimization>MaxSpeed</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<PreprocessorDefinitions>_ALLOW_ITERATOR_DEBUG_LEVEL_MISMATCH;_DISABLE_DEPRECATE_LTL_MESSAGE;_CRT_SECURE_NO_WARNINGS;__Build_LTL;_CRTBLD;_MBCS;_CRT_DECLARE_GLOBAL_VARIABLES_DIRECTLY;_VCRT_ALLOW_INTERNALS;_NO__LTL_Initialization;WIN32;NDEBUG;_LIB;_CORECRT_BUILD;_CTIME_;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<WholeProgramOptimization>false</WholeProgramOptimization>
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
<RuntimeTypeInfo>false</RuntimeTypeInfo>
<ProgramDataBaseFileName>$(OutDir)$(TargetName).pdb</ProgramDataBaseFileName>
<LanguageStandard>stdcpp17</LanguageStandard>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<ForcedIncludeFiles>suppress.h;%(ForcedIncludeFiles)</ForcedIncludeFiles>
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static_Spectre|ARM64'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<Optimization>MaxSpeed</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<PreprocessorDefinitions>_ALLOW_ITERATOR_DEBUG_LEVEL_MISMATCH;_DISABLE_DEPRECATE_LTL_MESSAGE;_CRT_SECURE_NO_WARNINGS;__Build_LTL;_CRTBLD;_MBCS;_CRT_DECLARE_GLOBAL_VARIABLES_DIRECTLY;_VCRT_ALLOW_INTERNALS;_NO__LTL_Initialization;NDEBUG;_LIB;_CORECRT_BUILD;_CTIME_;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<WholeProgramOptimization>false</WholeProgramOptimization>
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
<RuntimeTypeInfo>false</RuntimeTypeInfo>
<ProgramDataBaseFileName>$(OutDir)$(TargetName).pdb</ProgramDataBaseFileName>
<LanguageStandard>stdcpp17</LanguageStandard>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<ForcedIncludeFiles>suppress.h;%(ForcedIncludeFiles)</ForcedIncludeFiles>
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static_WinXP|Win32'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<Optimization>MaxSpeed</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<PreprocessorDefinitions>_ALLOW_ITERATOR_DEBUG_LEVEL_MISMATCH;_DISABLE_DEPRECATE_LTL_MESSAGE;_CRT_SECURE_NO_WARNINGS;__Build_LTL;_CRTBLD;_MBCS;_CRT_DECLARE_GLOBAL_VARIABLES_DIRECTLY;_VCRT_ALLOW_INTERNALS;_NO__LTL_Initialization;_ATL_XP_TARGETING;WIN32;NDEBUG;_LIB;_CORECRT_BUILD;_CTIME_;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<WholeProgramOptimization>false</WholeProgramOptimization>
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
<RuntimeTypeInfo>false</RuntimeTypeInfo>
<ProgramDataBaseFileName>$(OutDir)$(TargetName).pdb</ProgramDataBaseFileName>
<EnableEnhancedInstructionSet>NoExtensions</EnableEnhancedInstructionSet>
<LanguageStandard>stdcpp17</LanguageStandard>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<ForcedIncludeFiles>suppress.h;%(ForcedIncludeFiles)</ForcedIncludeFiles>
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
</Link>
<MASM>
<ObjectFileName>$(IntDir)%(FileName).asm.obj</ObjectFileName>
<UseSafeExceptionHandlers>true</UseSafeExceptionHandlers>
</MASM>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static_WinXP|ARM'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<Optimization>MaxSpeed</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<PreprocessorDefinitions>_ALLOW_ITERATOR_DEBUG_LEVEL_MISMATCH;_DISABLE_DEPRECATE_LTL_MESSAGE;_CRT_SECURE_NO_WARNINGS;__Build_LTL;_CRTBLD;_MBCS;_CRT_DECLARE_GLOBAL_VARIABLES_DIRECTLY;_VCRT_ALLOW_INTERNALS;_NO__LTL_Initialization;_ATL_XP_TARGETING;WIN32;NDEBUG;_LIB;_CORECRT_BUILD;_CTIME_;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<WholeProgramOptimization>false</WholeProgramOptimization>
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
<RuntimeTypeInfo>false</RuntimeTypeInfo>
<ProgramDataBaseFileName>$(OutDir)$(TargetName).pdb</ProgramDataBaseFileName>
<LanguageStandard>stdcpp17</LanguageStandard>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<ForcedIncludeFiles>suppress.h;%(ForcedIncludeFiles)</ForcedIncludeFiles>
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static_WinXP|ARM64'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<Optimization>MaxSpeed</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<PreprocessorDefinitions>_ALLOW_ITERATOR_DEBUG_LEVEL_MISMATCH;_DISABLE_DEPRECATE_LTL_MESSAGE;_CRT_SECURE_NO_WARNINGS;__Build_LTL;_CRTBLD;_MBCS;_CRT_DECLARE_GLOBAL_VARIABLES_DIRECTLY;_VCRT_ALLOW_INTERNALS;_NO__LTL_Initialization;_ATL_XP_TARGETING;NDEBUG;_LIB;_CORECRT_BUILD;_CTIME_;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<WholeProgramOptimization>false</WholeProgramOptimization>
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
<RuntimeTypeInfo>false</RuntimeTypeInfo>
<ProgramDataBaseFileName>$(OutDir)$(TargetName).pdb</ProgramDataBaseFileName>
<LanguageStandard>stdcpp17</LanguageStandard>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<ForcedIncludeFiles>suppress.h;%(ForcedIncludeFiles)</ForcedIncludeFiles>
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static_WinXP_Spectre|Win32'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<Optimization>MaxSpeed</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<PreprocessorDefinitions>_ALLOW_ITERATOR_DEBUG_LEVEL_MISMATCH;_DISABLE_DEPRECATE_LTL_MESSAGE;_CRT_SECURE_NO_WARNINGS;__Build_LTL;_CRTBLD;_MBCS;_CRT_DECLARE_GLOBAL_VARIABLES_DIRECTLY;_VCRT_ALLOW_INTERNALS;_NO__LTL_Initialization;_ATL_XP_TARGETING;WIN32;NDEBUG;_LIB;_CORECRT_BUILD;_CTIME_;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<WholeProgramOptimization>false</WholeProgramOptimization>
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
<RuntimeTypeInfo>false</RuntimeTypeInfo>
<ProgramDataBaseFileName>$(OutDir)$(TargetName).pdb</ProgramDataBaseFileName>
<EnableEnhancedInstructionSet>NoExtensions</EnableEnhancedInstructionSet>
<LanguageStandard>stdcpp17</LanguageStandard>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<ForcedIncludeFiles>suppress.h;%(ForcedIncludeFiles)</ForcedIncludeFiles>
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
</Link>
<MASM>
<ObjectFileName>$(IntDir)%(FileName).asm.obj</ObjectFileName>
<UseSafeExceptionHandlers>true</UseSafeExceptionHandlers>
</MASM>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static_WinXP_Spectre|ARM'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<Optimization>MaxSpeed</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<PreprocessorDefinitions>_ALLOW_ITERATOR_DEBUG_LEVEL_MISMATCH;_DISABLE_DEPRECATE_LTL_MESSAGE;_CRT_SECURE_NO_WARNINGS;__Build_LTL;_CRTBLD;_MBCS;_CRT_DECLARE_GLOBAL_VARIABLES_DIRECTLY;_VCRT_ALLOW_INTERNALS;_NO__LTL_Initialization;_ATL_XP_TARGETING;WIN32;NDEBUG;_LIB;_CORECRT_BUILD;_CTIME_;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<WholeProgramOptimization>false</WholeProgramOptimization>
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
<RuntimeTypeInfo>false</RuntimeTypeInfo>
<ProgramDataBaseFileName>$(OutDir)$(TargetName).pdb</ProgramDataBaseFileName>
<LanguageStandard>stdcpp17</LanguageStandard>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<ForcedIncludeFiles>suppress.h;%(ForcedIncludeFiles)</ForcedIncludeFiles>
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static_WinXP_Spectre|ARM64'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<Optimization>MaxSpeed</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<PreprocessorDefinitions>_ALLOW_ITERATOR_DEBUG_LEVEL_MISMATCH;_DISABLE_DEPRECATE_LTL_MESSAGE;_CRT_SECURE_NO_WARNINGS;__Build_LTL;_CRTBLD;_MBCS;_CRT_DECLARE_GLOBAL_VARIABLES_DIRECTLY;_VCRT_ALLOW_INTERNALS;_NO__LTL_Initialization;_ATL_XP_TARGETING;NDEBUG;_LIB;_CORECRT_BUILD;_CTIME_;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<WholeProgramOptimization>false</WholeProgramOptimization>
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
<RuntimeTypeInfo>false</RuntimeTypeInfo>
<ProgramDataBaseFileName>$(OutDir)$(TargetName).pdb</ProgramDataBaseFileName>
<LanguageStandard>stdcpp17</LanguageStandard>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<ForcedIncludeFiles>suppress.h;%(ForcedIncludeFiles)</ForcedIncludeFiles>
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static|x64'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<Optimization>MaxSpeed</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<PreprocessorDefinitions>_ALLOW_ITERATOR_DEBUG_LEVEL_MISMATCH;_DISABLE_DEPRECATE_LTL_MESSAGE;_CRT_BEST_PRACTICES_USAGE;_CRT_SECURE_NO_WARNINGS;__Build_LTL;_CRTBLD;_MBCS;_CRT_DECLARE_GLOBAL_VARIABLES_DIRECTLY;_VCRT_ALLOW_INTERNALS;_NO__LTL_Initialization;NDEBUG;_LIB;_CORECRT_BUILD;_CTIME_;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<WholeProgramOptimization>false</WholeProgramOptimization>
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
<RuntimeTypeInfo>false</RuntimeTypeInfo>
<ProgramDataBaseFileName>$(OutDir)$(TargetName).pdb</ProgramDataBaseFileName>
<LanguageStandard>stdcpp17</LanguageStandard>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<ForcedIncludeFiles>suppress.h;%(ForcedIncludeFiles)</ForcedIncludeFiles>
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
</Link>
<MASM>
<ObjectFileName>$(IntDir)%(FileName).asm.obj</ObjectFileName>
</MASM>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Dynamic|x64'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<Optimization>MaxSpeed</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<PreprocessorDefinitions>_ALLOW_ITERATOR_DEBUG_LEVEL_MISMATCH;CRTDLL;_LTL_Using_Dynamic_Lib;__Bulib_Dynamic_Lib;_DISABLE_DEPRECATE_LTL_MESSAGE;_CRT_SECURE_NO_WARNINGS;__Build_LTL;_CRTBLD;_MBCS;_CRT_DECLARE_GLOBAL_VARIABLES_DIRECTLY;_VCRT_ALLOW_INTERNALS;_NO__LTL_Initialization;NDEBUG;_LIB;_CORECRT_BUILD;_CTIME_;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<WholeProgramOptimization>false</WholeProgramOptimization>
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
<RuntimeTypeInfo>false</RuntimeTypeInfo>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<ForcedIncludeFiles>suppress.h;%(ForcedIncludeFiles)</ForcedIncludeFiles>
<LanguageStandard>stdcpp17</LanguageStandard>
<ProgramDataBaseFileName>$(OutDir)$(TargetName).pdb</ProgramDataBaseFileName>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
<ProgramDatabaseFile>$(OutDir)ltl.pdb</ProgramDatabaseFile>
<IgnoreSpecificDefaultLibraries>ltl.lib;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
<ImportLibrary>$(OutDir)ltl.lib</ImportLibrary>
</Link>
<MASM>
<ObjectFileName>$(IntDir)%(FileName).asm.obj</ObjectFileName>
</MASM>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Dynamic_Spectre|x64'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<Optimization>MaxSpeed</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<PreprocessorDefinitions>_ALLOW_ITERATOR_DEBUG_LEVEL_MISMATCH;CRTDLL;_LTL_Using_Dynamic_Lib;__Bulib_Dynamic_Lib;_DISABLE_DEPRECATE_LTL_MESSAGE;_CRT_SECURE_NO_WARNINGS;__Build_LTL;_CRTBLD;_MBCS;_CRT_DECLARE_GLOBAL_VARIABLES_DIRECTLY;_VCRT_ALLOW_INTERNALS;_NO__LTL_Initialization;NDEBUG;_LIB;_CORECRT_BUILD;_CTIME_;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<WholeProgramOptimization>false</WholeProgramOptimization>
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
<RuntimeTypeInfo>false</RuntimeTypeInfo>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<ForcedIncludeFiles>suppress.h;%(ForcedIncludeFiles)</ForcedIncludeFiles>
<LanguageStandard>stdcpp17</LanguageStandard>
<ProgramDataBaseFileName>$(OutDir)$(TargetName).pdb</ProgramDataBaseFileName>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
<ProgramDatabaseFile>$(OutDir)ltl.pdb</ProgramDatabaseFile>
<IgnoreSpecificDefaultLibraries>ltl.lib;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
<ImportLibrary>$(OutDir)ltl.lib</ImportLibrary>
</Link>
<MASM>
<ObjectFileName>$(IntDir)%(FileName).asm.obj</ObjectFileName>
</MASM>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static_Spectre|x64'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<Optimization>MaxSpeed</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<PreprocessorDefinitions>_ALLOW_ITERATOR_DEBUG_LEVEL_MISMATCH;_DISABLE_DEPRECATE_LTL_MESSAGE;_CRT_SECURE_NO_WARNINGS;__Build_LTL;_CRTBLD;_MBCS;_CRT_DECLARE_GLOBAL_VARIABLES_DIRECTLY;_VCRT_ALLOW_INTERNALS;_NO__LTL_Initialization;NDEBUG;_LIB;_CORECRT_BUILD;_CTIME_;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<WholeProgramOptimization>false</WholeProgramOptimization>
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
<RuntimeTypeInfo>false</RuntimeTypeInfo>
<ProgramDataBaseFileName>$(OutDir)$(TargetName).pdb</ProgramDataBaseFileName>
<LanguageStandard>stdcpp17</LanguageStandard>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<ForcedIncludeFiles>suppress.h;%(ForcedIncludeFiles)</ForcedIncludeFiles>
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
</Link>
<MASM>
<ObjectFileName>$(IntDir)%(FileName).asm.obj</ObjectFileName>
</MASM>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static_WinXP|x64'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<Optimization>MaxSpeed</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<PreprocessorDefinitions>_ALLOW_ITERATOR_DEBUG_LEVEL_MISMATCH;_DISABLE_DEPRECATE_LTL_MESSAGE;_CRT_SECURE_NO_WARNINGS;__Build_LTL;_CRTBLD;_MBCS;_CRT_DECLARE_GLOBAL_VARIABLES_DIRECTLY;_VCRT_ALLOW_INTERNALS;_NO__LTL_Initialization;_ATL_XP_TARGETING;NDEBUG;_LIB;_CORECRT_BUILD;_CTIME_;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<WholeProgramOptimization>false</WholeProgramOptimization>
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
<RuntimeTypeInfo>false</RuntimeTypeInfo>
<ProgramDataBaseFileName>$(OutDir)$(TargetName).pdb</ProgramDataBaseFileName>
<LanguageStandard>stdcpp17</LanguageStandard>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<ForcedIncludeFiles>suppress.h;%(ForcedIncludeFiles)</ForcedIncludeFiles>
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
</Link>
<MASM>
<ObjectFileName>$(IntDir)%(FileName).asm.obj</ObjectFileName>
</MASM>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static_WinXP_Spectre|x64'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<Optimization>MaxSpeed</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<PreprocessorDefinitions>_ALLOW_ITERATOR_DEBUG_LEVEL_MISMATCH;_DISABLE_DEPRECATE_LTL_MESSAGE;_CRT_SECURE_NO_WARNINGS;__Build_LTL;_CRTBLD;_MBCS;_CRT_DECLARE_GLOBAL_VARIABLES_DIRECTLY;_VCRT_ALLOW_INTERNALS;_NO__LTL_Initialization;_ATL_XP_TARGETING;NDEBUG;_LIB;_CORECRT_BUILD;_CTIME_;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<WholeProgramOptimization>false</WholeProgramOptimization>
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
<RuntimeTypeInfo>false</RuntimeTypeInfo>
<ProgramDataBaseFileName>$(OutDir)$(TargetName).pdb</ProgramDataBaseFileName>
<LanguageStandard>stdcpp17</LanguageStandard>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<ForcedIncludeFiles>suppress.h;%(ForcedIncludeFiles)</ForcedIncludeFiles>
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
</Link>
<MASM>
<ObjectFileName>$(IntDir)%(FileName).asm.obj</ObjectFileName>
</MASM>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="..\..\..\ftol2_downlevel.cpp">
<ExcludedFromBuild Condition="'$(Platform)'!='Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(SupportWinXP)'!='true'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\arm64\gshandlereh.c">
<ExcludedFromBuild Condition="'$(Platform)'!='ARM64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\arm\gshandlereh.c">
<ExcludedFromBuild Condition="'$(Platform)'!='ARM'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\i386\chandler4.c">
<ExcludedFromBuild Condition="'$(Platform)'!='Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(SupportWinXP)'!='true'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\i386\ehprolg2.c">
<ExcludedFromBuild Condition="'$(Platform)'!='Win32'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\i386\ehprolg3.c">
<ExcludedFromBuild Condition="'$(Platform)'!='Win32'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\i386\ehprolg3a.c">
<ExcludedFromBuild Condition="'$(Platform)'!='Win32'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\vcruntime\argv_mode.cpp" />
<ClCompile Include="..\..\vcruntime\checkcfg.c" />
<ClCompile Include="..\..\vcruntime\commit_mode.cpp" />
<ClCompile Include="..\..\vcruntime\default_precision.cpp">
<ExcludedFromBuild Condition="'$(Platform)'!='Win32'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\vcruntime\denormal_control.cpp" />
<ClCompile Include="..\..\vcruntime\dll_dllmain.cpp" />
<ClCompile Include="..\..\vcruntime\dll_dllmain_stub.cpp" />
<ClCompile Include="..\..\vcruntime\dyn_tls_init.c" />
<ClCompile Include="..\..\vcruntime\ehvccctr.cpp" />
<ClCompile Include="..\..\vcruntime\ehvcccvb.cpp" />
<ClCompile Include="..\..\vcruntime\ehvecctr.cpp" />
<ClCompile Include="..\..\vcruntime\ehveccvb.cpp" />
<ClCompile Include="..\..\vcruntime\ehvecdtr.cpp" />
<ClCompile Include="..\..\vcruntime\env_mode.cpp" />
<ClCompile Include="..\..\vcruntime\exe_main.cpp">
<RemoveUnreferencedCodeData>false</RemoveUnreferencedCodeData>
</ClCompile>
<ClCompile Include="..\..\vcruntime\exe_winmain.cpp">
<RemoveUnreferencedCodeData>false</RemoveUnreferencedCodeData>
</ClCompile>
<ClCompile Include="..\..\vcruntime\exe_wmain.cpp">
<RemoveUnreferencedCodeData>false</RemoveUnreferencedCodeData>
</ClCompile>
<ClCompile Include="..\..\vcruntime\exe_wwinmain.cpp">
<RemoveUnreferencedCodeData>false</RemoveUnreferencedCodeData>
</ClCompile>
<ClCompile Include="..\..\vcruntime\file_mode.cpp" />
<ClCompile Include="..\..\vcruntime\fltused.cpp" />
<ClCompile Include="..\..\vcruntime\gs_cookie.c" />
<ClCompile Include="..\..\vcruntime\gs_report.c" />
<ClCompile Include="..\..\vcruntime\gs_support.c" />
<ClCompile Include="..\..\vcruntime\guard_support.c" />
<ClCompile Include="..\..\vcruntime\huge.c" />
<ClCompile Include="..\..\vcruntime\initializers.cpp" />
<ClCompile Include="..\..\vcruntime\invalid_parameter_handler.cpp" />
<ClCompile Include="..\..\vcruntime\loadcfg.c" />
<ClCompile Include="..\..\vcruntime\matherr.cpp" />
<ClCompile Include="..\..\vcruntime\matherr_detection.c" />
<ClCompile Include="..\..\vcruntime\mpxinit.c">
<ExcludedFromBuild Condition="('$(Platform)'!='Win32') And('$(Platform)'!='x64') ">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\vcruntime\new_array_nothrow.cpp" />
<ClCompile Include="..\..\vcruntime\new_mode.cpp" />
<ClCompile Include="..\..\vcruntime\new_scalar_nothrow.cpp" />
<ClCompile Include="..\..\vcruntime\pesect.c" />
<ClCompile Include="..\..\..\vc_msvcrt.cpp" />
<ClCompile Include="..\..\vcruntime\std_type_info_static.cpp" />
<ClCompile Include="..\..\vcruntime\thread_locale.cpp" />
<ClCompile Include="..\..\vcruntime\thread_safe_statics.cpp">
<RemoveUnreferencedCodeData>false</RemoveUnreferencedCodeData>
</ClCompile>
<ClCompile Include="..\..\vcruntime\tlsdtor.cpp">
<RemoveUnreferencedCodeData>false</RemoveUnreferencedCodeData>
</ClCompile>
<ClCompile Include="..\..\vcruntime\tlsdyn.cpp">
<RemoveUnreferencedCodeData>false</RemoveUnreferencedCodeData>
</ClCompile>
<ClCompile Include="..\..\vcruntime\tlssup.cpp" />
<ClCompile Include="..\..\vcruntime\tncleanup.cpp" />
<ClCompile Include="..\..\vcruntime\ucrt_detection.c" />
<ClCompile Include="..\..\vcruntime\ucrt_stubs.cpp" />
<ClCompile Include="..\..\vcruntime\delete_array_align.cpp">
<AssemblerListingLocation>$(IntDir)objs\</AssemblerListingLocation>
<ObjectFileName>$(IntDir)objs\</ObjectFileName>
</ClCompile>
<ClCompile Include="..\..\vcruntime\delete_array_align_nothrow.cpp">
<AssemblerListingLocation>$(IntDir)objs\</AssemblerListingLocation>
<ObjectFileName>$(IntDir)objs\</ObjectFileName>
</ClCompile>
<ClCompile Include="..\..\vcruntime\delete_array_size_align.cpp">
<AssemblerListingLocation>$(IntDir)objs\</AssemblerListingLocation>
<ObjectFileName>$(IntDir)objs\</ObjectFileName>
</ClCompile>
<ClCompile Include="..\..\vcruntime\delete_scalar_align.cpp">
<AssemblerListingLocation>$(IntDir)objs\</AssemblerListingLocation>
<ObjectFileName>$(IntDir)objs\</ObjectFileName>
</ClCompile>
<ClCompile Include="..\..\vcruntime\delete_scalar_align_nothrow.cpp">
<AssemblerListingLocation>$(IntDir)objs\</AssemblerListingLocation>
<ObjectFileName>$(IntDir)objs\</ObjectFileName>
</ClCompile>
<ClCompile Include="..\..\vcruntime\delete_scalar_size_align.cpp">
<AssemblerListingLocation>$(IntDir)objs\</AssemblerListingLocation>
<ObjectFileName>$(IntDir)objs\</ObjectFileName>
</ClCompile>
<ClCompile Include="..\..\vcruntime\new_array_align.cpp">
<AssemblerListingLocation>$(IntDir)objs\</AssemblerListingLocation>
<ObjectFileName>$(IntDir)objs\</ObjectFileName>
</ClCompile>
<ClCompile Include="..\..\vcruntime\new_array_align_nothrow.cpp">
<AssemblerListingLocation>$(IntDir)objs\</AssemblerListingLocation>
<ObjectFileName>$(IntDir)objs\</ObjectFileName>
</ClCompile>
<ClCompile Include="..\..\vcruntime\new_scalar_align.cpp">
<AssemblerListingLocation>$(IntDir)objs\</AssemblerListingLocation>
<ObjectFileName>$(IntDir)objs\</ObjectFileName>
</ClCompile>
<ClCompile Include="..\..\vcruntime\new_scalar_align_nothrow.cpp">
<AssemblerListingLocation>$(IntDir)objs\</AssemblerListingLocation>
<ObjectFileName>$(IntDir)objs\</ObjectFileName>
</ClCompile>
<ClCompile Include="..\..\vcruntime\std_nothrow.cpp">
<AssemblerListingLocation>$(IntDir)objs\</AssemblerListingLocation>
<ObjectFileName>$(IntDir)objs\</ObjectFileName>
</ClCompile>
<ClCompile Include="..\..\vcruntime\throw_bad_alloc.cpp">
<AssemblerListingLocation>$(IntDir)objs\</AssemblerListingLocation>
<ObjectFileName>$(IntDir)objs\</ObjectFileName>
</ClCompile>
<ClCompile Include="..\..\vcruntime\utility.cpp" />
<ClCompile Include="..\..\vcruntime\utility_desktop.cpp">
<AssemblerListingLocation>$(IntDir)objs\</AssemblerListingLocation>
<ObjectFileName>$(IntDir)objs\</ObjectFileName>
</ClCompile>
<ClCompile Include="..\..\vcruntime\vcruntime_stubs.cpp" />
<ClCompile Include="..\..\x64\gshandlereh.c">
<ExcludedFromBuild Condition="'$(Platform)'!='x64'">true</ExcludedFromBuild>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="ltlbuild.rc">
<ExcludedFromBuild Condition="'$(Configuration)'!='Redist'">true</ExcludedFromBuild>
</ResourceCompile>
</ItemGroup>
<ItemGroup>
<MASM Include="..\..\..\amd64\exception.asm">
<ExcludedFromBuild Condition="'$(Platform)'!='x64'">true</ExcludedFromBuild>
</MASM>
<CustomBuild Include="..\..\..\arm64\exception.asm">
<FileType>Document</FileType>
<Command>armasm64 -o "$(IntDir)%(fileName).asm.obj" "%(FullPath)"</Command>
<Outputs>$(IntDir)%(fileName).asm.obj</Outputs>
<ExcludedFromBuild Condition="'$(Platform)'!='ARM64'">true</ExcludedFromBuild>
</CustomBuild>
<CustomBuild Include="..\..\..\arm\exception.asm">
<FileType>Document</FileType>
<Command>armasm -o "$(IntDir)%(fileName).asm.obj" "%(FullPath)"</Command>
<Outputs>$(IntDir)%(fileName).asm.obj</Outputs>
<ExcludedFromBuild Condition="'$(Platform)'!='ARM'">true</ExcludedFromBuild>
</CustomBuild>
<MASM Include="..\..\..\i386\exception.asm">
<ExcludedFromBuild Condition="'$(Platform)'!='Win32'">true</ExcludedFromBuild>
</MASM>
<MASM Include="..\..\i386\dllsupp.asm">
<ExcludedFromBuild Condition="'$(Platform)'!='Win32'">true</ExcludedFromBuild>
</MASM>
<MASM Include="..\..\i386\ehprolog.asm">
<ExcludedFromBuild Condition="'$(Platform)'!='Win32'">true</ExcludedFromBuild>
</MASM>
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
<Import Project="$(VCTargetsPath)\BuildCustomizations\masm.targets" />
</ImportGroup>
</Project>
``` | /content/code_sandbox/src/14.14.26428/Build/ltlbuild/ltlbuild.vcxproj | xml | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 21,819 |
```xml
/// <reference path="../localtypings/pxtarget.d.ts"/>
/// <reference path="../localtypings/pxtpackage.d.ts"/>
namespace ts.pxtc {
export const assert = Util.assert;
export const oops = Util.oops;
export import U = pxtc.Util;
export const ON_START_TYPE = "pxt-on-start";
export const ON_START_COMMENT = "on start"; // TODO: Localize? (adding lf doesn't work because this is run before translations are downloaded)
export const HANDLER_COMMENT = "code goes here"; // TODO: Localize? (adding lf doesn't work because this is run before translations are downloaded)
export const TS_STATEMENT_TYPE = "typescript_statement";
export const TS_DEBUGGER_TYPE = "debugger_keyword";
export const TS_BREAK_TYPE = "break_keyword";
export const TS_CONTINUE_TYPE = "continue_keyword";
export const TS_OUTPUT_TYPE = "typescript_expression";
export const TS_RETURN_STATEMENT_TYPE = "function_return";
export const PAUSE_UNTIL_TYPE = "pxt_pause_until";
export const COLLAPSED_BLOCK = "pxt_collapsed_block"
export const FUNCTION_DEFINITION_TYPE = "function_definition";
export const BINARY_JS = "binary.js";
export const BINARY_ASM = "binary.asm";
export const BINARY_HEX = "binary.hex";
export const BINARY_UF2 = "binary.uf2";
export const BINARY_ELF = "binary.elf";
export const BINARY_PXT64 = "binary.pxt64";
export const BINARY_ESP = "binary.bin";
export const BINARY_SRCMAP = "binary.srcmap";
export const NATIVE_TYPE_THUMB = "thumb";
export const NATIVE_TYPE_VM = "vm";
export interface BlocksInfo {
apis: ApisInfo;
blocks: SymbolInfo[];
blocksById: pxt.Map<SymbolInfo>;
enumsByName: pxt.Map<EnumInfo>;
kindsByName: pxt.Map<KindInfo>;
}
export interface EnumInfo {
name: string;
memberName: string;
blockId: string;
isBitMask: boolean;
isHash: boolean;
firstValue?: number;
initialMembers: string[];
promptHint: string;
}
export interface KindInfo {
name: string;
memberName: string;
createFunctionName: string;
blockId: string;
promptHint: string;
initialMembers: string[];
}
export interface CompletionEntry {
name: string;
kind: string;
qualifiedName: string;
}
export interface CompletionInfo {
entries: SymbolInfo[];
isMemberCompletion: boolean;
isNewIdentifierLocation: boolean;
isTypeLocation: boolean;
namespace: string[];
}
export interface LocationInfo {
fileName: string;
start: number;
length: number;
//derived
line?: number;
column?: number;
endLine?: number;
endColumn?: number;
}
export interface FunctionLocationInfo extends LocationInfo {
functionName: string;
argumentNames?: string[];
}
export interface KsDiagnostic extends LocationInfo {
code: number;
category: DiagnosticCategory;
messageText: string | DiagnosticMessageChain;
}
export interface ConfigEntry {
name: string;
key: number;
value: number;
}
export type CodeLang = "py" | "blocks" | "ts"
export type PosSpan = {
startPos: number;
endPos: number;
}
export interface SourceInterval {
ts: PosSpan;
py: PosSpan;
}
export type LineColToPos = (line: number, col: number) => number
export type PosToLineCol = (pos: number) => [number, number]
export interface SourceMapHelpers {
ts: {
posToLineCol: PosToLineCol,
lineColToPos: LineColToPos,
allOverlaps: (i: PosSpan) => SourceInterval[],
smallestOverlap: (i: PosSpan) => SourceInterval | undefined
locToLoc: (thisLoc: pxtc.LocationInfo) => pxtc.LocationInfo,
getText: (i: PosSpan) => string,
},
py: {
posToLineCol: PosToLineCol,
lineColToPos: LineColToPos,
allOverlaps: (i: PosSpan) => SourceInterval[],
smallestOverlap: (i: PosSpan) => SourceInterval | undefined,
locToLoc: (thisLoc: pxtc.LocationInfo) => pxtc.LocationInfo,
getText: (i: PosSpan) => string,
},
}
export function BuildSourceMapHelpers(sourceMap: SourceInterval[], tsFile: string, pyFile: string): SourceMapHelpers {
// Notes:
// lines are 0-indexed (Monaco they are 1-indexed)
// columns are 0-indexed (0th is first character)
// positions are 0-indexed, as if getting the index of a character in a file as a giant string (incl. new lines)
// line summation is the length of that line plus its newline plus all the lines before it; aka the position of the next line's first character
// end positions are zero-index but not inclusive, same behavior as substring
const makeLineColPosConverters = (file: string): { posToLineCol: PosToLineCol, lineColToPos: LineColToPos } => {
const lines = file.split("\n")
const lineLengths = lines
.map(l => l.length)
const lineLenSums = lineLengths
.reduce(({ lens, sum }, n) =>
({ lens: [...lens, sum + n + 1], sum: sum + n + 1 }),
{ lens: [] as number[], sum: 0 })
.lens
const lineColToPos = (line: number, col: number) => {
let pos = (lineLenSums[line - 1] || 0) + col
return pos
}
const posToLineCol = (pos: number) => {
const line = lineLenSums
.reduce((curr, nextLen, i) => pos < nextLen ? curr : i + 1, 0)
const col = lineLengths[line] - (lineLenSums[line] - pos) + 1
return [line, col] as [number, number]
}
return { posToLineCol, lineColToPos }
}
const lcp = {
ts: makeLineColPosConverters(tsFile),
py: makeLineColPosConverters(pyFile)
}
const intLen = (i: PosSpan) => i.endPos - i.startPos
const allOverlaps = (i: PosSpan, lang: "ts" | "py") => {
const { startPos, endPos } = i
return sourceMap
.filter(i => {
// O(n), can we and should we do better?
return i[lang].startPos <= startPos && endPos <= i[lang].endPos
})
}
const smallestOverlap = (i: PosSpan, lang: "ts" | "py"): SourceInterval | undefined => {
const overlaps = allOverlaps(i, lang)
return overlaps.reduce((p, n) => intLen(n[lang]) < intLen(p[lang]) ? n : p, overlaps[0])
}
const os = {
ts: {
allOverlaps: (i: PosSpan) => allOverlaps(i, "ts"),
smallestOverlap: (i: PosSpan) => smallestOverlap(i, "ts"),
},
py: {
allOverlaps: (i: PosSpan) => allOverlaps(i, "py"),
smallestOverlap: (i: PosSpan) => smallestOverlap(i, "py"),
}
}
const makeLocToLoc = (inLang: "ts" | "py", outLang: "ts" | "py") => {
const inLocToPosAndLen = (inLoc: pxtc.LocationInfo) => [lcp[inLang].lineColToPos(inLoc.line, inLoc.column), inLoc.length] as [number, number]
const locToLoc = (inLoc: pxtc.LocationInfo): pxtc.LocationInfo | undefined => {
const [inStartPos, inLen] = inLocToPosAndLen(inLoc)
const inEndPos = inStartPos + inLen
const bestOverlap = smallestOverlap({ startPos: inStartPos, endPos: inEndPos }, inLang)
if (!bestOverlap)
return undefined
const [outStartLine, outStartCol] = lcp[outLang].posToLineCol(bestOverlap[outLang].startPos)
const outLoc = {
fileName: `main.${outLang}`,
start: bestOverlap[outLang].startPos,
length: intLen(bestOverlap[outLang]),
line: outStartLine,
column: outStartCol
}
return outLoc
}
return locToLoc
}
const tsLocToPyLoc = makeLocToLoc("ts", "py")
const pyLocToTsLoc = makeLocToLoc("py", "ts")
const tsGetText = (i: PosSpan) => tsFile.substring(i.startPos, i.endPos)
const pyGetText = (i: PosSpan) => pyFile.substring(i.startPos, i.endPos)
return {
ts: {
...lcp.ts,
...os.ts,
locToLoc: tsLocToPyLoc,
getText: tsGetText
},
py: {
...lcp.py,
...os.py,
locToLoc: pyLocToTsLoc,
getText: pyGetText
},
}
}
export interface CompileResult {
outfiles: pxt.Map<string>;
diagnostics: KsDiagnostic[];
success: boolean;
times: pxt.Map<number>;
//ast?: Program; // Not needed, moved to pxtcompiler
breakpoints?: Breakpoint[];
procCallLocations?: pxtc.LocationInfo[];
procDebugInfo?: ProcDebugInfo[];
blocksInfo?: BlocksInfo;
blockSourceMap?: pxt.blocks.BlockSourceInterval[]; // mappings id,start,end
usedSymbols?: pxt.Map<SymbolInfo>; // q-names of symbols used
usedArguments?: pxt.Map<string[]>;
usedParts?: string[];
needsFullRecompile?: boolean;
// client options
saveOnly?: boolean;
userContextWindow?: Window;
downloadFileBaseName?: string;
headerId?: string;
confirmAsync?: (confirmOptions: {}) => Promise<number>;
configData?: ConfigEntry[];
sourceMap?: SourceInterval[];
globalNames?: pxt.Map<SymbolInfo>;
builtVariants?: string[];
}
export interface Breakpoint extends LocationInfo {
id: number;
isDebuggerStmt: boolean;
binAddr?: number;
}
export interface CellInfo {
name: string;
type: string;
index: number;
}
export interface ProcCallInfo {
procIndex: number;
callLabel: string;
addr: number;
stack: number;
}
export interface ProcDebugInfo {
name: string;
idx: number;
bkptLoc: number;
codeStartLoc: number;
codeEndLoc: number;
locals: CellInfo[];
args: CellInfo[];
localsMark: number;
calls: ProcCallInfo[];
size: number;
}
export const enum BitSize {
None,
Int8,
UInt8,
Int16,
UInt16,
Int32,
UInt32,
}
/* @internal */
const enum TokenKind {
SingleAsterisk = 1,
DoubleAsterisk = 1 << 1,
SingleUnderscore = 1 << 2,
DoubleUnderscore = 1 << 3,
Escape = 1 << 4,
Pipe = 1 << 5,
Parameter = 1 << 6,
Word = 1 << 7,
Image = 1 << 8,
TaggedText = 1 << 9,
ParamRef = 1 << 10,
TripleUnderscore = SingleUnderscore | DoubleUnderscore,
TripleAsterisk = SingleAsterisk | DoubleAsterisk,
StyleMarks = TripleAsterisk | TripleUnderscore,
Bold = DoubleUnderscore | DoubleAsterisk,
Italics = SingleUnderscore | SingleAsterisk,
Unstylable = Parameter | Pipe | ParamRef,
Text = Word | Escape
}
interface Token {
kind: TokenKind;
content?: string;
type?: string;
name?: string;
}
interface Label {
content: string;
styles: number;
endingToken?: string;
}
export function computeUsedParts(resp: CompileResult, filter?: "onlybuiltin" | "ignorebuiltin", force = false): string[] {
if (!resp.usedSymbols || !pxt.appTarget.simulator || (!force && !pxt.appTarget.simulator.parts))
return [];
const parseParts = (partsRaw: string, ps: string[]) => {
if (partsRaw) {
const partsSplit = partsRaw.split(/[ ,]+/g);
ps.push(...partsSplit.filter(p => !!p && ps.indexOf(p) < 0))
}
}
let parts: string[] = [];
let hiddenParts: string[] = [];
Object.keys(resp.usedSymbols).forEach(symbol => {
const info = resp.usedSymbols[symbol]
parseParts(info?.attributes.parts, parts)
parseParts(info?.attributes.hiddenParts, hiddenParts)
});
if (filter) {
const builtinParts = pxt.appTarget.simulator.boardDefinition.onboardComponents;
if (builtinParts) {
if (filter === "ignorebuiltin") {
parts = parts.filter(p => builtinParts.indexOf(p) === -1);
} else if (filter === "onlybuiltin") {
parts = parts.filter(p => builtinParts.indexOf(p) >= 0);
}
}
}
// apply hidden parts filter
parts = parts.filter(p => hiddenParts.indexOf(p) < 0)
//sort parts (so breadboarding layout is stable w.r.t. code ordering)
parts.sort();
parts = parts.reverse(); //not strictly necessary, but it's a little
// nicer for demos to have "ledmatrix"
// before "buttonpair"
return parts;
}
export function buildSimJsInfo(compileResult: pxtc.CompileResult): pxtc.BuiltSimJsInfo {
return {
js: compileResult.outfiles[pxtc.BINARY_JS],
targetVersion: pxt.appTarget.versions.target,
fnArgs: compileResult.usedArguments,
parts: pxtc.computeUsedParts(compileResult, "ignorebuiltin"),
usedBuiltinParts: pxtc.computeUsedParts(compileResult, "onlybuiltin"),
allParts: pxtc.computeUsedParts(compileResult, undefined, true),
breakpoints: compileResult.breakpoints?.map(bp => bp.id),
};
}
/**
* Unlocalized category name for a symbol
*/
export function blocksCategory(si: SymbolInfo): string {
const n = !si ? undefined : (si.attributes.blockNamespace || si.namespace);
return n ? Util.capitalize(n.split('.')[0]) : undefined;
}
export function getBlocksInfo(info: ApisInfo, categoryFilters?: string[]): BlocksInfo {
let blocks: SymbolInfo[] = []
const combinedSet: pxt.Map<SymbolInfo> = {}
const combinedGet: pxt.Map<SymbolInfo> = {}
const combinedChange: pxt.Map<SymbolInfo> = {}
const enumsByName: pxt.Map<EnumInfo> = {};
const kindsByName: pxt.Map<KindInfo> = {};
function addCombined(rtp: string, s: SymbolInfo) {
const isGet = rtp == "get"
const isSet = rtp == "set"
const isNumberType = s.retType == "number"
const m = isGet ? combinedGet : (isSet ? combinedSet : combinedChange)
const mkey = `${s.namespace}.${s.retType}`
let ex = U.lookup(m, mkey)
if (!ex) {
const tp = `@${rtp}@`
let paramNameShadow: string, paramValueShadow: string;
if (s.attributes.blockCombineShadow) {
// allowable %blockCombineShadow strings:-
// '{name shadow},' or '{value shadow}' or ',{value shadow}' or '{name shadow},{value shadow}'
const attribute = s.attributes.blockCombineShadow;
const match = attribute.match(/^([^,.]*),?([^,.]*)$/);
if (match && match.length == 3) {
paramNameShadow = match[1].trim();
paramValueShadow = match[2].trim();
if (paramValueShadow.length == 0 && !Util.endsWith(attribute, ",")) {
paramValueShadow = paramNameShadow;
paramNameShadow = "";
}
}
}
const varName = s.attributes.blockSetVariable || s.namespace.toLocaleLowerCase();
const paramName = `${varName}=${paramNameShadow || ""}`
const paramValue = `value=${paramValueShadow || ""}`;
ex = m[mkey] = {
attributes: {
blockId: `${isNumberType ? s.namespace : mkey}_blockCombine_${rtp}`,
callingConvention: ir.CallingConvention.Plain,
group: s.attributes.group, // first %blockCombine defines
paramDefl: {},
jsDoc: isGet
? U.lf("Read value of a property on an object")
: U.lf("Update value of property on an object")
},
name: tp,
namespace: s.namespace,
fileName: s.fileName,
qName: `${mkey}.${tp}`,
pkg: s.pkg,
kind: SymbolKind.Property,
parameters: [
{
name: "property",
description: isGet ?
U.lf("the name of the property to read") :
U.lf("the name of the property to change"),
isEnum: true,
type: "@combined@"
},
{
name: "value",
description: isSet ?
U.lf("the new value of the property") :
U.lf("the amount by which to change the property"),
type: s.retType,
}
].slice(0, isGet ? 1 : 2),
retType: isGet ? s.retType : "void",
combinedProperties: []
}
ex.attributes.block =
isGet ? U.lf("%{0} %property", paramName) :
isSet ? U.lf("set %{0} %property to %{1}", paramName, paramValue) :
U.lf("change %{0} %property by %{1}", paramName, paramValue)
updateBlockDef(ex.attributes)
if (pxt.Util.isTranslationMode()) {
ex.attributes.translationId = ex.attributes.block;
// This kicks off async work but doesn't wait; give untranslated values to start with
// to avoid a race causing a crash.
ex.attributes.block = isGet ? `%${paramName} %property` :
isSet ? `set %${paramName} %property to %${paramValue}` :
`change %${paramName} %property by %${paramValue}`;
updateBlockDef(ex.attributes);
pxt.crowdin.inContextLoadAsync(ex.attributes.translationId)
.then(r => {
ex.attributes.block = r;
updateBlockDef(ex.attributes);
});
}
blocks.push(ex)
}
ex.combinedProperties.push(s.qName)
}
for (let s of pxtc.Util.values(info.byQName)) {
if (s.attributes.shim === "ENUM_GET" && s.attributes.enumName && s.attributes.blockId) {
let didFail = false;
if (enumsByName[s.attributes.enumName]) {
console.warn(`Enum block ${s.attributes.blockId} trying to overwrite enum ${s.attributes.enumName}`);
didFail = true;
}
if (!s.attributes.enumMemberName) {
console.warn(`Enum block ${s.attributes.blockId} should specify enumMemberName`);
didFail = true;
}
if (!s.attributes.enumPromptHint) {
console.warn(`Enum block ${s.attributes.blockId} should specify enumPromptHint`);
didFail = true;
}
if (!s.attributes.enumInitialMembers || !s.attributes.enumInitialMembers.length) {
console.warn(`Enum block ${s.attributes.blockId} should specify enumInitialMembers`);
didFail = true;
}
if (didFail) {
continue;
}
const firstValue = parseInt(s.attributes.enumStartValue as any);
enumsByName[s.attributes.enumName] = {
blockId: s.attributes.blockId,
name: s.attributes.enumName,
memberName: s.attributes.enumMemberName,
firstValue: isNaN(firstValue) ? undefined : firstValue,
isBitMask: s.attributes.enumIsBitMask,
isHash: s.attributes.enumIsHash,
initialMembers: s.attributes.enumInitialMembers,
promptHint: s.attributes.enumPromptHint
};
}
if (s.attributes.shim === "KIND_GET" && s.attributes.blockId) {
const kindNamespace = s.attributes.kindNamespace || s.attributes.blockNamespace || s.namespace;
if (kindsByName[kindNamespace]) {
console.warn(`More than one block defined for kind ${kindNamespace}`);
continue;
}
const initialMembers: string[] = [];
if (info.byQName[kindNamespace]) {
for (const api of pxtc.Util.values(info.byQName)) {
if (api.namespace === kindNamespace && api.attributes.isKind) {
initialMembers.push(api.name);
}
}
}
kindsByName[kindNamespace] = {
blockId: s.attributes.blockId,
name: kindNamespace,
memberName: s.attributes.kindMemberName || kindNamespace,
initialMembers: initialMembers,
promptHint: s.attributes.enumPromptHint || Util.lf("Create a new kind..."),
createFunctionName: s.attributes.kindCreateFunction || "create"
};
}
if (s.attributes.blockCombine) {
if (!/@set/.test(s.name)) {
addCombined("get", s)
}
if (!s.isReadOnly) {
if (s.retType == 'number') {
addCombined("change", s)
}
addCombined("set", s)
}
} else if (!!s.attributes.block
&& !s.attributes.fixedInstance
&& s.kind != pxtc.SymbolKind.EnumMember
&& s.kind != pxtc.SymbolKind.Module
&& s.kind != pxtc.SymbolKind.Interface
&& s.kind != pxtc.SymbolKind.Class) {
if (!s.attributes.blockId)
s.attributes.blockId = s.qName.replace(/\./g, "_")
if (s.attributes.block == "true") {
let b = U.uncapitalize(s.name)
if (s.kind == SymbolKind.Method || s.kind == SymbolKind.Property) {
b += " %" + s.namespace.toLowerCase()
}
const params = s.parameters?.filter(pr => !parameterTypeIsArrowFunction(pr)) ?? [];
for (let p of params) {
b += " %" + p.name
}
s.attributes.block = b
updateBlockDef(s.attributes)
}
blocks.push(s)
}
}
// derive common block properties from namespace
for (let b of blocks) {
let parent = U.lookup(info.byQName, b.namespace)
if (!parent) continue
let pattr = parent.attributes as any
let battr = b.attributes as any
for (let n of ["blockNamespace", "color", "blockGap"]) {
if (battr[n] === undefined && pattr[n])
battr[n] = pattr[n]
}
}
if (categoryFilters)
filterCategories(categoryFilters);
return {
apis: info,
blocks,
blocksById: pxt.Util.toDictionary(blocks, b => b.attributes.blockId),
enumsByName,
kindsByName
}
function filterCategories(banned: string[]) {
if (banned.length) {
blocks = blocks.filter(b => {
let ns = (b.attributes.blockNamespace || b.namespace).split('.')[0];
return banned.indexOf(ns) === -1;
});
}
}
}
export function tsSnippetToPySnippet(param: string, symbol?: SymbolInfo): string {
const keywords: pxt.Map<string> = {
"true": "True",
"false": "False",
"null": "None"
}
const key = keywords[param];
if (key) {
return key
}
if ((symbol && symbol.kind == SymbolKind.Enum) || (!symbol && param.includes("."))) {
// Python enums are all caps
const dotIdx = param.lastIndexOf(".");
const left = param.substr(0, dotIdx)
let right = param.substr(dotIdx + 1)
right = U.snakify(right).toUpperCase();
if (left) {
return `${left}.${right}`
}
else {
return right;
}
}
return param;
}
export let apiLocalizationStrings: pxt.Map<string> = {};
export async function localizeApisAsync(apis: pxtc.ApisInfo, mainPkg: pxt.MainPackage): Promise<pxtc.ApisInfo> {
const lang = pxtc.Util.userLanguage();
if (lang == "en")
return Promise.resolve(cleanLocalizations(apis));
const langLower = lang.toLowerCase();
const attrJsLocsKey = langLower + "|jsdoc";
const attrBlockLocsKey = langLower + "|block";
const loc = await mainPkg.localizationStringsAsync(lang);
if (apiLocalizationStrings)
Util.jsonMergeFrom(loc, apiLocalizationStrings);
const toLocalize = Util.values(apis.byQName).filter(fn => fn.attributes._translatedLanguageCode !== lang);
await Util.promiseMapAll(toLocalize, async fn => {
const altLocSrc = fn.attributes.useLoc || fn.attributes.blockAliasFor;
const altLocSrcFn = altLocSrc && apis.byQName[altLocSrc];
if (fn.attributes._untranslatedJsDoc) fn.attributes.jsDoc = fn.attributes._untranslatedJsDoc;
if (fn.attributes._untranslatedBlock) fn.attributes.jsDoc = fn.attributes._untranslatedBlock;
const lookupLoc = (locSuff: string, attrKey: string) => {
return loc[fn.qName + locSuff] || fn.attributes.locs?.[attrKey]
|| (altLocSrcFn && (loc[altLocSrcFn.qName + locSuff] || altLocSrcFn.attributes.locs?.[attrKey]));
}
const locJsDoc = lookupLoc("", attrJsLocsKey);
if (locJsDoc) {
if (!fn.attributes._untranslatedJsDoc) {
fn.attributes._untranslatedJsDoc = fn.attributes.jsDoc;
}
fn.attributes.jsDoc = locJsDoc;
}
fn.parameters?.forEach(pi => {
const paramSuff = `|param|${pi.name}`;
const paramLocs = lookupLoc(paramSuff, langLower + paramSuff);
if (paramLocs) {
pi.description = paramLocs;
}
});
const nsDoc = loc['{id:category}' + Util.capitalize(fn.qName)];
let locBlock = loc[`${fn.qName}|block`] || fn.attributes.locs?.[attrBlockLocsKey];
if (!locBlock && altLocSrcFn) {
const otherTranslation = loc[`${altLocSrcFn.qName}|block`] || altLocSrcFn.attributes.locs?.[attrBlockLocsKey];
const isSameBlockDef = fn.attributes.block === (altLocSrcFn.attributes._untranslatedBlock || altLocSrcFn.attributes.block);
if (isSameBlockDef && !!otherTranslation) {
locBlock = otherTranslation;
}
}
if (locBlock && pxt.Util.isTranslationMode()) {
// in translation mode, crowdin sends translation identifiers which break the block parsing
// push identifier in DOM so that crowdin sends back the actual translation
fn.attributes.translationId = locBlock;
locBlock = await pxt.crowdin.inContextLoadAsync(locBlock);
}
if (nsDoc) {
// Check for "friendly namespace"
if (fn.attributes.block) {
fn.attributes.block = locBlock || fn.attributes.block;
} else {
fn.attributes.block = nsDoc;
}
updateBlockDef(fn.attributes);
} else if (fn.attributes.block && locBlock) {
const ps = pxt.blocks.compileInfo(fn);
const oldBlock = fn.attributes.block;
fn.attributes.block = pxt.blocks.normalizeBlock(locBlock, err => {
pxt.tickEvent("loc.normalized", {
block: fn.attributes.block,
lang: lang,
error: err,
});
});
if (!fn.attributes._untranslatedBlock) {
fn.attributes._untranslatedBlock = oldBlock;
}
if (oldBlock != fn.attributes.block) {
updateBlockDef(fn.attributes);
const locps = pxt.blocks.compileInfo(fn);
if (!hasEquivalentParameters(ps, locps)) {
pxt.reportError("loc.errors", "block has non matching arguments", {
block: fn.attributes.blockId,
lang: lang,
originalDefinition: oldBlock,
translatedBlock: fn.attributes.block,
});
pxt.tickEvent("loc.errors", {
block: fn.attributes.blockId,
lang: lang,
});
fn.attributes.block = oldBlock;
updateBlockDef(fn.attributes);
}
}
} else {
updateBlockDef(fn.attributes);
}
fn.attributes._translatedLanguageCode = lang;
});
return cleanLocalizations(apis);
}
function cleanLocalizations(apis: ApisInfo) {
Util.values(apis.byQName)
.filter(fb => fb.attributes.block && /^{[^:]+:[^}]+}/.test(fb.attributes.block))
.forEach(fn => { fn.attributes.block = fn.attributes.block.replace(/^{[^:]+:[^}]+}/, ''); });
return apis;
}
function hasEquivalentParameters(a: pxt.blocks.BlockCompileInfo, b: pxt.blocks.BlockCompileInfo) {
if (a.parameters.length != b.parameters.length) {
pxt.debug(`Localized block has extra or missing parameters`);
return false;
}
for (const aParam of a.parameters) {
const bParam = b.actualNameToParam[aParam.actualName];
if (!bParam
|| aParam.type != bParam.type
|| aParam.shadowBlockId != bParam.shadowBlockId
|| aParam.definitionName != bParam.definitionName) {
pxt.debug(`Parameter ${aParam.actualName} type, shadow block, or definition name does not match after localization`);
return false;
}
}
return true;
}
export function emptyExtInfo(): ExtensionInfo {
let cs = pxt.appTarget.compileService
if (!cs) cs = {} as any
const pio = !!cs.platformioIni;
const docker = cs.buildEngine == "dockermake" || cs.buildEngine == "dockercross" || cs.buildEngine == "dockerespidf";
const r: ExtensionInfo = {
functions: [],
generatedFiles: {},
extensionFiles: {},
sha: "",
compileData: "",
shimsDTS: "",
enumsDTS: "",
onlyPublic: true
}
if (pio) r.platformio = { dependencies: {} };
else if (docker) r.npmDependencies = {};
else r.yotta = { config: {}, dependencies: {} };
return r;
}
const numberAttributes = ["weight", "imageLiteral", "gridLiteral", "topblockWeight", "inlineInputModeLimit"]
const booleanAttributes = [
"advanced",
"handlerStatement",
"afterOnStart",
"optionalVariableArgs",
"blockHidden",
"constantShim",
"blockCombine",
"enumIsBitMask",
"enumIsHash",
"decompileIndirectFixedInstances",
"topblock",
"callInDebugger",
"duplicateShadowOnDrag",
"argsNullable",
"compileHiddenArguments"
];
export function parseCommentString(cmt: string): CommentAttrs {
let res: CommentAttrs = {
paramDefl: {},
callingConvention: ir.CallingConvention.Plain,
_source: cmt
}
let didSomething = true
while (didSomething) {
didSomething = false
cmt = cmt.replace(/\/\/%[ \t]*([\w\.-]+)(=(("[^"\n]*")|'([^'\n]*)'|([^\s]*)))?/,
(f: string, n: string, d0: string, d1: string,
v0: string, v1: string, v2: string) => {
let v = v0 ? JSON.parse(v0) : (d0 ? (v0 || v1 || v2) : "true");
if (!v) v = "";
if (U.startsWith(n, "block.loc.")) {
if (!res.locs) res.locs = {};
res.locs[n.slice("block.loc.".length).toLowerCase() + "|block"] = v;
} else if (U.startsWith(n, "jsdoc.loc.")) {
if (!res.locs) res.locs = {};
res.locs[n.slice("jsdoc.loc.".length).toLowerCase() + "|jsdoc"] = v;
} else if (U.contains(n, ".loc.")) {
if (!res.locs) res.locs = {};
const p = n.slice(0, n.indexOf('.loc.'));
const l = n.slice(n.indexOf('.loc.') + '.loc.'.length);
res.locs[l + "|param|" + p] = v;
} else if (U.endsWith(n, ".defl")) {
if (v.indexOf(" ") > -1) {
res.paramDefl[n.slice(0, n.length - 5)] = `"${v}"`
} else {
res.paramDefl[n.slice(0, n.length - 5)] = v
}
if (!res.explicitDefaults) res.explicitDefaults = []
res.explicitDefaults.push(n.slice(0, n.length - 5))
} else if (U.endsWith(n, ".shadow")) {
if (!res._shadowOverrides) res._shadowOverrides = {};
res._shadowOverrides[n.slice(0, n.length - 7)] = v;
} else if (U.endsWith(n, ".snippet")) {
if (!res.paramSnippets) res.paramSnippets = {};
const paramName = n.slice(0, n.length - 8);
if (!res.paramSnippets[paramName]) res.paramSnippets[paramName] = {};
res.paramSnippets[paramName].ts = v;
} else if (U.endsWith(n, ".pySnippet")) {
if (!res.paramSnippets) res.paramSnippets = {};
const paramName = n.slice(0, n.length - 10);
if (!res.paramSnippets[paramName]) res.paramSnippets[paramName] = {};
res.paramSnippets[paramName].python = v;
} else if (U.endsWith(n, ".fieldEditor")) {
if (!res.paramFieldEditor) res.paramFieldEditor = {}
res.paramFieldEditor[n.slice(0, n.length - 12)] = v
} else if (U.contains(n, ".fieldOptions.")) {
if (!res.paramFieldEditorOptions) res.paramFieldEditorOptions = {}
const field = n.slice(0, n.indexOf('.fieldOptions.'));
const key = n.slice(n.indexOf('.fieldOptions.') + 14, n.length);
if (!res.paramFieldEditorOptions[field]) res.paramFieldEditorOptions[field] = {};
res.paramFieldEditorOptions[field][key] = v
} else if (U.contains(n, ".shadowOptions.")) {
if (!res.paramShadowOptions) res.paramShadowOptions = {}
const field = n.slice(0, n.indexOf('.shadowOptions.'));
const key = n.slice(n.indexOf('.shadowOptions.') + 15, n.length);
if (!res.paramShadowOptions[field]) res.paramShadowOptions[field] = {};
res.paramShadowOptions[field][key] = v
} else if (U.endsWith(n, ".min")) {
if (!res.paramMin) res.paramMin = {}
res.paramMin[n.slice(0, n.length - 4)] = v
} else if (U.endsWith(n, ".max")) {
if (!res.paramMax) res.paramMax = {}
res.paramMax[n.slice(0, n.length - 4)] = v
} else {
(<any>res)[n] = v;
}
didSomething = true
return "//% "
})
}
for (let n of numberAttributes) {
if (typeof (res as any)[n] == "string")
(res as any)[n] = parseInt((res as any)[n])
}
for (let n of booleanAttributes) {
if (typeof (res as any)[n] == "string")
(res as any)[n] = (res as any)[n] == 'true' || (res as any)[n] == '1' ? true : false;
}
if (res.trackArgs) {
res.trackArgs = ((res.trackArgs as any) as string).split(/[ ,]+/).map(s => parseInt(s) || 0)
}
if (res.enumInitialMembers) {
res.enumInitialMembers = ((res.enumInitialMembers as any) as string).split(/[ ,]+/);
}
if (res.blockExternalInputs && !res.inlineInputMode) {
res.inlineInputMode = "external";
}
res.paramHelp = {}
res.jsDoc = ""
cmt = cmt.replace(/\/\*\*([^]*?)\*\//g, (full: string, doccmt: string) => {
doccmt = doccmt.replace(/\n\s*(\*\s*)?/g, "\n")
doccmt = doccmt.replace(/^\s*@param\s+(\w+)\s+(.*)$/mg, (full: string, name: string, desc: string) => {
res.paramHelp[name] = desc
if (!res.paramDefl[name]) {
// these don't add to res.explicitDefaults
let m = /\beg\.?:\s*(.+)/.exec(desc);
if (m && m[1]) {
let defaultValue = /(?:"([^"]*)")|(?:'([^']*)')|(?:([^\s,]+))/g.exec(m[1]);
if (defaultValue) {
let val = defaultValue[1] || defaultValue[2] || defaultValue[3];
if (!val) val = "";
// If there are spaces in the value, it means the value was surrounded with quotes, so add them back
if (val.indexOf(" ") > -1) {
res.paramDefl[name] = `"${val}"`;
}
else {
res.paramDefl[name] = val;
}
}
}
}
return ""
})
res.jsDoc += doccmt
return ""
})
res.jsDoc = res.jsDoc.trim()
if (res.async)
res.callingConvention = ir.CallingConvention.Async
if (res.promise)
res.callingConvention = ir.CallingConvention.Promise
if (res.jres)
res.whenUsed = true
if (res.subcategories) {
try {
res.subcategories = JSON.parse(res.subcategories as any);
}
catch (e) {
res.subcategories = undefined;
}
}
if (res.groups) {
try {
res.groups = JSON.parse(res.groups as any);
}
catch (e) {
res.groups = undefined;
}
}
if (res.groupIcons) {
try {
res.groupIcons = JSON.parse(res.groupIcons as any);
}
catch (e) {
res.groupIcons = undefined;
}
}
if (res.groupHelp) {
try {
res.groupHelp = JSON.parse(res.groupHelp as any);
}
catch (e) {
res.groupHelp = undefined;
}
}
updateBlockDef(res);
return res
}
export function parameterTypeIsArrowFunction(pr: pxtc.ParameterDesc) {
return pr.type === "Action" || /^\([^\)]*\)\s*=>/.test(pr.type);
}
export function updateBlockDef(attrs: CommentAttrs) {
if (attrs.block) {
const parts = attrs.block.split("||");
attrs._def = applyOverrides(parseBlockDefinition(parts[0]));
if (!attrs._def) pxt.debug("Unable to parse block def for id: " + attrs.blockId);
if (parts[1]) attrs._expandedDef = applyOverrides(parseBlockDefinition(parts[1]));
if (parts[1] && !attrs._expandedDef) pxt.debug("Unable to parse expanded block def for id: " + attrs.blockId);
}
function applyOverrides(def: ParsedBlockDef) {
if (attrs._shadowOverrides) {
def.parameters.forEach(p => {
const shadow = attrs._shadowOverrides[p.name];
if (shadow === "unset") delete p.shadowBlockId;
else if (shadow != null) p.shadowBlockId = shadow;
});
}
return def;
}
}
export function parseBlockDefinition(def: string): ParsedBlockDef {
const tokens: Token[] = [];
let currentWord: string;
let strIndex = 0;
for (; strIndex < def.length; strIndex++) {
const char = def[strIndex];
const restoreIndex = strIndex;
let newToken: Token;
switch (char) {
case "*":
case "_":
const tk = eatToken(c => c == char);
const offset = char === "_" ? 2 : 0;
if (tk.length === 1) newToken = { kind: TokenKind.SingleAsterisk << offset, content: tk }
else if (tk.length === 2) newToken = { kind: TokenKind.DoubleAsterisk << offset, content: tk };
else if (tk.length === 3) newToken = { kind: TokenKind.TripleAsterisk << offset, content: tk };
else strIndex = restoreIndex; // error: no more than three style marks
break;
case "`":
const image = eatEnclosure("`");
if (image === undefined) {
strIndex = restoreIndex; // error: not terminated
break;
}
newToken = { kind: TokenKind.Image, content: image };
break;
case "|":
newToken = { kind: TokenKind.Pipe };
break;
case "\\":
if (strIndex < (def.length - 1)) newToken = { kind: TokenKind.Escape, content: def[1 + (strIndex++)] };
break;
case "[":
const contentText = eatEnclosure("]");
if (contentText !== undefined && def[strIndex++ + 1] === "(") {
const contentClass = eatEnclosure(")");
if (contentClass !== undefined) {
newToken = { kind: TokenKind.TaggedText, content: contentText, type: contentClass };
break;
}
}
strIndex = restoreIndex; // error: format should be [text](class)
break;
case "$":
case "%":
const param = eatToken(c => /[a-zA-Z0-9_=]/.test(c), true).split("=");
if (param.length > 2) {
strIndex = restoreIndex; // error: too many equals signs
break;
}
let varName: string;
if (def[strIndex + 1] === "(") {
const oldIndex = strIndex;
++strIndex;
varName = eatEnclosure(")");
if (!varName) strIndex = oldIndex;
}
newToken = { kind: (char === "$") ? TokenKind.ParamRef : TokenKind.Parameter, content: param[0], type: param[1], name: varName };
break;
}
if (newToken) {
if (currentWord)
tokens.push({ kind: TokenKind.Word, content: currentWord });
currentWord = undefined;
tokens.push(newToken);
}
else if (!currentWord) {
currentWord = char;
}
else {
currentWord += char;
}
}
if (currentWord)
tokens.push({ kind: TokenKind.Word, content: currentWord });
const parts: BlockPart[] = [];
const parameters: BlockParameter[] = [];
let stack: TokenKind[] = [];
let open = 0;
let currentLabel = ""
let labelStack: (Label | BlockPart)[] = [];
for (let i = 0; i < tokens.length; i++) {
const token = tokens[i].kind;
const top = stack[stack.length - 1];
if (token & TokenKind.StyleMarks) {
pushCurrentLabel(tokens[i].content);
if (token & open) {
if (top & token) {
stack.pop();
open ^= token;
// Handle triple tokens
const remainder = (top & open) | (token & open);
if (remainder) {
stack.push(remainder);
}
}
else {
// We encountered a mismatched mark, so clear previous styles
collapseLabels();
}
}
else {
open |= token;
stack.push(token);
}
}
else if (token & TokenKind.Text) {
currentLabel += tokens[i].content;
}
else if (token & TokenKind.Unstylable) {
pushLabels();
}
if (token == TokenKind.Parameter) {
const param: BlockParameter = { kind: "param", name: tokens[i].content, shadowBlockId: tokens[i].type, ref: false };
if (tokens[i].name) param.varName = tokens[i].name;
parts.push(param);
parameters.push(param);
}
else if (token == TokenKind.ParamRef) {
const param: BlockParameter = { kind: "param", name: tokens[i].content, shadowBlockId: tokens[i].type, ref: true };
if (tokens[i].name) param.varName = tokens[i].name;
parts.push(param);
parameters.push(param);
}
else if (token == TokenKind.Image) {
pushCurrentLabel();
labelStack.push({ kind: "image", uri: tokens[i].content } as BlockImage);
}
else if (token == TokenKind.TaggedText) {
pushCurrentLabel();
labelStack.push({ kind: "label", text: tokens[i].content, cssClass: tokens[i].type } as BlockLabel)
}
else if (token == TokenKind.Pipe) {
parts.push({ kind: "break" });
}
}
pushLabels();
return { parts, parameters };
function eatToken(pred: (c: string) => boolean, skipCurrent = false) {
let current = "";
if (skipCurrent) strIndex++
while (strIndex < def.length && pred(def[strIndex])) {
current += def[strIndex];
++strIndex;
}
if (current) strIndex--;
return current;
}
function eatEnclosure(endMark: string) {
const content = eatToken(c => c !== endMark, true);
if (def[strIndex + 1] !== endMark) return undefined;
++strIndex;
return content;
}
function collapseLabels() {
let combined = "";
let newStack: (Label | BlockPart)[] = [];
for (const item of labelStack) {
if (isBlockPart(item)) {
newStack.push({
content: combined,
styles: 0
});
newStack.push(item);
combined = "";
}
else {
combined += item.content;
if (item.endingToken) {
combined += item.endingToken;
}
}
}
labelStack = newStack;
if (combined) {
labelStack.push({
content: combined,
styles: 0
});
}
// Clear the style state as well
stack = [];
open = 0;
}
function pushLabels() {
pushCurrentLabel();
if (open) {
collapseLabels();
}
while (labelStack.length) {
const label = labelStack.shift();
if (isBlockPart(label)) {
parts.push(label);
}
else {
if (!label.content) continue;
const styles: string[] = [];
if (label.styles & TokenKind.Bold) styles.push("bold");
if (label.styles & TokenKind.Italics) styles.push("italics");
parts.push({ kind: "label", text: label.content, style: styles } as BlockLabel);
}
}
}
function pushCurrentLabel(endingToken?: string) {
labelStack.push({
content: currentLabel,
styles: open,
endingToken
});
currentLabel = "";
}
}
function isBlockPart(p: Label | BlockPart): p is BlockPart {
return !!((p as BlockPart).kind);
}
export interface ChecksumBlock {
magic: number;
endMarkerPos: number;
endMarker: number;
regions: { start: number; length: number; checksum: number; }[];
}
export function parseChecksumBlock(buf: ArrayLike<number>, pos = 0): ChecksumBlock {
let magic = pxt.HF2.read32(buf, pos)
if ((magic & 0x7fffffff) != 0x07eeb07c) {
pxt.log("no checksum block magic")
return null
}
let endMarkerPos = pxt.HF2.read32(buf, pos + 4)
let endMarker = pxt.HF2.read32(buf, pos + 8)
if (endMarkerPos & 3) {
pxt.log("invalid end marker position")
return null
}
let pageSize = 1 << (endMarker & 0xff)
if (pageSize != pxt.appTarget.compile.flashCodeAlign) {
pxt.log("invalid page size: " + pageSize)
return null
}
let blk: ChecksumBlock = {
magic,
endMarkerPos,
endMarker,
regions: []
}
for (let i = pos + 12; i < buf.length - 7; i += 8) {
let r = {
start: pageSize * pxt.HF2.read16(buf, i),
length: pageSize * pxt.HF2.read16(buf, i + 2),
checksum: pxt.HF2.read32(buf, i + 4)
}
if (r.length && r.checksum) {
blk.regions.push(r)
} else {
break
}
}
//console.log(hexDump(buf), blk)
return blk
}
export namespace UF2 {
export const UF2_MAGIC_START0 = 0x0A324655; // "UF2\n"
export const UF2_MAGIC_START1 = 0x9E5D5157; // Randomly selected
export const UF2_MAGIC_END = 0x0AB16F30; // Ditto
export const UF2_FLAG_NONE = 0x00000000
export const UF2_FLAG_NOFLASH = 0x00000001
export const UF2_FLAG_FILE = 0x00001000
export const UF2_FLAG_FAMILY_ID_PRESENT = 0x00002000
export interface Block {
flags: number;
targetAddr: number;
payloadSize: number;
blockNo: number;
numBlocks: number;
fileSize: number;
familyId: number;
filename?: string;
data: Uint8Array;
}
export function parseBlock(block: Uint8Array): Block {
let wordAt = (k: number) => {
return (block[k] + (block[k + 1] << 8) + (block[k + 2] << 16) + (block[k + 3] << 24)) >>> 0
}
if (!block || block.length != 512 ||
wordAt(0) != UF2_MAGIC_START0 || wordAt(4) != UF2_MAGIC_START1 ||
wordAt(block.length - 4) != UF2_MAGIC_END)
return null
let flags = wordAt(8)
let payloadSize = wordAt(16)
if (payloadSize > 476)
payloadSize = 256
let filename: string = null
let familyId = 0
let fileSize = 0
if (flags & UF2_FLAG_FILE) {
let fnbuf = block.slice(32 + payloadSize)
let len = fnbuf.indexOf(0)
if (len >= 0) {
fnbuf = fnbuf.slice(0, len)
}
filename = U.fromUTF8Array(fnbuf);
fileSize = wordAt(28)
}
if (flags & UF2_FLAG_FAMILY_ID_PRESENT) {
familyId = wordAt(28)
}
return {
flags,
targetAddr: wordAt(12),
payloadSize,
blockNo: wordAt(20),
numBlocks: wordAt(24),
fileSize,
familyId,
data: block.slice(32, 32 + payloadSize),
filename
}
}
export function parseFile(blocks: Uint8Array) {
let r: Block[] = []
for (let i = 0; i < blocks.length; i += 512) {
let b = parseBlock(blocks.slice(i, i + 512))
if (b) r.push(b)
}
return r
}
export interface ShiftedBuffer {
start: number;
buf: Uint8Array;
}
export function toBin(blocks: Uint8Array, endAddr: number = undefined): ShiftedBuffer {
if (blocks.length < 512)
return null
let curraddr = -1
let appstartaddr = -1
let bufs: Uint8Array[] = []
for (let i = 0; i < blocks.length; ++i) {
let ptr = i * 512
let bl = parseBlock(blocks.slice(ptr, ptr + 512))
if (!bl) continue
if (endAddr && bl.targetAddr + 256 > endAddr) break;
if (curraddr == -1) {
curraddr = bl.targetAddr
appstartaddr = curraddr
}
let padding = bl.targetAddr - curraddr
if (padding < 0 || padding % 4 || padding > 1024 * 1024)
continue
if (padding > 0)
bufs.push(new Uint8Array(padding))
bufs.push(blocks.slice(ptr + 32, ptr + 32 + bl.payloadSize))
curraddr = bl.targetAddr + bl.payloadSize
}
let len = 0
for (let b of bufs) len += b.length
if (len == 0)
return null
let r = new Uint8Array(len)
let dst = 0
for (let b of bufs) {
for (let i = 0; i < b.length; ++i)
r[dst++] = b[i]
}
return {
buf: r,
start: appstartaddr,
}
}
function hasAddr(b: Block, a: number) {
if (!b) return false
return b.targetAddr <= a && a < b.targetAddr + b.payloadSize
}
export function readBytes(blocks: Block[], addr: number, length: number) {
let res = new Uint8Array(length)
let bl: Block
for (let i = 0; i < length; ++i, ++addr) {
if (!hasAddr(bl, addr))
bl = blocks.filter(b => hasAddr(b, addr))[0]
if (bl)
res[i] = bl.data[addr - bl.targetAddr]
}
return res
}
function setWord(block: Uint8Array, ptr: number, v: number) {
block[ptr] = (v & 0xff)
block[ptr + 1] = ((v >> 8) & 0xff)
block[ptr + 2] = ((v >> 16) & 0xff)
block[ptr + 3] = ((v >> 24) & 0xff)
}
export interface BlockFile {
currBlock: Uint8Array;
currPtr: number;
blocks: Uint8Array[];
ptrs: number[];
filename?: string;
filesize: number;
familyId: number;
}
export function newBlockFile(familyId?: string | number): BlockFile {
if (typeof familyId == "string")
familyId = parseInt(familyId)
return {
currBlock: null,
currPtr: -1,
blocks: [],
ptrs: [],
filesize: 0,
familyId: familyId || 0
}
}
export function finalizeFile(f: BlockFile) {
for (let i = 0; i < f.blocks.length; ++i) {
setWord(f.blocks[i], 20, i)
setWord(f.blocks[i], 24, f.blocks.length)
if (f.filename)
setWord(f.blocks[i], 28, f.filesize)
}
}
export function concatFiles(fs: BlockFile[]) {
for (let f of fs) {
finalizeFile(f)
f.filename = null
}
let r = newBlockFile()
r.blocks = U.concat(fs.map(f => f.blocks))
for (let f of fs) {
f.blocks = []
}
return r
}
export function serializeFile(f: BlockFile) {
finalizeFile(f)
let res = ""
for (let b of f.blocks)
res += Util.uint8ArrayToString(b)
return res
}
export function readBytesFromFile(f: BlockFile, addr: number, length: number): Uint8Array {
//console.log(`read @${addr} len=${length}`)
let needAddr = addr >> 8
let bl: Uint8Array
if (needAddr == f.currPtr)
bl = f.currBlock
else {
for (let i = 0; i < f.ptrs.length; ++i) {
if (f.ptrs[i] == needAddr) {
bl = f.blocks[i]
break
}
}
if (bl) {
f.currPtr = needAddr
f.currBlock = bl
}
}
if (!bl)
return null
let res = new Uint8Array(length)
let toRead = Math.min(length, 256 - (addr & 0xff))
U.memcpy(res, 0, bl, (addr & 0xff) + 32, toRead)
let leftOver = length - toRead
if (leftOver > 0) {
let le = readBytesFromFile(f, addr + toRead, leftOver)
U.memcpy(res, toRead, le)
}
return res
}
export function writeBytes(f: BlockFile, addr: number, bytes: ArrayLike<number>, flags = 0) {
let currBlock = f.currBlock
let needAddr = addr >> 8
// account for unaligned writes
let thisChunk = 256 - (addr & 0xff)
if (bytes.length > thisChunk) {
let b = new Uint8Array(bytes)
writeBytes(f, addr, b.slice(0, thisChunk))
while (thisChunk < bytes.length) {
let nextOff = Math.min(thisChunk + 256, bytes.length)
writeBytes(f, addr + thisChunk, b.slice(thisChunk, nextOff))
thisChunk = nextOff
}
return
}
if (needAddr != f.currPtr) {
let i = 0;
currBlock = null
for (let i = 0; i < f.ptrs.length; ++i) {
if (f.ptrs[i] == needAddr) {
currBlock = f.blocks[i]
break
}
}
if (!currBlock) {
currBlock = new Uint8Array(512)
if (f.filename)
flags |= UF2_FLAG_FILE
else if (f.familyId)
flags |= UF2_FLAG_FAMILY_ID_PRESENT
setWord(currBlock, 0, UF2_MAGIC_START0)
setWord(currBlock, 4, UF2_MAGIC_START1)
setWord(currBlock, 8, flags)
setWord(currBlock, 12, needAddr << 8)
setWord(currBlock, 16, 256)
setWord(currBlock, 20, f.blocks.length)
setWord(currBlock, 28, f.familyId)
setWord(currBlock, 512 - 4, UF2_MAGIC_END)
// if bytes are not written, leave them at erase value
for (let i = 32; i < 32 + 256; ++i)
currBlock[i] = 0xff
if (f.filename) {
U.memcpy(currBlock, 32 + 256, U.toUTF8Array(f.filename))
}
f.blocks.push(currBlock)
f.ptrs.push(needAddr)
}
f.currPtr = needAddr
f.currBlock = currBlock
}
let p = (addr & 0xff) + 32
for (let i = 0; i < bytes.length; ++i)
currBlock[p + i] = bytes[i]
f.filesize = Math.max(f.filesize, bytes.length + addr)
}
export function writeHex(f: BlockFile, hex: string[]) {
let upperAddr = "0000"
for (let i = 0; i < hex.length; ++i) {
let m = /:02000004(....)/.exec(hex[i])
if (m) {
upperAddr = m[1]
}
m = /^:..(....)00(.*)[0-9A-F][0-9A-F]$/.exec(hex[i])
if (m) {
let newAddr = parseInt(upperAddr + m[1], 16)
let hh = m[2]
let arr: number[] = []
for (let j = 0; j < hh.length; j += 2) {
arr.push(parseInt(hh[j] + hh[j + 1], 16))
}
writeBytes(f, newAddr, arr)
}
}
}
}
}
namespace ts.pxtc.service {
export interface OpArg {
fileName?: string;
fileContent?: string;
infoType?: InfoType;
position?: number;
wordStartPos?: number;
wordEndPos?: number;
options?: CompileOptions;
search?: SearchOptions;
format?: FormatOptions;
blocks?: BlocksOptions;
extensions?: ExtensionsOptions;
projectSearch?: ProjectSearchOptions;
snippet?: SnippetOptions;
runtime?: pxt.RuntimeOptions;
light?: boolean; // in light mode?
}
export interface SnippetOptions {
qName: string;
python?: boolean;
}
export interface SearchOptions {
subset?: pxt.Map<boolean | string>;
term: string;
localizedApis?: ApisInfo;
localizedStrings?: pxt.Map<string>;
}
export interface FormatOptions {
input: string;
pos: number;
}
export enum ExtensionType {
Bundled = 1,
Github = 2,
ShareScript = 3,
}
export interface ExtensionMeta {
name: string,
fullName?: string,
description?: string,
imageUrl?: string,
type?: ExtensionType
learnMoreUrl?: string;
pkgConfig?: pxt.PackageConfig; // Added if the type is Bundled
repo?: pxt.github.GitRepo; //Added if the type is Github VVN TODO ADD THIS
scriptInfo?: pxt.Cloud.JsonScript
}
export interface SearchInfo {
id: string;
name: string;
qName?: string;
block?: string;
namespace?: string;
jsdoc?: string;
field?: [string, string];
localizedCategory?: string;
builtinBlock?: boolean;
params?: string;
}
export interface ProjectSearchOptions {
term: string;
headers: ProjectSearchInfo[];
}
export interface ProjectSearchInfo {
name: string;
id?: string;
}
export interface BlocksOptions {
bannedCategories?: string[];
}
export interface ExtensionsOptions {
srcs: ExtensionMeta[];
}
}
``` | /content/code_sandbox/pxtlib/service.ts | xml | 2016-01-24T19:35:52 | 2024-08-16T16:39:39 | pxt | microsoft/pxt | 2,069 | 14,305 |
```xml
import {BodyParams} from "@tsed/platform-params";
import {Get} from "@tsed/schema";
import {Controller} from "@tsed/di";
import {UseJoiSchema} from "../decorators/UseJoiSchema";
import {joiPersonModel, PersonModel} from "../models/PersonModel";
@Controller("/persons")
export class PersonsController {
@Get(":id")
async findOne(
@BodyParams("id")
@UseJoiSchema(joiPersonModel)
person: PersonModel
) {
return person;
}
}
``` | /content/code_sandbox/docs/docs/snippets/validation/joi-pipe-usage.ts | xml | 2016-02-21T18:38:47 | 2024-08-14T21:19:48 | tsed | tsedio/tsed | 2,817 | 121 |
```xml
import React from 'react';
import PropTypes from 'prop-types';
import { useClassNames } from '@/internals/hooks';
import { WithAsProps, RsRefForwardingComponent } from '@/internals/types';
export interface MarkProps extends WithAsProps {
mark: number;
last?: boolean;
renderMark?: (mark: number) => React.ReactNode;
}
const Mark: RsRefForwardingComponent<'span', MarkProps> = React.forwardRef(
(props: MarkProps, ref) => {
const {
as: Component = 'span',
mark,
last,
classPrefix = 'slider-mark',
className,
renderMark
} = props;
const { merge, prefix, withClassPrefix } = useClassNames(classPrefix);
const classes = merge(className, withClassPrefix({ last }));
if (renderMark) {
return (
<Component ref={ref} className={classes}>
<span className={prefix('content')}>{renderMark(mark)}</span>
</Component>
);
}
return null;
}
);
Mark.displayName = 'Mark';
Mark.propTypes = {
as: PropTypes.elementType,
classPrefix: PropTypes.string,
className: PropTypes.string,
mark: PropTypes.number,
last: PropTypes.bool,
renderMark: PropTypes.func
};
export default Mark;
``` | /content/code_sandbox/src/Slider/Mark.tsx | xml | 2016-06-06T02:27:46 | 2024-08-16T16:41:54 | rsuite | rsuite/rsuite | 8,263 | 279 |
```xml
<?xml version="1.0" encoding="UTF-8"?>
<ContentPage xmlns="path_to_url" xmlns:x="path_to_url" x:Class="Xamarin.Forms.Xaml.UnitTests.Gh5378_2">
<Button Clicked="{Binding FooBar}" />
</ContentPage>
``` | /content/code_sandbox/Xamarin.Forms.Xaml.UnitTests/Issues/Gh5378_2.xaml | xml | 2016-03-18T15:52:03 | 2024-08-16T16:25:43 | Xamarin.Forms | xamarin/Xamarin.Forms | 5,637 | 63 |
```xml
/**
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
export function ScissorsIcon() {
return (
<svg width="16" height="16" viewBox="0 0 64 64" fill="none" xmlns="path_to_url">
<path d="M47 9L25 44" stroke="currentColor" strokeWidth="6" strokeLinecap="round" />
<path
d="M58.0617 24.8059C59.6113 24.2195 60.3922 22.488 59.8059 20.9383C59.2195 19.3887 57.488 18.6078 55.9383 19.1941L58.0617 24.8059ZM21.0617 38.8059L58.0617 24.8059L55.9383 19.1941L18.9383 33.1941L21.0617 38.8059Z"
fill="currentColor"
/>
<circle cx="16" cy="29" r="8" stroke="currentColor" strokeWidth="6" />
<circle cx="32" cy="48" r="8" stroke="currentColor" strokeWidth="6" />
</svg>
);
}
``` | /content/code_sandbox/addons/isl/src/icons/ScissorsIcon.tsx | xml | 2016-05-05T16:53:47 | 2024-08-16T19:12:02 | sapling | facebook/sapling | 5,987 | 299 |
```xml
// Utilities
import { computed, nextTick, ref, watch } from 'vue'
import { makeLineProps } from './util/line'
import { genPath as _genPath } from './util/path'
import { genericComponent, getPropertyFromItem, getUid, propsFactory, useRender } from '@/util'
// Types
export type VTrendlineSlots = {
default: void
label: { index: number, value: string }
}
export type SparklineItem = number | { value: number }
export type SparklineText = {
x: number
value: string
}
export interface Boundary {
minX: number
minY: number
maxX: number
maxY: number
}
export interface Point {
x: number
y: number
value: number
}
export const makeVTrendlineProps = propsFactory({
fill: Boolean,
...makeLineProps(),
}, 'VTrendline')
export const VTrendline = genericComponent<VTrendlineSlots>()({
name: 'VTrendline',
props: makeVTrendlineProps(),
setup (props, { slots }) {
const uid = getUid()
const id = computed(() => props.id || `trendline-${uid}`)
const autoDrawDuration = computed(() => Number(props.autoDrawDuration) || (props.fill ? 500 : 2000))
const lastLength = ref(0)
const path = ref<SVGPathElement | null>(null)
function genPoints (
values: number[],
boundary: Boundary
): Point[] {
const { minX, maxX, minY, maxY } = boundary
const totalValues = values.length
const maxValue = props.max != null ? Number(props.max) : Math.max(...values)
const minValue = props.min != null ? Number(props.min) : Math.min(...values)
const gridX = (maxX - minX) / (totalValues - 1)
const gridY = (maxY - minY) / ((maxValue - minValue) || 1)
return values.map((value, index) => {
return {
x: minX + index * gridX,
y: maxY - (value - minValue) * gridY,
value,
}
})
}
const hasLabels = computed(() => {
return Boolean(
props.showLabels ||
props.labels.length > 0 ||
!!slots?.label
)
})
const lineWidth = computed(() => {
return parseFloat(props.lineWidth) || 4
})
const totalWidth = computed(() => Number(props.width))
const boundary = computed<Boundary>(() => {
const padding = Number(props.padding)
return {
minX: padding,
maxX: totalWidth.value - padding,
minY: padding,
maxY: parseInt(props.height, 10) - padding,
}
})
const items = computed(() => props.modelValue.map(item => getPropertyFromItem(item, props.itemValue, item)))
const parsedLabels = computed(() => {
const labels = []
const points = genPoints(items.value, boundary.value)
const len = points.length
for (let i = 0; labels.length < len; i++) {
const item = points[i]
let value = props.labels[i]
if (!value) {
value = typeof item === 'object'
? item.value
: item
}
labels.push({
x: item.x,
value: String(value),
})
}
return labels
})
watch(() => props.modelValue, async () => {
await nextTick()
if (!props.autoDraw || !path.value) return
const pathRef = path.value
const length = pathRef.getTotalLength()
if (!props.fill) {
// Initial setup to "hide" the line by using the stroke dash array
pathRef.style.strokeDasharray = `${length}`
pathRef.style.strokeDashoffset = `${length}`
// Force reflow to ensure the transition starts from this state
pathRef.getBoundingClientRect()
// Animate the stroke dash offset to "draw" the line
pathRef.style.transition = `stroke-dashoffset ${autoDrawDuration.value}ms ${props.autoDrawEasing}`
pathRef.style.strokeDashoffset = '0'
} else {
// Your existing logic for filled paths remains the same
pathRef.style.transformOrigin = 'bottom center'
pathRef.style.transition = 'none'
pathRef.style.transform = `scaleY(0)`
pathRef.getBoundingClientRect()
pathRef.style.transition = `transform ${autoDrawDuration.value}ms ${props.autoDrawEasing}`
pathRef.style.transform = `scaleY(1)`
}
lastLength.value = length
}, { immediate: true })
function genPath (fill: boolean) {
return _genPath(
genPoints(items.value, boundary.value),
props.smooth ? 8 : Number(props.smooth),
fill,
parseInt(props.height, 10)
)
}
useRender(() => {
const gradientData = !props.gradient.slice().length ? [''] : props.gradient.slice().reverse()
return (
<svg
display="block"
stroke-width={ parseFloat(props.lineWidth) ?? 4 }
>
<defs>
<linearGradient
id={ id.value }
gradientUnits="userSpaceOnUse"
x1={ props.gradientDirection === 'left' ? '100%' : '0' }
y1={ props.gradientDirection === 'top' ? '100%' : '0' }
x2={ props.gradientDirection === 'right' ? '100%' : '0' }
y2={ props.gradientDirection === 'bottom' ? '100%' : '0' }
>
{
gradientData.map((color, index) => (
<stop offset={ index / (Math.max(gradientData.length - 1, 1)) } stop-color={ color || 'currentColor' } />
))
}
</linearGradient>
</defs>
{ hasLabels.value && (
<g
key="labels"
style={{
textAnchor: 'middle',
dominantBaseline: 'mathematical',
fill: 'currentColor',
}}
>
{
parsedLabels.value.map((item, i) => (
<text
x={ item.x + (lineWidth.value / 2) + lineWidth.value / 2 }
y={ (parseInt(props.height, 10) - 4) + (parseInt(props.labelSize, 10) || 7 * 0.75) }
font-size={ Number(props.labelSize) || 7 }
>
{ slots.label?.({ index: i, value: item.value }) ?? item.value }
</text>
))
}
</g>
)}
<path
ref={ path }
d={ genPath(props.fill) }
fill={ props.fill ? `url(#${id.value})` : 'none' }
stroke={ props.fill ? 'none' : `url(#${id.value})` }
/>
{ props.fill && (
<path
d={ genPath(false) }
fill="none"
stroke={ props.color ?? props.gradient?.[0] }
/>
)}
</svg>
)
})
},
})
export type VTrendline = InstanceType<typeof VTrendline>
``` | /content/code_sandbox/packages/vuetify/src/components/VSparkline/VTrendline.tsx | xml | 2016-09-12T00:39:35 | 2024-08-16T20:06:39 | vuetify | vuetifyjs/vuetify | 39,539 | 1,575 |
```xml
import { Emitter, Disposable } from 'event-kit'
export abstract class BaseStore {
protected readonly emitter = new Emitter()
protected emitUpdate() {
this.emitter.emit('did-update', {})
}
protected emitError(error: Error) {
this.emitter.emit('did-error', error)
}
/** Register a function to be called when the store updates. */
public onDidUpdate(fn: () => void): Disposable {
return this.emitter.on('did-update', fn)
}
/**
* Register an event handler which will be invoked whenever
* an unexpected error occurs during the sign-in process. Note
* that some error are handled in the flow and passed along in
* the sign in state for inline presentation to the user.
*/
public onDidError(fn: (e: Error) => void): Disposable {
return this.emitter.on('did-error', fn)
}
}
export class TypedBaseStore<T> {
protected readonly emitter = new Emitter()
protected emitUpdate(data: T) {
this.emitter.emit('did-update', data)
}
protected emitError(error: Error) {
this.emitter.emit('did-error', error)
}
/** Register a function to be called when the store updates. */
public onDidUpdate(fn: (data: T) => void): Disposable {
return this.emitter.on('did-update', fn)
}
/**
* Register an event handler which will be invoked whenever
* an unexpected error occurs during the sign-in process. Note
* that some error are handled in the flow and passed along in
* the sign in state for inline presentation to the user.
*/
public onDidError(fn: (e: Error) => void): Disposable {
return this.emitter.on('did-error', fn)
}
}
``` | /content/code_sandbox/app/src/lib/stores/base-store.ts | xml | 2016-05-11T15:59:00 | 2024-08-16T17:00:41 | desktop | desktop/desktop | 19,544 | 395 |
```xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="path_to_url"
xmlns:xsi="path_to_url"
xmlns:p="path_to_url"
xmlns:context="path_to_url"
xmlns:mvc="path_to_url"
xmlns:aop="path_to_url"
xmlns:task="path_to_url"
xsi:schemaLocation="path_to_url
path_to_url
path_to_url
path_to_url
path_to_url
path_to_url
path_to_url
path_to_url
path_to_url
path_to_url">
<context:annotation-config/>
<mvc:annotation-driven/>
<mvc:interceptors>
<bean class="com.app.mvc.common.HttpInterceptor" />
</mvc:interceptors>
<task:annotation-driven/>
<context:component-scan base-package="com.app.mvc"/>
<!-- aop -->
<aop:aspectj-autoproxy proxy-target-class="true"/>
<bean class="com.app.mvc.common.SpringExceptionResolver"/>
<mvc:resources location="/images/" mapping="/images/**"/>
<mvc:resources location="/js/" mapping="/js/**"/>
<mvc:resources location="/css/" mapping="/css/**"/>
<mvc:resources location="/uploads/" mapping="/uploads/**"/>
<mvc:resources location="/bootstrap3.3.5/" mapping="/bootstrap3.3.5/**"/>
<mvc:resources location="/assets/" mapping="/assets/**"/>
<mvc:resources location="/ztree/" mapping="/ztree/**"/>
<bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping"/>
<bean class="org.springframework.web.servlet.view.BeanNameViewResolver"/>
<bean id="jsonView"
class="org.springframework.web.servlet.view.json.MappingJackson2JsonView"/>
<bean id="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResolver"
p:prefix="/mvc-views/"
p:suffix=".jsp"/>
<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
<property name="defaultEncoding" value="utf-8"></property>
<property name="maxUploadSize" value="10485760000"></property>
<property name="maxInMemorySize" value="40960"></property>
</bean>
</beans>
``` | /content/code_sandbox/src/main/webapp/WEB-INF/dispatcher-servlet.xml | xml | 2016-03-06T11:54:46 | 2024-08-01T03:54:04 | funiture | kanwangzjm/funiture | 1,878 | 507 |
```xml
import React, { useState } from "react";
import { Button } from "antd";
import { trackNewRuleButtonClicked } from "modules/analytics/events/common/rules";
import { MdAdd } from "@react-icons/all-files/md/MdAdd";
import { RuleSelectionListDrawer } from "../../../../../rules/screens/rulesList/components/RulesList/components/RuleSelectionListDrawer/RuleSelectionListDrawer";
import { SOURCE } from "modules/analytics/events/common/constants";
export const NewRuleButton: React.FC<{ disable?: boolean; callback?: () => void }> = ({
disable = false,
callback = () => {},
}) => {
const [isRulesListDrawerOpen, setIsRulesListDrawerOpen] = useState(false);
const onRulesListDrawerClose = () => {
setIsRulesListDrawerOpen(false);
};
return (
<>
<RuleSelectionListDrawer
open={isRulesListDrawerOpen}
onClose={onRulesListDrawerClose}
source="rule_selection_dropdown"
premiumPopoverPlacement="topLeft"
callback={callback}
onRuleItemClick={() => {
onRulesListDrawerClose();
}}
>
<Button
disabled={disable}
type="primary"
icon={<MdAdd className="anticon" />}
onClick={() => {
setIsRulesListDrawerOpen(true);
trackNewRuleButtonClicked(SOURCE.INCENTIVIZATION_TASK_LIST);
}}
>
Create new rule
</Button>
</RuleSelectionListDrawer>
</>
);
};
``` | /content/code_sandbox/app/src/features/incentivization/components/IncentiveTasksList/components/NewRuleButton/NewRuleButton.tsx | xml | 2016-12-01T04:36:06 | 2024-08-16T19:12:19 | requestly | requestly/requestly | 2,121 | 316 |
```xml
<mujoco model="walker2d">
<compiler angle="degree" coordinate="global" inertiafromgeom="true"/>
<default>
<joint armature="0.01" damping=".1" limited="true"/>
<geom conaffinity="0" condim="3" contype="1" density="1000" friction=".7 .1 .1" rgba="0.8 0.6 .4 1"/>
</default>
<option integrator="RK4" timestep="0.002"/>
<worldbody>
<light cutoff="100" diffuse="1 1 1" dir="-0 0 -1.3" directional="true" exponent="1" pos="0 0 1.3" specular=".1 .1 .1"/>
<geom conaffinity="1" condim="3" name="floor" pos="0 0 0" rgba="0.8 0.9 0.8 1" size="40 40 40" type="plane" material="MatPlane"/>
<body name="torso" pos="0 0 1.25">
<camera name="track" mode="trackcom" pos="0 -3 1" xyaxes="1 0 0 0 0 1"/>
<joint armature="0" axis="1 0 0" damping="0" limited="false" name="rootx" pos="0 0 0" stiffness="0" type="slide"/>
<joint armature="0" axis="0 0 1" damping="0" limited="false" name="rootz" pos="0 0 0" ref="1.25" stiffness="0" type="slide"/>
<joint armature="0" axis="0 1 0" damping="0" limited="false" name="rooty" pos="0 0 1.25" stiffness="0" type="hinge"/>
<geom friction="0.9" fromto="0 0 1.45 0 0 1.05" name="torso_geom" size="0.05" type="capsule"/>
<body name="thigh" pos="0 0 1.05">
<joint axis="0 -1 0" name="thigh_joint" pos="0 0 1.05" range="-150 0" type="hinge"/>
<geom friction="0.9" fromto="0 0 1.05 0 0 0.6" name="thigh_geom" size="0.05" type="capsule"/>
<body name="leg" pos="0 0 0.35">
<joint axis="0 -1 0" name="leg_joint" pos="0 0 0.6" range="-150 0" type="hinge"/>
<geom friction="0.9" fromto="0 0 0.6 0 0 0.1" name="leg_geom" size="0.04" type="capsule"/>
<body name="foot" pos="0.2 0 0">
<joint axis="0 -1 0" name="foot_joint" pos="0 0 0.1" range="-45 45" type="hinge"/>
<geom friction="0.9" fromto="-0.0 0 0.1 0.2 0 0.1" name="foot_geom" size="0.06" type="capsule"/>
</body>
</body>
</body>
<!-- copied and then replace thigh->thigh_left, leg->leg_left, foot->foot_right -->
<body name="thigh_left" pos="0 0 1.05">
<joint axis="0 -1 0" name="thigh_left_joint" pos="0 0 1.05" range="-150 0" type="hinge"/>
<geom friction="0.9" fromto="0 0 1.05 0 0 0.6" name="thigh_left_geom" rgba=".7 .3 .6 1" size="0.05" type="capsule"/>
<body name="leg_left" pos="0 0 0.35">
<joint axis="0 -1 0" name="leg_left_joint" pos="0 0 0.6" range="-150 0" type="hinge"/>
<geom friction="0.9" fromto="0 0 0.6 0 0 0.1" name="leg_left_geom" rgba=".7 .3 .6 1" size="0.04" type="capsule"/>
<body name="foot_left" pos="0.2 0 0">
<joint axis="0 -1 0" name="foot_left_joint" pos="0 0 0.1" range="-45 45" type="hinge"/>
<geom friction="1.9" fromto="-0.0 0 0.1 0.2 0 0.1" name="foot_left_geom" rgba=".7 .3 .6 1" size="0.06" type="capsule"/>
</body>
</body>
</body>
</body>
</worldbody>
<actuator>
<!-- <motor joint="torso_joint" ctrlrange="-100.0 100.0" isctrllimited="true"/>-->
<motor ctrllimited="true" ctrlrange="-1.0 1.0" gear="100" joint="thigh_joint"/>
<motor ctrllimited="true" ctrlrange="-1.0 1.0" gear="100" joint="leg_joint"/>
<motor ctrllimited="true" ctrlrange="-1.0 1.0" gear="100" joint="foot_joint"/>
<motor ctrllimited="true" ctrlrange="-1.0 1.0" gear="100" joint="thigh_left_joint"/>
<motor ctrllimited="true" ctrlrange="-1.0 1.0" gear="100" joint="leg_left_joint"/>
<motor ctrllimited="true" ctrlrange="-1.0 1.0" gear="100" joint="foot_left_joint"/>
<!-- <motor joint="finger2_rot" ctrlrange="-20.0 20.0" isctrllimited="true"/>-->
</actuator>
<asset>
<texture type="skybox" builtin="gradient" rgb1=".4 .5 .6" rgb2="0 0 0"
width="100" height="100"/>
<texture builtin="flat" height="1278" mark="cross" markrgb="1 1 1" name="texgeom" random="0.01" rgb1="0.8 0.6 0.4" rgb2="0.8 0.6 0.4" type="cube" width="127"/>
<texture builtin="checker" height="100" name="texplane" rgb1="0 0 0" rgb2="0.8 0.8 0.8" type="2d" width="100"/>
<material name="MatPlane" reflectance="0.5" shininess="1" specular="1" texrepeat="60 60" texture="texplane"/>
<material name="geom" texture="texgeom" texuniform="true"/>
</asset>
</mujoco>
``` | /content/code_sandbox/gym/envs/mujoco/assets/walker2d.xml | xml | 2016-04-27T14:59:16 | 2024-08-16T12:28:07 | gym | openai/gym | 34,371 | 1,642 |
```xml
/*
* one or more contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright ownership.
*/
import {useStartProcessParams} from 'modules/routing';
import {useExternalForm} from 'modules/queries/useExternalForm';
import {useLayoutEffect, useState} from 'react';
import {Content} from '@carbon/react';
import {FormJS} from './FormJS';
import {Skeleton} from './FormJS/Skeleton';
import {useStartExternalProcess} from 'modules/mutations/useStartExternalProcess';
import {useTranslation} from 'react-i18next';
import {logger} from 'modules/utils/logger';
import {tracking} from 'modules/tracking';
import CheckImage from 'modules/images/orange-check-mark.svg';
import ErrorRobotImage from 'modules/images/error-robot.svg';
import {Message} from './Message';
import {match, Pattern} from 'ts-pattern';
import styles from './styles.module.scss';
const StartProcessFromForm: React.FC = () => {
const [pageView, setPageView] = useState<
| 'form'
| 'submit-success'
| 'form-not-found'
| 'failed-submission'
| 'invalid-form-schema'
>('form');
const {bpmnProcessId} = useStartProcessParams();
const {data, error} = useExternalForm(bpmnProcessId);
const {mutateAsync: startExternalProcess, reset} = useStartExternalProcess({
onError: (error) => {
logger.error(error);
tracking.track({
eventName: 'public-start-form-submission-failed',
});
},
onMutate: () => {
tracking.track({
eventName: 'public-start-form-submitted',
});
},
});
useLayoutEffect(() => {
if (error !== null) {
tracking.track({
eventName: 'public-start-form-load-failed',
});
setPageView('form-not-found');
}
}, [error]);
useLayoutEffect(() => {
tracking.track({
eventName: 'public-start-form-opened',
});
}, []);
useLayoutEffect(() => {
if (data !== undefined) {
tracking.track({
eventName: 'public-start-form-loaded',
});
setPageView('form');
}
}, [data]);
const {t} = useTranslation();
return (
<>
<Content
id="main-content"
className={styles.content}
tabIndex={-1}
tagName="main"
>
<div className={styles.container}>
{match({data, pageView})
.with({pageView: 'form', data: undefined}, () => <Skeleton />)
.with(
{pageView: 'form', data: Pattern.not(undefined)},
({data}) => (
<FormJS
schema={data.schema}
handleSubmit={async (variables) => {
await startExternalProcess({variables, bpmnProcessId});
}}
onImportError={() => {
setPageView('invalid-form-schema');
}}
onSubmitError={() => {
setPageView('failed-submission');
}}
onSubmitSuccess={() => {
setPageView('submit-success');
}}
/>
),
)
.with({pageView: 'submit-success'}, () => (
<Message
icon={{
altText: t('publicStartFormSuccessIconAltText'),
path: CheckImage,
}}
heading={t('publicStartFormSuccessMessageTitle')}
description={
<>
{t('formSubmittedSuccessfullyDescription')}
<br />
{t('startProcessFromFormCloseWindowInstruction')}
</>
}
/>
))
.with({pageView: 'form-not-found'}, () => (
<Message
icon={{
altText: t('startProcessFromFormErrorRobot'),
path: ErrorRobotImage,
}}
heading={t('startProcessFromFormPageNotFoundHeading')}
description={t('startProcessFromFormPageNotFoundDescription')}
/>
))
.with({pageView: 'failed-submission'}, () => (
<Message
icon={{
altText: t('startProcessFromFormErrorRobot'),
path: ErrorRobotImage,
}}
heading={t('startProcessFromFormSubmissionFailedHeading')}
description={t(
'startProcessFromFormSubmissionFailedDescription',
)}
button={{
label: t('startProcessFromFormReloadButton'),
onClick: () => {
reset();
},
}}
/>
))
.with({pageView: 'invalid-form-schema'}, () => (
<Message
icon={{
altText: t('startProcessFromFormErrorRobot'),
path: ErrorRobotImage,
}}
heading={t('startProcessFromFormInvalidFormHeading')}
description={t('startProcessFromFormInvalidFormDescription')}
/>
))
.exhaustive()}
</div>
</Content>
</>
);
};
StartProcessFromForm.displayName = 'StartProcessFromForm';
export {StartProcessFromForm as Component};
``` | /content/code_sandbox/tasklist/client/src/StartProcessFromForm/index.tsx | xml | 2016-03-20T03:38:04 | 2024-08-16T19:59:58 | camunda | camunda/camunda | 3,172 | 1,068 |
```xml
const internalMapSymbol = Symbol('#internalMap');
export class ImmutableMap<Key, Value> implements Iterable<[Key, Value]> {
public static empty: ImmutableMap<never, never> = new ImmutableMap(new Map<never, never>());
public readonly size: number;
private [internalMapSymbol]: Map<Key, Value>;
public static dangerouslyGetInternalMap<Key, Value>(immutableMap: ImmutableMap<Key, Value>): Map<Key, Value> {
return immutableMap[internalMapSymbol];
}
public static copy<Key, Value>(immutableMap: ImmutableMap<Key, Value>): ImmutableMap<Key, Value> {
return this.from(immutableMap[internalMapSymbol]);
}
/**
* Creates a new {@link ImmutableMap} from an iterable.
* If the iterable is undefined, {@link ImmutableMap.empty} will be returned.
* If the iterable is already an {@link ImmutableMap}, it will be returned as is no copy will be made.
*/
public static from<T extends [unknown, unknown]>(iterable?: Iterable<T>): ImmutableMap<T[0], T[1]>;
/**
* Creates a new {@link ImmutableMap} from an iterable with an auxiliary map function to modify the iterable.
* If the iterable is undefined, {@link ImmutableMap.empty} will be returned.
* If the iterable is already an {@link ImmutableMap}, it will be returned as is no copy will be made.
* The map function will be called for each element in the iterable.
*/
public static from<T, U extends [unknown, unknown]>(
iterable: Iterable<T> | undefined,
mapFn: (value: T) => U,
): ImmutableMap<U[0], U[1]>;
public static from(
iterable?: Iterable<unknown>,
mapFn?: (value: unknown) => [unknown, unknown],
): ImmutableMap<unknown, unknown> {
if (iterable === undefined) {
return this.empty;
}
if (!mapFn) {
if (iterable instanceof this) {
return iterable;
}
// casting here is ok, as the function overload ensures that the iterable is
// Iterable<[unknown, unknown]>
// if mapFn is not provided
const iterableAsTuple = iterable as Iterable<[unknown, unknown]>;
return new this(new Map(iterableAsTuple));
}
const map = new Map<unknown, unknown>();
for (const value of iterable) {
map.set(...mapFn(value));
}
return new this(map);
}
public static [Symbol.hasInstance](instance: unknown): boolean {
return Boolean(typeof instance === 'object' && instance && internalMapSymbol in instance);
}
/**
* Do not use this constructor directly, use {@link ImmutableMap.from} instead.
* {@link ImmutableMap.from} handles instance verification (which might be problematic on {@link path_to_url#instanceof_and_multiple_realms | multiple realms}),
* avoid unnecessary copies, supports iterables and ensures that the internal map is never exposed.
*
* _By using this constructor directly, you might end up with a mutable map, as it is not guaranteed that the internal map is not exposed._
*/
constructor(internalMap: Map<Key, Value>) {
this[internalMapSymbol] = internalMap;
this.size = this[internalMapSymbol].size;
}
public delete(key: Key): ImmutableMap<Key, Value> {
if (!this.has(key)) {
return this;
}
const copy = ImmutableMap.copy(this);
copy[internalMapSymbol].delete(key);
return copy;
}
public get(key: Key): Value | undefined {
return this[internalMapSymbol].get(key);
}
public has(key: Key): boolean {
return this[internalMapSymbol].has(key);
}
public set(key: Key, value: Value): ImmutableMap<Key, Value> {
if (this.get(key) === value) {
return this;
}
const copy = ImmutableMap.copy(this);
copy[internalMapSymbol].set(key, value);
return copy;
}
public [Symbol.iterator](): Iterator<[Key, Value]> {
return this[internalMapSymbol].entries();
}
}
``` | /content/code_sandbox/packages/react-components/react-tree/library/src/utils/ImmutableMap.ts | xml | 2016-06-06T15:03:44 | 2024-08-16T18:49:29 | fluentui | microsoft/fluentui | 18,221 | 909 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.