datahike-browser-tests 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.circleci/config.yml +405 -0
- package/.circleci/scripts/gen_ci.clj +194 -0
- package/.cirrus.yml +60 -0
- package/.clj-kondo/babashka/sci/config.edn +1 -0
- package/.clj-kondo/babashka/sci/sci/core.clj +9 -0
- package/.clj-kondo/config.edn +95 -0
- package/.dir-locals.el +2 -0
- package/.github/FUNDING.yml +3 -0
- package/.github/ISSUE_TEMPLATE/1-bug-report.yml +68 -0
- package/.github/ISSUE_TEMPLATE/2-feature-request.yml +28 -0
- package/.github/ISSUE_TEMPLATE/config.yml +6 -0
- package/.github/pull_request_template.md +24 -0
- package/.github/workflows/native-image.yml +84 -0
- package/LICENSE +203 -0
- package/README.md +273 -0
- package/bb/deps.edn +9 -0
- package/bb/resources/github-fingerprints +3 -0
- package/bb/resources/native-image-tests/run-bb-pod-tests.clj +162 -0
- package/bb/resources/native-image-tests/run-libdatahike-tests +12 -0
- package/bb/resources/native-image-tests/run-native-image-tests +74 -0
- package/bb/resources/native-image-tests/run-python-tests +22 -0
- package/bb/resources/native-image-tests/testconfig.attr-refs.edn +6 -0
- package/bb/resources/native-image-tests/testconfig.edn +5 -0
- package/bb/resources/template/.settings/org.eclipse.jdt.apt.core.prefs +2 -0
- package/bb/resources/template/.settings/org.eclipse.jdt.core.prefs +9 -0
- package/bb/resources/template/.settings/org.eclipse.m2e.core.prefs +4 -0
- package/bb/resources/template/pom.xml +22 -0
- package/bb/src/tools/build.clj +132 -0
- package/bb/src/tools/clj_kondo.clj +32 -0
- package/bb/src/tools/deploy.clj +26 -0
- package/bb/src/tools/examples.clj +19 -0
- package/bb/src/tools/npm.clj +100 -0
- package/bb/src/tools/python.clj +14 -0
- package/bb/src/tools/release.clj +94 -0
- package/bb/src/tools/test.clj +148 -0
- package/bb/src/tools/version.clj +47 -0
- package/bb.edn +269 -0
- package/benchmark/src/benchmark/cli.clj +195 -0
- package/benchmark/src/benchmark/compare.clj +157 -0
- package/benchmark/src/benchmark/config.clj +316 -0
- package/benchmark/src/benchmark/measure.clj +187 -0
- package/benchmark/src/benchmark/store.clj +190 -0
- package/benchmark/test/benchmark/measure_test.clj +156 -0
- package/build.clj +30 -0
- package/config.edn +49 -0
- package/deps.edn +138 -0
- package/dev/sandbox.clj +82 -0
- package/dev/sandbox.cljs +127 -0
- package/dev/sandbox_benchmarks.clj +27 -0
- package/dev/sandbox_client.clj +87 -0
- package/dev/sandbox_transact_bench.clj +109 -0
- package/dev/user.clj +79 -0
- package/doc/README.md +96 -0
- package/doc/adl/README.md +6 -0
- package/doc/adl/adr-000-adr.org +28 -0
- package/doc/adl/adr-001-attribute-references.org +15 -0
- package/doc/adl/adr-002-build-tooling.org +54 -0
- package/doc/adl/adr-003-db-meta-data.md +52 -0
- package/doc/adl/adr-004-github-flow.md +40 -0
- package/doc/adl/adr-XYZ-template.md +30 -0
- package/doc/adl/index.org +3 -0
- package/doc/assets/datahike-logo.svg +3 -0
- package/doc/assets/datahiking-invoice.org +85 -0
- package/doc/assets/hhtree2.png +0 -0
- package/doc/assets/network_topology.svg +624 -0
- package/doc/assets/perf.png +0 -0
- package/doc/assets/schema_mindmap.mm +132 -0
- package/doc/assets/schema_mindmap.svg +970 -0
- package/doc/assets/temporal_index.mm +74 -0
- package/doc/backend-development.md +78 -0
- package/doc/bb-pod.md +89 -0
- package/doc/benchmarking.md +360 -0
- package/doc/bindings/edn-conversion.md +383 -0
- package/doc/cli.md +162 -0
- package/doc/cljdoc.edn +27 -0
- package/doc/cljs-support.md +133 -0
- package/doc/config.md +406 -0
- package/doc/contributing.md +114 -0
- package/doc/datalog-vs-sql.md +210 -0
- package/doc/datomic_differences.md +109 -0
- package/doc/development/pull-api-ns.md +186 -0
- package/doc/development/pull-frame-state-diagram.jpg +0 -0
- package/doc/distributed.md +566 -0
- package/doc/entity_spec.md +92 -0
- package/doc/gc.md +273 -0
- package/doc/java-api.md +808 -0
- package/doc/javascript-api.md +421 -0
- package/doc/libdatahike.md +86 -0
- package/doc/logging_and_error_handling.md +43 -0
- package/doc/norms.md +66 -0
- package/doc/schema-migration.md +85 -0
- package/doc/schema.md +287 -0
- package/doc/storage-backends.md +363 -0
- package/doc/store-id-refactoring.md +596 -0
- package/doc/time_variance.md +325 -0
- package/doc/unstructured.md +167 -0
- package/doc/versioning.md +261 -0
- package/examples/basic/README.md +19 -0
- package/examples/basic/deps.edn +6 -0
- package/examples/basic/docker-compose.yml +13 -0
- package/examples/basic/src/examples/core.clj +60 -0
- package/examples/basic/src/examples/schema.clj +155 -0
- package/examples/basic/src/examples/store.clj +60 -0
- package/examples/basic/src/examples/time_travel.clj +185 -0
- package/examples/java/.settings/org.eclipse.core.resources.prefs +3 -0
- package/examples/java/.settings/org.eclipse.jdt.apt.core.prefs +2 -0
- package/examples/java/.settings/org.eclipse.jdt.core.prefs +9 -0
- package/examples/java/.settings/org.eclipse.m2e.core.prefs +4 -0
- package/examples/java/README.md +162 -0
- package/examples/java/pom.xml +62 -0
- package/examples/java/src/main/java/examples/QuickStart.java +115 -0
- package/examples/java/src/main/java/examples/SchemaExample.java +148 -0
- package/examples/java/src/main/java/examples/TimeTravelExample.java +121 -0
- package/flake.lock +27 -0
- package/flake.nix +27 -0
- package/http-server/datahike/http/middleware.clj +75 -0
- package/http-server/datahike/http/server.clj +269 -0
- package/java/src/datahike/java/Database.java +274 -0
- package/java/src/datahike/java/Datahike.java +281 -0
- package/java/src/datahike/java/DatahikeGeneratedTest.java +349 -0
- package/java/src/datahike/java/DatahikeTest.java +370 -0
- package/java/src/datahike/java/EDN.java +170 -0
- package/java/src/datahike/java/IEntity.java +11 -0
- package/java/src/datahike/java/Keywords.java +161 -0
- package/java/src/datahike/java/SchemaFlexibility.java +52 -0
- package/java/src/datahike/java/Util.java +219 -0
- package/karma.conf.js +19 -0
- package/libdatahike/compile-cpp +7 -0
- package/libdatahike/src/datahike/impl/LibDatahikeBase.java +203 -0
- package/libdatahike/src/datahike/impl/libdatahike.clj +59 -0
- package/libdatahike/src/test_cpp.cpp +61 -0
- package/npm-package/PUBLISHING.md +140 -0
- package/npm-package/README.md +226 -0
- package/npm-package/package.template.json +34 -0
- package/npm-package/test-isomorphic.ts +281 -0
- package/npm-package/test.js +557 -0
- package/npm-package/typescript-test.ts +70 -0
- package/package.json +16 -0
- package/pydatahike/README.md +569 -0
- package/pydatahike/pyproject.toml +91 -0
- package/pydatahike/setup.py +42 -0
- package/pydatahike/src/datahike/__init__.py +134 -0
- package/pydatahike/src/datahike/_native.py +250 -0
- package/pydatahike/src/datahike/_version.py +2 -0
- package/pydatahike/src/datahike/database.py +722 -0
- package/pydatahike/src/datahike/edn.py +311 -0
- package/pydatahike/src/datahike/py.typed +0 -0
- package/pydatahike/tests/conftest.py +17 -0
- package/pydatahike/tests/test_basic.py +170 -0
- package/pydatahike/tests/test_database.py +51 -0
- package/pydatahike/tests/test_edn_conversion.py +299 -0
- package/pydatahike/tests/test_query.py +99 -0
- package/pydatahike/tests/test_schema.py +55 -0
- package/resources/clj-kondo.exports/io.replikativ/datahike/config.edn +5 -0
- package/resources/example_server.edn +4 -0
- package/shadow-cljs.edn +56 -0
- package/src/data_readers.clj +7 -0
- package/src/datahike/api/impl.cljc +176 -0
- package/src/datahike/api/specification.cljc +633 -0
- package/src/datahike/api/types.cljc +261 -0
- package/src/datahike/api.cljc +41 -0
- package/src/datahike/array.cljc +99 -0
- package/src/datahike/cli.clj +166 -0
- package/src/datahike/cljs.cljs +6 -0
- package/src/datahike/codegen/cli.clj +406 -0
- package/src/datahike/codegen/clj_kondo.clj +291 -0
- package/src/datahike/codegen/java.clj +403 -0
- package/src/datahike/codegen/naming.cljc +33 -0
- package/src/datahike/codegen/native.clj +559 -0
- package/src/datahike/codegen/pod.clj +488 -0
- package/src/datahike/codegen/python.clj +838 -0
- package/src/datahike/codegen/report.clj +55 -0
- package/src/datahike/codegen/typescript.clj +262 -0
- package/src/datahike/codegen/validation.clj +145 -0
- package/src/datahike/config.cljc +294 -0
- package/src/datahike/connections.cljc +16 -0
- package/src/datahike/connector.cljc +265 -0
- package/src/datahike/constants.cljc +142 -0
- package/src/datahike/core.cljc +297 -0
- package/src/datahike/datom.cljc +459 -0
- package/src/datahike/db/interface.cljc +119 -0
- package/src/datahike/db/search.cljc +305 -0
- package/src/datahike/db/transaction.cljc +937 -0
- package/src/datahike/db/utils.cljc +338 -0
- package/src/datahike/db.cljc +956 -0
- package/src/datahike/experimental/unstructured.cljc +126 -0
- package/src/datahike/experimental/versioning.cljc +172 -0
- package/src/datahike/externs.js +31 -0
- package/src/datahike/gc.cljc +69 -0
- package/src/datahike/http/client.clj +188 -0
- package/src/datahike/http/writer.clj +79 -0
- package/src/datahike/impl/entity.cljc +218 -0
- package/src/datahike/index/interface.cljc +93 -0
- package/src/datahike/index/persistent_set.cljc +469 -0
- package/src/datahike/index/utils.cljc +44 -0
- package/src/datahike/index.cljc +32 -0
- package/src/datahike/js/api.cljs +172 -0
- package/src/datahike/js/api_macros.clj +22 -0
- package/src/datahike/js.cljs +163 -0
- package/src/datahike/json.cljc +209 -0
- package/src/datahike/lru.cljc +146 -0
- package/src/datahike/migrate.clj +39 -0
- package/src/datahike/norm/norm.clj +245 -0
- package/src/datahike/online_gc.cljc +252 -0
- package/src/datahike/pod.clj +155 -0
- package/src/datahike/pull_api.cljc +325 -0
- package/src/datahike/query.cljc +1945 -0
- package/src/datahike/query_stats.cljc +88 -0
- package/src/datahike/readers.cljc +62 -0
- package/src/datahike/remote.cljc +218 -0
- package/src/datahike/schema.cljc +228 -0
- package/src/datahike/schema_cache.cljc +42 -0
- package/src/datahike/spec.cljc +101 -0
- package/src/datahike/store.cljc +80 -0
- package/src/datahike/tools.cljc +308 -0
- package/src/datahike/transit.cljc +80 -0
- package/src/datahike/writer.cljc +239 -0
- package/src/datahike/writing.cljc +362 -0
- package/src/deps.cljs +1 -0
- package/src-hitchhiker-tree/datahike/index/hitchhiker_tree/insert.cljc +76 -0
- package/src-hitchhiker-tree/datahike/index/hitchhiker_tree/upsert.cljc +128 -0
- package/src-hitchhiker-tree/datahike/index/hitchhiker_tree.cljc +213 -0
- package/test/datahike/backward_compatibility_test/src/backward_test.clj +37 -0
- package/test/datahike/integration_test/config_record_file_test.clj +14 -0
- package/test/datahike/integration_test/config_record_test.clj +14 -0
- package/test/datahike/integration_test/depr_config_uri_test.clj +15 -0
- package/test/datahike/integration_test/return_map_test.clj +62 -0
- package/test/datahike/integration_test.cljc +67 -0
- package/test/datahike/norm/norm_test.clj +124 -0
- package/test/datahike/norm/resources/naming-and-sorting-test/001-a1-example.edn +5 -0
- package/test/datahike/norm/resources/naming-and-sorting-test/002-a2-example.edn +5 -0
- package/test/datahike/norm/resources/naming-and-sorting-test/003-tx-fn-test.edn +1 -0
- package/test/datahike/norm/resources/naming-and-sorting-test/004-tx-data-and-tx-fn-test.edn +5 -0
- package/test/datahike/norm/resources/naming-and-sorting-test/01-transact-basic-characters.edn +2 -0
- package/test/datahike/norm/resources/naming-and-sorting-test/02 add occupation.edn +5 -0
- package/test/datahike/norm/resources/naming-and-sorting-test/checksums.edn +12 -0
- package/test/datahike/norm/resources/simple-test/001-a1-example.edn +5 -0
- package/test/datahike/norm/resources/simple-test/002-a2-example.edn +5 -0
- package/test/datahike/norm/resources/simple-test/checksums.edn +4 -0
- package/test/datahike/norm/resources/tx-data-and-tx-fn-test/first/001-a1-example.edn +5 -0
- package/test/datahike/norm/resources/tx-data-and-tx-fn-test/first/002-a2-example.edn +5 -0
- package/test/datahike/norm/resources/tx-data-and-tx-fn-test/first/003-tx-fn-test.edn +1 -0
- package/test/datahike/norm/resources/tx-data-and-tx-fn-test/first/checksums.edn +6 -0
- package/test/datahike/norm/resources/tx-data-and-tx-fn-test/second/004-tx-data-and-tx-fn-test.edn +5 -0
- package/test/datahike/norm/resources/tx-data-and-tx-fn-test/second/checksums.edn +2 -0
- package/test/datahike/norm/resources/tx-fn-test/first/001-a1-example.edn +5 -0
- package/test/datahike/norm/resources/tx-fn-test/first/002-a2-example.edn +5 -0
- package/test/datahike/norm/resources/tx-fn-test/first/checksums.edn +4 -0
- package/test/datahike/norm/resources/tx-fn-test/second/003-tx-fn-test.edn +1 -0
- package/test/datahike/norm/resources/tx-fn-test/second/checksums.edn +2 -0
- package/test/datahike/test/api_test.cljc +895 -0
- package/test/datahike/test/array_test.cljc +40 -0
- package/test/datahike/test/attribute_refs/datoms_test.cljc +140 -0
- package/test/datahike/test/attribute_refs/db_test.cljc +42 -0
- package/test/datahike/test/attribute_refs/differences_test.cljc +515 -0
- package/test/datahike/test/attribute_refs/entity_test.cljc +89 -0
- package/test/datahike/test/attribute_refs/pull_api_test.cljc +320 -0
- package/test/datahike/test/attribute_refs/query_find_specs_test.cljc +59 -0
- package/test/datahike/test/attribute_refs/query_fns_test.cljc +130 -0
- package/test/datahike/test/attribute_refs/query_interop_test.cljc +47 -0
- package/test/datahike/test/attribute_refs/query_not_test.cljc +193 -0
- package/test/datahike/test/attribute_refs/query_or_test.cljc +137 -0
- package/test/datahike/test/attribute_refs/query_pull_test.cljc +156 -0
- package/test/datahike/test/attribute_refs/query_rules_test.cljc +176 -0
- package/test/datahike/test/attribute_refs/query_test.cljc +241 -0
- package/test/datahike/test/attribute_refs/temporal_search.cljc +22 -0
- package/test/datahike/test/attribute_refs/transact_test.cljc +220 -0
- package/test/datahike/test/attribute_refs/utils.cljc +128 -0
- package/test/datahike/test/cache_test.cljc +38 -0
- package/test/datahike/test/components_test.cljc +92 -0
- package/test/datahike/test/config_test.cljc +158 -0
- package/test/datahike/test/core_test.cljc +105 -0
- package/test/datahike/test/datom_test.cljc +44 -0
- package/test/datahike/test/db_test.cljc +54 -0
- package/test/datahike/test/entity_spec_test.cljc +159 -0
- package/test/datahike/test/entity_test.cljc +103 -0
- package/test/datahike/test/explode_test.cljc +143 -0
- package/test/datahike/test/filter_test.cljc +75 -0
- package/test/datahike/test/gc_test.cljc +159 -0
- package/test/datahike/test/http/server_test.clj +192 -0
- package/test/datahike/test/http/writer_test.clj +86 -0
- package/test/datahike/test/ident_test.cljc +32 -0
- package/test/datahike/test/index_test.cljc +345 -0
- package/test/datahike/test/insert.cljc +125 -0
- package/test/datahike/test/java_bindings_test.clj +6 -0
- package/test/datahike/test/listen_test.cljc +41 -0
- package/test/datahike/test/lookup_refs_test.cljc +266 -0
- package/test/datahike/test/lru_test.cljc +27 -0
- package/test/datahike/test/migrate_test.clj +297 -0
- package/test/datahike/test/model/core.cljc +376 -0
- package/test/datahike/test/model/invariant.cljc +142 -0
- package/test/datahike/test/model/rng.cljc +82 -0
- package/test/datahike/test/model_test.clj +217 -0
- package/test/datahike/test/nodejs_test.cljs +262 -0
- package/test/datahike/test/online_gc_test.cljc +475 -0
- package/test/datahike/test/pod_test.clj +369 -0
- package/test/datahike/test/pull_api_test.cljc +474 -0
- package/test/datahike/test/purge_test.cljc +144 -0
- package/test/datahike/test/query_aggregates_test.cljc +101 -0
- package/test/datahike/test/query_find_specs_test.cljc +52 -0
- package/test/datahike/test/query_fns_test.cljc +523 -0
- package/test/datahike/test/query_interop_test.cljc +47 -0
- package/test/datahike/test/query_not_test.cljc +189 -0
- package/test/datahike/test/query_or_test.cljc +158 -0
- package/test/datahike/test/query_pull_test.cljc +147 -0
- package/test/datahike/test/query_rules_test.cljc +248 -0
- package/test/datahike/test/query_stats_test.cljc +218 -0
- package/test/datahike/test/query_test.cljc +984 -0
- package/test/datahike/test/schema_test.cljc +424 -0
- package/test/datahike/test/specification_test.cljc +30 -0
- package/test/datahike/test/store_test.cljc +78 -0
- package/test/datahike/test/stress_test.cljc +57 -0
- package/test/datahike/test/time_variance_test.cljc +518 -0
- package/test/datahike/test/tools_test.clj +134 -0
- package/test/datahike/test/transact_test.cljc +518 -0
- package/test/datahike/test/tuples_test.cljc +564 -0
- package/test/datahike/test/unstructured_test.cljc +291 -0
- package/test/datahike/test/upsert_impl_test.cljc +205 -0
- package/test/datahike/test/upsert_test.cljc +363 -0
- package/test/datahike/test/utils.cljc +110 -0
- package/test/datahike/test/validation_test.cljc +48 -0
- package/test/datahike/test/versioning_test.cljc +56 -0
- package/test/datahike/test.cljc +66 -0
- package/tests.edn +24 -0
|
@@ -0,0 +1,970 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN'
|
|
3
|
+
'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
|
|
4
|
+
<svg fill-opacity="1" xmlns:xlink="http://www.w3.org/1999/xlink" color-rendering="auto" color-interpolation="auto" text-rendering="auto" stroke="black" stroke-linecap="square" width="1598" stroke-miterlimit="10" shape-rendering="auto" stroke-opacity="1" fill="black" stroke-dasharray="none" font-weight="normal" stroke-width="1" height="977" xmlns="http://www.w3.org/2000/svg" font-family="'Dialog'" font-style="normal" stroke-linejoin="miter" font-size="12px" stroke-dashoffset="0" image-rendering="auto"
|
|
5
|
+
><!--Generated by the Batik Graphics2D SVG Generator--><defs id="genericDefs"
|
|
6
|
+
/><g
|
|
7
|
+
><defs id="defs1"
|
|
8
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath1"
|
|
9
|
+
><path d="M0 0 L5380 0 L5380 2913 L0 2913 L0 0 Z"
|
|
10
|
+
/></clipPath
|
|
11
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath2"
|
|
12
|
+
><path d="M0 0 L0 977 L1598 977 L1598 0 Z"
|
|
13
|
+
/></clipPath
|
|
14
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath3"
|
|
15
|
+
><path d="M0 0 L0 135 L226 135 L226 0 Z"
|
|
16
|
+
/></clipPath
|
|
17
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath4"
|
|
18
|
+
><path d="M0 0 L0 433 L815 433 L815 0 Z"
|
|
19
|
+
/></clipPath
|
|
20
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath5"
|
|
21
|
+
><path d="M0 0 L0 210 L437 210 L437 0 Z"
|
|
22
|
+
/></clipPath
|
|
23
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath6"
|
|
24
|
+
><path d="M0 0 L0 135 L228 135 L228 0 Z"
|
|
25
|
+
/></clipPath
|
|
26
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath7"
|
|
27
|
+
><path d="M0 0 L0 135 L178 135 L178 0 Z"
|
|
28
|
+
/></clipPath
|
|
29
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath8"
|
|
30
|
+
><path d="M0 0 L0 135 L193 135 L193 0 Z"
|
|
31
|
+
/></clipPath
|
|
32
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath9"
|
|
33
|
+
><path d="M0 0 L0 137 L673 137 L673 0 Z"
|
|
34
|
+
/></clipPath
|
|
35
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath10"
|
|
36
|
+
><path d="M0 0 L0 135 L547 135 L547 0 Z"
|
|
37
|
+
/></clipPath
|
|
38
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath11"
|
|
39
|
+
><path d="M0 0 L0 135 L171 135 L171 0 Z"
|
|
40
|
+
/></clipPath
|
|
41
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath12"
|
|
42
|
+
><path d="M0 0 L0 135 L161 135 L161 0 Z"
|
|
43
|
+
/></clipPath
|
|
44
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath13"
|
|
45
|
+
><path d="M0 0 L0 135 L198 135 L198 0 Z"
|
|
46
|
+
/></clipPath
|
|
47
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath14"
|
|
48
|
+
><path d="M0 0 L0 135 L197 135 L197 0 Z"
|
|
49
|
+
/></clipPath
|
|
50
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath15"
|
|
51
|
+
><path d="M0 0 L0 135 L133 135 L133 0 Z"
|
|
52
|
+
/></clipPath
|
|
53
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath16"
|
|
54
|
+
><path d="M0 0 L0 135 L157 135 L157 0 Z"
|
|
55
|
+
/></clipPath
|
|
56
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath17"
|
|
57
|
+
><path d="M0 0 L0 185 L475 185 L475 0 Z"
|
|
58
|
+
/></clipPath
|
|
59
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath18"
|
|
60
|
+
><path d="M0 0 L0 135 L386 135 L386 0 Z"
|
|
61
|
+
/></clipPath
|
|
62
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath19"
|
|
63
|
+
><path d="M0 0 L0 135 L379 135 L379 0 Z"
|
|
64
|
+
/></clipPath
|
|
65
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath20"
|
|
66
|
+
><path d="M0 0 L0 135 L255 135 L255 0 Z"
|
|
67
|
+
/></clipPath
|
|
68
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath21"
|
|
69
|
+
><path d="M0 0 L0 135 L327 135 L327 0 Z"
|
|
70
|
+
/></clipPath
|
|
71
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath22"
|
|
72
|
+
><path d="M0 0 L0 135 L156 135 L156 0 Z"
|
|
73
|
+
/></clipPath
|
|
74
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath23"
|
|
75
|
+
><path d="M0 0 L0 160 L578 160 L578 0 Z"
|
|
76
|
+
/></clipPath
|
|
77
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath24"
|
|
78
|
+
><path d="M0 0 L0 135 L427 135 L427 0 Z"
|
|
79
|
+
/></clipPath
|
|
80
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath25"
|
|
81
|
+
><path d="M0 0 L0 135 L428 135 L428 0 Z"
|
|
82
|
+
/></clipPath
|
|
83
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath26"
|
|
84
|
+
><path d="M0 0 L0 135 L418 135 L418 0 Z"
|
|
85
|
+
/></clipPath
|
|
86
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath27"
|
|
87
|
+
><path d="M0 0 L0 135 L287 135 L287 0 Z"
|
|
88
|
+
/></clipPath
|
|
89
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath28"
|
|
90
|
+
><path d="M0 0 L0 160 L528 160 L528 0 Z"
|
|
91
|
+
/></clipPath
|
|
92
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath29"
|
|
93
|
+
><path d="M0 0 L0 135 L312 135 L312 0 Z"
|
|
94
|
+
/></clipPath
|
|
95
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath30"
|
|
96
|
+
><path d="M0 0 L0 135 L429 135 L429 0 Z"
|
|
97
|
+
/></clipPath
|
|
98
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath31"
|
|
99
|
+
><path d="M0 0 L0 401 L729 401 L729 0 Z"
|
|
100
|
+
/></clipPath
|
|
101
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath32"
|
|
102
|
+
><path d="M0 0 L0 231 L296 231 L296 0 Z"
|
|
103
|
+
/></clipPath
|
|
104
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath33"
|
|
105
|
+
><path d="M0 0 L0 135 L183 135 L183 0 Z"
|
|
106
|
+
/></clipPath
|
|
107
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath34"
|
|
108
|
+
><path d="M0 0 L0 208 L534 208 L534 0 Z"
|
|
109
|
+
/></clipPath
|
|
110
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath35"
|
|
111
|
+
><path d="M0 0 L0 135 L432 135 L432 0 Z"
|
|
112
|
+
/></clipPath
|
|
113
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath36"
|
|
114
|
+
><path d="M0 0 L0 160 L541 160 L541 0 Z"
|
|
115
|
+
/></clipPath
|
|
116
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath37"
|
|
117
|
+
><path d="M0 0 L0 135 L351 135 L351 0 Z"
|
|
118
|
+
/></clipPath
|
|
119
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath38"
|
|
120
|
+
><path d="M0 0 L0 135 L231 135 L231 0 Z"
|
|
121
|
+
/></clipPath
|
|
122
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath39"
|
|
123
|
+
><path d="M0 0 L0 49 L155 49 L155 0 Z"
|
|
124
|
+
/></clipPath
|
|
125
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath40"
|
|
126
|
+
><path d="M0 -0.672105133533 L0 44.134944915771 L141.736587524414 44.134944915771 L141.736587524414 -0.672105133533 Z"
|
|
127
|
+
/></clipPath
|
|
128
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath41"
|
|
129
|
+
><path d="M0 0 L0 21 L112 21 L112 0 Z"
|
|
130
|
+
/></clipPath
|
|
131
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath42"
|
|
132
|
+
><path d="M0 -0.288045048714 L0 18.914978027344 L102.416114807129 18.914978027344 L102.416114807129 -0.288045048714 Z"
|
|
133
|
+
/></clipPath
|
|
134
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath43"
|
|
135
|
+
><path d="M-57 -57 L-57 78 L169 78 L169 -57 Z"
|
|
136
|
+
/></clipPath
|
|
137
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath44"
|
|
138
|
+
><path d="M0 0 L0 21 L120 21 L120 0 Z"
|
|
139
|
+
/></clipPath
|
|
140
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath45"
|
|
141
|
+
><path d="M0 -0.288045048714 L0 18.914978027344 L109.731552124023 18.914978027344 L109.731552124023 -0.288045048714 Z"
|
|
142
|
+
/></clipPath
|
|
143
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath46"
|
|
144
|
+
><path d="M0 0 L0 21 L187 21 L187 0 Z"
|
|
145
|
+
/></clipPath
|
|
146
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath47"
|
|
147
|
+
><path d="M0 -0.288045048714 L0 18.914978027344 L170.998336791992 18.914978027344 L170.998336791992 -0.288045048714 Z"
|
|
148
|
+
/></clipPath
|
|
149
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath48"
|
|
150
|
+
><path d="M0 0 L0 21 L114 21 L114 0 Z"
|
|
151
|
+
/></clipPath
|
|
152
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath49"
|
|
153
|
+
><path d="M0 -0.288045048714 L0 18.914978027344 L104.244979858398 18.914978027344 L104.244979858398 -0.288045048714 Z"
|
|
154
|
+
/></clipPath
|
|
155
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath50"
|
|
156
|
+
><path d="M-57 -57 L-57 78 L171 78 L171 -57 Z"
|
|
157
|
+
/></clipPath
|
|
158
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath51"
|
|
159
|
+
><path d="M0 0 L0 21 L64 21 L64 0 Z"
|
|
160
|
+
/></clipPath
|
|
161
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath52"
|
|
162
|
+
><path d="M0 -0.288045048714 L0 18.914978027344 L58.523494720459 18.914978027344 L58.523494720459 -0.288045048714 Z"
|
|
163
|
+
/></clipPath
|
|
164
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath53"
|
|
165
|
+
><path d="M-57 -57 L-57 78 L121 78 L121 -57 Z"
|
|
166
|
+
/></clipPath
|
|
167
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath54"
|
|
168
|
+
><path d="M0 0 L0 21 L79 21 L79 0 Z"
|
|
169
|
+
/></clipPath
|
|
170
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath55"
|
|
171
|
+
><path d="M0 -0.288045048714 L0 18.914978027344 L72.239944458008 18.914978027344 L72.239944458008 -0.288045048714 Z"
|
|
172
|
+
/></clipPath
|
|
173
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath56"
|
|
174
|
+
><path d="M-57 -57 L-57 78 L136 78 L136 -57 Z"
|
|
175
|
+
/></clipPath
|
|
176
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath57"
|
|
177
|
+
><path d="M-193 -94 L-193 116 L244 116 L244 -94 Z"
|
|
178
|
+
/></clipPath
|
|
179
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath58"
|
|
180
|
+
><path d="M0 0 L0 21 L104 21 L104 0 Z"
|
|
181
|
+
/></clipPath
|
|
182
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath59"
|
|
183
|
+
><path d="M0 -0.288045048714 L0 18.914978027344 L95.100685119629 18.914978027344 L95.100685119629 -0.288045048714 Z"
|
|
184
|
+
/></clipPath
|
|
185
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath60"
|
|
186
|
+
><path d="M0 0 L0 21 L433 21 L433 0 Z"
|
|
187
|
+
/></clipPath
|
|
188
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath61"
|
|
189
|
+
><path d="M0 -0.288045048714 L0 18.914978027344 L395.948028564453 18.914978027344 L395.948028564453 -0.288045048714 Z"
|
|
190
|
+
/></clipPath
|
|
191
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath62"
|
|
192
|
+
><path d="M-57 -57 L-57 78 L490 78 L490 -57 Z"
|
|
193
|
+
/></clipPath
|
|
194
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath63"
|
|
195
|
+
><path d="M-512 -59 L-512 78 L161 78 L161 -59 Z"
|
|
196
|
+
/></clipPath
|
|
197
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath64"
|
|
198
|
+
><path d="M0 0 L0 21 L57 21 L57 0 Z"
|
|
199
|
+
/></clipPath
|
|
200
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath65"
|
|
201
|
+
><path d="M0 -0.288045048714 L0 18.914978027344 L52.122489929199 18.914978027344 L52.122489929199 -0.288045048714 Z"
|
|
202
|
+
/></clipPath
|
|
203
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath66"
|
|
204
|
+
><path d="M-57 -57 L-57 78 L114 78 L114 -57 Z"
|
|
205
|
+
/></clipPath
|
|
206
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath67"
|
|
207
|
+
><path d="M0 0 L0 21 L47 21 L47 0 Z"
|
|
208
|
+
/></clipPath
|
|
209
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath68"
|
|
210
|
+
><path d="M0 -0.288045048714 L0 18.914978027344 L42.978191375732 18.914978027344 L42.978191375732 -0.288045048714 Z"
|
|
211
|
+
/></clipPath
|
|
212
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath69"
|
|
213
|
+
><path d="M-57 -57 L-57 78 L104 78 L104 -57 Z"
|
|
214
|
+
/></clipPath
|
|
215
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath70"
|
|
216
|
+
><path d="M0 0 L0 21 L84 21 L84 0 Z"
|
|
217
|
+
/></clipPath
|
|
218
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath71"
|
|
219
|
+
><path d="M0 -0.288045048714 L0 18.914978027344 L76.812088012695 18.914978027344 L76.812088012695 -0.288045048714 Z"
|
|
220
|
+
/></clipPath
|
|
221
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath72"
|
|
222
|
+
><path d="M-57 -57 L-57 78 L141 78 L141 -57 Z"
|
|
223
|
+
/></clipPath
|
|
224
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath73"
|
|
225
|
+
><path d="M0 0 L0 21 L83 21 L83 0 Z"
|
|
226
|
+
/></clipPath
|
|
227
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath74"
|
|
228
|
+
><path d="M0 -0.288045048714 L0 18.914978027344 L75.897659301758 18.914978027344 L75.897659301758 -0.288045048714 Z"
|
|
229
|
+
/></clipPath
|
|
230
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath75"
|
|
231
|
+
><path d="M-57 -57 L-57 78 L140 78 L140 -57 Z"
|
|
232
|
+
/></clipPath
|
|
233
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath76"
|
|
234
|
+
><path d="M0 0 L0 21 L19 21 L19 0 Z"
|
|
235
|
+
/></clipPath
|
|
236
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath77"
|
|
237
|
+
><path d="M0 -0.288045048714 L0 18.914978027344 L17.37416267395 18.914978027344 L17.37416267395 -0.288045048714 Z"
|
|
238
|
+
/></clipPath
|
|
239
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath78"
|
|
240
|
+
><path d="M-57 -57 L-57 78 L76 78 L76 -57 Z"
|
|
241
|
+
/></clipPath
|
|
242
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath79"
|
|
243
|
+
><path d="M0 0 L0 21 L43 21 L43 0 Z"
|
|
244
|
+
/></clipPath
|
|
245
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath80"
|
|
246
|
+
><path d="M0 -0.288045048714 L0 18.914978027344 L39.320472717285 18.914978027344 L39.320472717285 -0.288045048714 Z"
|
|
247
|
+
/></clipPath
|
|
248
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath81"
|
|
249
|
+
><path d="M-57 -57 L-57 78 L100 78 L100 -57 Z"
|
|
250
|
+
/></clipPath
|
|
251
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath82"
|
|
252
|
+
><path d="M-638 -183 L-638 250 L177 250 L177 -183 Z"
|
|
253
|
+
/></clipPath
|
|
254
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath83"
|
|
255
|
+
><path d="M0 0 L0 21 L67 21 L67 0 Z"
|
|
256
|
+
/></clipPath
|
|
257
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath84"
|
|
258
|
+
><path d="M0 -0.288045048714 L0 18.914978027344 L61.266784667969 18.914978027344 L61.266784667969 -0.288045048714 Z"
|
|
259
|
+
/></clipPath
|
|
260
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath85"
|
|
261
|
+
><path d="M0 0 L0 21 L272 21 L272 0 Z"
|
|
262
|
+
/></clipPath
|
|
263
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath86"
|
|
264
|
+
><path d="M0 -0.288045048714 L0 18.914978027344 L248.724853515625 18.914978027344 L248.724853515625 -0.288045048714 Z"
|
|
265
|
+
/></clipPath
|
|
266
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath87"
|
|
267
|
+
><path d="M-57 -57 L-57 78 L329 78 L329 -57 Z"
|
|
268
|
+
/></clipPath
|
|
269
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath88"
|
|
270
|
+
><path d="M0 0 L0 21 L265 21 L265 0 Z"
|
|
271
|
+
/></clipPath
|
|
272
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath89"
|
|
273
|
+
><path d="M0 -0.288045048714 L0 18.914978027344 L242.323852539062 18.914978027344 L242.323852539062 -0.288045048714 Z"
|
|
274
|
+
/></clipPath
|
|
275
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath90"
|
|
276
|
+
><path d="M-57 -57 L-57 78 L322 78 L322 -57 Z"
|
|
277
|
+
/></clipPath
|
|
278
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath91"
|
|
279
|
+
><path d="M0 0 L0 21 L141 21 L141 0 Z"
|
|
280
|
+
/></clipPath
|
|
281
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath92"
|
|
282
|
+
><path d="M0 -0.288045048714 L0 18.914978027344 L128.9345703125 18.914978027344 L128.9345703125 -0.288045048714 Z"
|
|
283
|
+
/></clipPath
|
|
284
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath93"
|
|
285
|
+
><path d="M-57 -57 L-57 78 L198 78 L198 -57 Z"
|
|
286
|
+
/></clipPath
|
|
287
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath94"
|
|
288
|
+
><path d="M-57 -82 L-57 103 L418 103 L418 -82 Z"
|
|
289
|
+
/></clipPath
|
|
290
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath95"
|
|
291
|
+
><path d="M0 0 L0 21 L127 21 L127 0 Z"
|
|
292
|
+
/></clipPath
|
|
293
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath96"
|
|
294
|
+
><path d="M0 -0.288045048714 L0 18.914978027344 L116.13256072998 18.914978027344 L116.13256072998 -0.288045048714 Z"
|
|
295
|
+
/></clipPath
|
|
296
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath97"
|
|
297
|
+
><path d="M0 0 L0 21 L42 21 L42 0 Z"
|
|
298
|
+
/></clipPath
|
|
299
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath98"
|
|
300
|
+
><path d="M0 -0.288045048714 L0 18.914978027344 L38.406044006348 18.914978027344 L38.406044006348 -0.288045048714 Z"
|
|
301
|
+
/></clipPath
|
|
302
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath99"
|
|
303
|
+
><path d="M-57 -57 L-57 78 L99 78 L99 -57 Z"
|
|
304
|
+
/></clipPath
|
|
305
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath100"
|
|
306
|
+
><path d="M-57 -57 L-57 78 L270 78 L270 -57 Z"
|
|
307
|
+
/></clipPath
|
|
308
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath101"
|
|
309
|
+
><path d="M0 0 L0 21 L128 21 L128 0 Z"
|
|
310
|
+
/></clipPath
|
|
311
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath102"
|
|
312
|
+
><path d="M0 -0.288045048714 L0 18.914978027344 L117.046989440918 18.914978027344 L117.046989440918 -0.288045048714 Z"
|
|
313
|
+
/></clipPath
|
|
314
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath103"
|
|
315
|
+
><path d="M0 0 L0 21 L313 21 L313 0 Z"
|
|
316
|
+
/></clipPath
|
|
317
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath104"
|
|
318
|
+
><path d="M0 -0.288045048714 L0 18.914978027344 L286.216461181641 18.914978027344 L286.216461181641 -0.288045048714 Z"
|
|
319
|
+
/></clipPath
|
|
320
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath105"
|
|
321
|
+
><path d="M-57 -57 L-57 78 L370 78 L370 -57 Z"
|
|
322
|
+
/></clipPath
|
|
323
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath106"
|
|
324
|
+
><path d="M0 0 L0 21 L314 21 L314 0 Z"
|
|
325
|
+
/></clipPath
|
|
326
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath107"
|
|
327
|
+
><path d="M0 -0.288045048714 L0 18.914978027344 L287.130889892578 18.914978027344 L287.130889892578 -0.288045048714 Z"
|
|
328
|
+
/></clipPath
|
|
329
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath108"
|
|
330
|
+
><path d="M-57 -57 L-57 78 L371 78 L371 -57 Z"
|
|
331
|
+
/></clipPath
|
|
332
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath109"
|
|
333
|
+
><path d="M-57 -69 L-57 91 L521 91 L521 -69 Z"
|
|
334
|
+
/></clipPath
|
|
335
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath110"
|
|
336
|
+
><path d="M0 0 L0 21 L85 21 L85 0 Z"
|
|
337
|
+
/></clipPath
|
|
338
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath111"
|
|
339
|
+
><path d="M0 -0.288045048714 L0 18.914978027344 L77.726516723633 18.914978027344 L77.726516723633 -0.288045048714 Z"
|
|
340
|
+
/></clipPath
|
|
341
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath112"
|
|
342
|
+
><path d="M0 0 L0 21 L173 21 L173 0 Z"
|
|
343
|
+
/></clipPath
|
|
344
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath113"
|
|
345
|
+
><path d="M0 -0.288045048714 L0 18.914978027344 L158.196319580078 18.914978027344 L158.196319580078 -0.288045048714 Z"
|
|
346
|
+
/></clipPath
|
|
347
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath114"
|
|
348
|
+
><path d="M-57 -57 L-57 78 L230 78 L230 -57 Z"
|
|
349
|
+
/></clipPath
|
|
350
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath115"
|
|
351
|
+
><path d="M-276 -57 L-276 78 L142 78 L142 -57 Z"
|
|
352
|
+
/></clipPath
|
|
353
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath116"
|
|
354
|
+
><path d="M0 0 L0 21 L77 21 L77 0 Z"
|
|
355
|
+
/></clipPath
|
|
356
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath117"
|
|
357
|
+
><path d="M0 -0.288045048714 L0 18.914978027344 L70.411079406738 18.914978027344 L70.411079406738 -0.288045048714 Z"
|
|
358
|
+
/></clipPath
|
|
359
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath118"
|
|
360
|
+
><path d="M0 0 L0 21 L198 21 L198 0 Z"
|
|
361
|
+
/></clipPath
|
|
362
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath119"
|
|
363
|
+
><path d="M0 -0.288045048714 L0 18.914978027344 L181.057067871094 18.914978027344 L181.057067871094 -0.288045048714 Z"
|
|
364
|
+
/></clipPath
|
|
365
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath120"
|
|
366
|
+
><path d="M-57 -57 L-57 78 L255 78 L255 -57 Z"
|
|
367
|
+
/></clipPath
|
|
368
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath121"
|
|
369
|
+
><path d="M0 0 L0 21 L315 21 L315 0 Z"
|
|
370
|
+
/></clipPath
|
|
371
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath122"
|
|
372
|
+
><path d="M0 -0.288045048714 L0 18.914978027344 L288.045318603516 18.914978027344 L288.045318603516 -0.288045048714 Z"
|
|
373
|
+
/></clipPath
|
|
374
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath123"
|
|
375
|
+
><path d="M-57 -57 L-57 78 L372 78 L372 -57 Z"
|
|
376
|
+
/></clipPath
|
|
377
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath124"
|
|
378
|
+
><path d="M-394 -69 L-394 91 L134 91 L134 -69 Z"
|
|
379
|
+
/></clipPath
|
|
380
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath125"
|
|
381
|
+
><path d="M0 0 L0 21 L69 21 L69 0 Z"
|
|
382
|
+
/></clipPath
|
|
383
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath126"
|
|
384
|
+
><path d="M0 -0.288045048714 L0 18.914978027344 L63.095645904541 18.914978027344 L63.095645904541 -0.288045048714 Z"
|
|
385
|
+
/></clipPath
|
|
386
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath127"
|
|
387
|
+
><path d="M-57 -57 L-57 78 L126 78 L126 -57 Z"
|
|
388
|
+
/></clipPath
|
|
389
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath128"
|
|
390
|
+
><path d="M-160 -96 L-160 135 L136 135 L136 -96 Z"
|
|
391
|
+
/></clipPath
|
|
392
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath129"
|
|
393
|
+
><path d="M0 0 L0 21 L58 21 L58 0 Z"
|
|
394
|
+
/></clipPath
|
|
395
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath130"
|
|
396
|
+
><path d="M0 -0.288045048714 L0 18.914978027344 L53.036918640137 18.914978027344 L53.036918640137 -0.288045048714 Z"
|
|
397
|
+
/></clipPath
|
|
398
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath131"
|
|
399
|
+
><path d="M0 0 L0 21 L318 21 L318 0 Z"
|
|
400
|
+
/></clipPath
|
|
401
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath132"
|
|
402
|
+
><path d="M0 -0.288045048714 L0 18.914978027344 L290.788635253906 18.914978027344 L290.788635253906 -0.288045048714 Z"
|
|
403
|
+
/></clipPath
|
|
404
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath133"
|
|
405
|
+
><path d="M-57 -57 L-57 78 L375 78 L375 -57 Z"
|
|
406
|
+
/></clipPath
|
|
407
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath134"
|
|
408
|
+
><path d="M-419 -91 L-419 117 L115 117 L115 -91 Z"
|
|
409
|
+
/></clipPath
|
|
410
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath135"
|
|
411
|
+
><path d="M-499 -142 L-499 259 L230 259 L230 -142 Z"
|
|
412
|
+
/></clipPath
|
|
413
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath136"
|
|
414
|
+
><path d="M0 0 L0 21 L168 21 L168 0 Z"
|
|
415
|
+
/></clipPath
|
|
416
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath137"
|
|
417
|
+
><path d="M0 -0.288045048714 L0 18.914978027344 L153.624176025391 18.914978027344 L153.624176025391 -0.288045048714 Z"
|
|
418
|
+
/></clipPath
|
|
419
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath138"
|
|
420
|
+
><path d="M0 0 L0 21 L237 21 L237 0 Z"
|
|
421
|
+
/></clipPath
|
|
422
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath139"
|
|
423
|
+
><path d="M0 -0.288045048714 L0 18.914978027344 L216.719818115234 18.914978027344 L216.719818115234 -0.288045048714 Z"
|
|
424
|
+
/></clipPath
|
|
425
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath140"
|
|
426
|
+
><path d="M-57 -57 L-57 78 L294 78 L294 -57 Z"
|
|
427
|
+
/></clipPath
|
|
428
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath141"
|
|
429
|
+
><path d="M0 0 L0 21 L117 21 L117 0 Z"
|
|
430
|
+
/></clipPath
|
|
431
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath142"
|
|
432
|
+
><path d="M0 -0.288045048714 L0 18.914978027344 L106.988265991211 18.914978027344 L106.988265991211 -0.288045048714 Z"
|
|
433
|
+
/></clipPath
|
|
434
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath143"
|
|
435
|
+
><path d="M-57 -57 L-57 78 L174 78 L174 -57 Z"
|
|
436
|
+
/></clipPath
|
|
437
|
+
><clipPath clipPathUnits="userSpaceOnUse" id="clipPath144"
|
|
438
|
+
><path d="M-57 -69 L-57 91 L484 91 L484 -69 Z"
|
|
439
|
+
/></clipPath
|
|
440
|
+
><font horiz-adv-x="60.009766" id="font1"
|
|
441
|
+
><font-face ascent="92.822266" font-style="normal" descent="23.583984" units-per-em="100" font-family="sans-serif" font-weight="normal"
|
|
442
|
+
/><missing-glyph horiz-adv-x="60.009766" d="M4.984375 -17.671875 L4.984375 70.515625 L54.984375 70.515625 L54.984375 -17.671875 L4.984375 -17.671875 ZM10.59375 -12.109375 L49.421875 -12.109375 L49.421875 64.890625 L10.59375 64.890625 L10.59375 -12.109375 Z"
|
|
443
|
+
/><glyph unicode="a" horiz-adv-x="61.279297" d="M34.28125 27.484375 Q23.390625 27.484375 19.1875 25 Q14.984375 22.515625 14.984375 16.5 Q14.984375 11.71875 18.140625 8.90625 Q21.296875 6.109375 26.703125 6.109375 Q34.1875 6.109375 38.703125 11.40625 Q43.21875 16.703125 43.21875 25.484375 L43.21875 27.484375 L34.28125 27.484375 ZM52.203125 31.203125 L52.203125 0 L43.21875 0 L43.21875 8.296875 Q40.140625 3.328125 35.546875 0.953125 Q30.953125 -1.421875 24.3125 -1.421875 Q15.921875 -1.421875 10.953125 3.296875 Q6 8.015625 6 15.921875 Q6 25.140625 12.171875 29.828125 Q18.359375 34.515625 30.609375 34.515625 L43.21875 34.515625 L43.21875 35.40625 Q43.21875 41.609375 39.140625 45 Q35.0625 48.390625 27.6875 48.390625 Q23 48.390625 18.546875 47.265625 Q14.109375 46.140625 10.015625 43.890625 L10.015625 52.203125 Q14.9375 54.109375 19.578125 55.046875 Q24.21875 56 28.609375 56 Q40.484375 56 46.34375 49.84375 Q52.203125 43.703125 52.203125 31.203125 Z"
|
|
444
|
+
/><glyph unicode="m" horiz-adv-x="97.41211" d="M52 44.1875 Q55.375 50.25 60.0625 53.125 Q64.75 56 71.09375 56 Q79.640625 56 84.28125 50.015625 Q88.921875 44.046875 88.921875 33.015625 L88.921875 0 L79.890625 0 L79.890625 32.71875 Q79.890625 40.578125 77.09375 44.375 Q74.3125 48.1875 68.609375 48.1875 Q61.625 48.1875 57.5625 43.546875 Q53.515625 38.921875 53.515625 30.90625 L53.515625 0 L44.484375 0 L44.484375 32.71875 Q44.484375 40.625 41.703125 44.40625 Q38.921875 48.1875 33.109375 48.1875 Q26.21875 48.1875 22.15625 43.53125 Q18.109375 38.875 18.109375 30.90625 L18.109375 0 L9.078125 0 L9.078125 54.6875 L18.109375 54.6875 L18.109375 46.1875 Q21.1875 51.21875 25.484375 53.609375 Q29.78125 56 35.6875 56 Q41.65625 56 45.828125 52.96875 Q50 49.953125 52 44.1875 Z"
|
|
445
|
+
/><glyph unicode="e" horiz-adv-x="61.523438" d="M56.203125 29.59375 L56.203125 25.203125 L14.890625 25.203125 Q15.484375 15.921875 20.484375 11.0625 Q25.484375 6.203125 34.421875 6.203125 Q39.59375 6.203125 44.453125 7.46875 Q49.3125 8.734375 54.109375 11.28125 L54.109375 2.78125 Q49.265625 0.734375 44.1875 -0.34375 Q39.109375 -1.421875 33.890625 -1.421875 Q20.796875 -1.421875 13.15625 6.1875 Q5.515625 13.8125 5.515625 26.8125 Q5.515625 40.234375 12.765625 48.109375 Q20.015625 56 32.328125 56 Q43.359375 56 49.78125 48.890625 Q56.203125 41.796875 56.203125 29.59375 ZM47.21875 32.234375 Q47.125 39.59375 43.09375 43.984375 Q39.0625 48.390625 32.421875 48.390625 Q24.90625 48.390625 20.390625 44.140625 Q15.875 39.890625 15.1875 32.171875 L47.21875 32.234375 Z"
|
|
446
|
+
/><glyph unicode="h" horiz-adv-x="63.378906" d="M54.890625 33.015625 L54.890625 0 L45.90625 0 L45.90625 32.71875 Q45.90625 40.484375 42.875 44.328125 Q39.84375 48.1875 33.796875 48.1875 Q26.515625 48.1875 22.3125 43.546875 Q18.109375 38.921875 18.109375 30.90625 L18.109375 0 L9.078125 0 L9.078125 75.984375 L18.109375 75.984375 L18.109375 46.1875 Q21.34375 51.125 25.703125 53.5625 Q30.078125 56 35.796875 56 Q45.21875 56 50.046875 50.171875 Q54.890625 44.34375 54.890625 33.015625 Z"
|
|
447
|
+
/><glyph unicode="c" horiz-adv-x="54.98047" d="M48.78125 52.59375 L48.78125 44.1875 Q44.96875 46.296875 41.140625 47.34375 Q37.3125 48.390625 33.40625 48.390625 Q24.65625 48.390625 19.8125 42.84375 Q14.984375 37.3125 14.984375 27.296875 Q14.984375 17.28125 19.8125 11.734375 Q24.65625 6.203125 33.40625 6.203125 Q37.3125 6.203125 41.140625 7.25 Q44.96875 8.296875 48.78125 10.40625 L48.78125 2.09375 Q45.015625 0.34375 40.984375 -0.53125 Q36.96875 -1.421875 32.421875 -1.421875 Q20.0625 -1.421875 12.78125 6.34375 Q5.515625 14.109375 5.515625 27.296875 Q5.515625 40.671875 12.859375 48.328125 Q20.21875 56 33.015625 56 Q37.15625 56 41.109375 55.140625 Q45.0625 54.296875 48.78125 52.59375 Z"
|
|
448
|
+
/><glyph unicode="S" horiz-adv-x="63.476562" d="M53.515625 70.515625 L53.515625 60.890625 Q47.90625 63.578125 42.921875 64.890625 Q37.9375 66.21875 33.296875 66.21875 Q25.25 66.21875 20.875 63.09375 Q16.5 59.96875 16.5 54.203125 Q16.5 49.359375 19.40625 46.890625 Q22.3125 44.4375 30.421875 42.921875 L36.375 41.703125 Q47.40625 39.59375 52.65625 34.296875 Q57.90625 29 57.90625 20.125 Q57.90625 9.515625 50.796875 4.046875 Q43.703125 -1.421875 29.984375 -1.421875 Q24.8125 -1.421875 18.96875 -0.25 Q13.140625 0.921875 6.890625 3.21875 L6.890625 13.375 Q12.890625 10.015625 18.65625 8.296875 Q24.421875 6.59375 29.984375 6.59375 Q38.421875 6.59375 43.015625 9.90625 Q47.609375 13.234375 47.609375 19.390625 Q47.609375 24.75 44.3125 27.78125 Q41.015625 30.8125 33.5 32.328125 L27.484375 33.5 Q16.453125 35.6875 11.515625 40.375 Q6.59375 45.0625 6.59375 53.421875 Q6.59375 63.09375 13.40625 68.65625 Q20.21875 74.21875 32.171875 74.21875 Q37.3125 74.21875 42.625 73.28125 Q47.953125 72.359375 53.515625 70.515625 Z"
|
|
449
|
+
/><glyph unicode="g" horiz-adv-x="63.476562" d="M45.40625 27.984375 Q45.40625 37.75 41.375 43.109375 Q37.359375 48.484375 30.078125 48.484375 Q22.859375 48.484375 18.828125 43.109375 Q14.796875 37.75 14.796875 27.984375 Q14.796875 18.265625 18.828125 12.890625 Q22.859375 7.515625 30.078125 7.515625 Q37.359375 7.515625 41.375 12.890625 Q45.40625 18.265625 45.40625 27.984375 ZM54.390625 6.78125 Q54.390625 -7.171875 48.1875 -13.984375 Q42 -20.796875 29.203125 -20.796875 Q24.46875 -20.796875 20.265625 -20.09375 Q16.0625 -19.390625 12.109375 -17.921875 L12.109375 -9.1875 Q16.0625 -11.328125 19.921875 -12.34375 Q23.78125 -13.375 27.78125 -13.375 Q36.625 -13.375 41.015625 -8.765625 Q45.40625 -4.15625 45.40625 5.171875 L45.40625 9.625 Q42.625 4.78125 38.28125 2.390625 Q33.9375 0 27.875 0 Q17.828125 0 11.671875 7.65625 Q5.515625 15.328125 5.515625 27.984375 Q5.515625 40.671875 11.671875 48.328125 Q17.828125 56 27.875 56 Q33.9375 56 38.28125 53.609375 Q42.625 51.21875 45.40625 46.390625 L45.40625 54.6875 L54.390625 54.6875 L54.390625 6.78125 Z"
|
|
450
|
+
/><glyph unicode="i" horiz-adv-x="27.783203" d="M9.421875 54.6875 L18.40625 54.6875 L18.40625 0 L9.421875 0 L9.421875 54.6875 ZM9.421875 75.984375 L18.40625 75.984375 L18.40625 64.59375 L9.421875 64.59375 L9.421875 75.984375 Z"
|
|
451
|
+
/><glyph unicode="l" horiz-adv-x="27.783203" d="M9.421875 75.984375 L18.40625 75.984375 L18.40625 0 L9.421875 0 L9.421875 75.984375 Z"
|
|
452
|
+
/><glyph unicode="d" horiz-adv-x="63.476562" d="M45.40625 46.390625 L45.40625 75.984375 L54.390625 75.984375 L54.390625 0 L45.40625 0 L45.40625 8.203125 Q42.578125 3.328125 38.25 0.953125 Q33.9375 -1.421875 27.875 -1.421875 Q17.96875 -1.421875 11.734375 6.484375 Q5.515625 14.40625 5.515625 27.296875 Q5.515625 40.1875 11.734375 48.09375 Q17.96875 56 27.875 56 Q33.9375 56 38.25 53.625 Q42.578125 51.265625 45.40625 46.390625 ZM14.796875 27.296875 Q14.796875 17.390625 18.875 11.75 Q22.953125 6.109375 30.078125 6.109375 Q37.203125 6.109375 41.296875 11.75 Q45.40625 17.390625 45.40625 27.296875 Q45.40625 37.203125 41.296875 42.84375 Q37.203125 48.484375 30.078125 48.484375 Q22.953125 48.484375 18.875 42.84375 Q14.796875 37.203125 14.796875 27.296875 Z"
|
|
453
|
+
/><glyph unicode="n" horiz-adv-x="63.378906" d="M54.890625 33.015625 L54.890625 0 L45.90625 0 L45.90625 32.71875 Q45.90625 40.484375 42.875 44.328125 Q39.84375 48.1875 33.796875 48.1875 Q26.515625 48.1875 22.3125 43.546875 Q18.109375 38.921875 18.109375 30.90625 L18.109375 0 L9.078125 0 L9.078125 54.6875 L18.109375 54.6875 L18.109375 46.1875 Q21.34375 51.125 25.703125 53.5625 Q30.078125 56 35.796875 56 Q45.21875 56 50.046875 50.171875 Q54.890625 44.34375 54.890625 33.015625 Z"
|
|
454
|
+
/><glyph unicode=" " horiz-adv-x="31.78711" d=""
|
|
455
|
+
/><glyph unicode="o" horiz-adv-x="61.18164" d="M30.609375 48.390625 Q23.390625 48.390625 19.1875 42.75 Q14.984375 37.109375 14.984375 27.296875 Q14.984375 17.484375 19.15625 11.84375 Q23.34375 6.203125 30.609375 6.203125 Q37.796875 6.203125 41.984375 11.859375 Q46.1875 17.53125 46.1875 27.296875 Q46.1875 37.015625 41.984375 42.703125 Q37.796875 48.390625 30.609375 48.390625 ZM30.609375 56 Q42.328125 56 49.015625 48.375 Q55.71875 40.765625 55.71875 27.296875 Q55.71875 13.875 49.015625 6.21875 Q42.328125 -1.421875 30.609375 -1.421875 Q18.84375 -1.421875 12.171875 6.21875 Q5.515625 13.875 5.515625 27.296875 Q5.515625 40.765625 12.171875 48.375 Q18.84375 56 30.609375 56 Z"
|
|
456
|
+
/><glyph unicode="r" horiz-adv-x="41.11328" d="M41.109375 46.296875 Q39.59375 47.171875 37.8125 47.578125 Q36.03125 48 33.890625 48 Q26.265625 48 22.1875 43.046875 Q18.109375 38.09375 18.109375 28.8125 L18.109375 0 L9.078125 0 L9.078125 54.6875 L18.109375 54.6875 L18.109375 46.1875 Q20.953125 51.171875 25.484375 53.578125 Q30.03125 56 36.53125 56 Q37.453125 56 38.578125 55.875 Q39.703125 55.765625 41.0625 55.515625 L41.109375 46.296875 Z"
|
|
457
|
+
/><glyph unicode="*" horiz-adv-x="50.0" d="M47.015625 60.890625 L29.5 51.421875 L47.015625 41.890625 L44.1875 37.109375 L27.78125 47.015625 L27.78125 28.609375 L22.21875 28.609375 L22.21875 47.015625 L5.8125 37.109375 L2.984375 41.890625 L20.515625 51.421875 L2.984375 60.890625 L5.8125 65.71875 L22.21875 55.8125 L22.21875 74.21875 L27.78125 74.21875 L27.78125 55.8125 L44.1875 65.71875 L47.015625 60.890625 Z"
|
|
458
|
+
/><glyph unicode="/" horiz-adv-x="33.691406" d="M25.390625 72.90625 L33.6875 72.90625 L8.296875 -9.28125 L0 -9.28125 L25.390625 72.90625 Z"
|
|
459
|
+
/><glyph unicode=":" horiz-adv-x="33.691406" d="M11.71875 12.40625 L22.015625 12.40625 L22.015625 0 L11.71875 0 L11.71875 12.40625 ZM11.71875 51.703125 L22.015625 51.703125 L22.015625 39.3125 L11.71875 39.3125 L11.71875 51.703125 Z"
|
|
460
|
+
/><glyph unicode="s" horiz-adv-x="52.09961" d="M44.28125 53.078125 L44.28125 44.578125 Q40.484375 46.53125 36.375 47.5 Q32.28125 48.484375 27.875 48.484375 Q21.1875 48.484375 17.84375 46.4375 Q14.5 44.390625 14.5 40.28125 Q14.5 37.15625 16.890625 35.375 Q19.28125 33.59375 26.515625 31.984375 L29.59375 31.296875 Q39.15625 29.25 43.1875 25.515625 Q47.21875 21.78125 47.21875 15.09375 Q47.21875 7.46875 41.1875 3.015625 Q35.15625 -1.421875 24.609375 -1.421875 Q20.21875 -1.421875 15.453125 -0.5625 Q10.6875 0.296875 5.421875 2 L5.421875 11.28125 Q10.40625 8.6875 15.234375 7.390625 Q20.0625 6.109375 24.8125 6.109375 Q31.15625 6.109375 34.5625 8.28125 Q37.984375 10.453125 37.984375 14.40625 Q37.984375 18.0625 35.515625 20.015625 Q33.0625 21.96875 24.703125 23.78125 L21.578125 24.515625 Q13.234375 26.265625 9.515625 29.90625 Q5.8125 33.546875 5.8125 39.890625 Q5.8125 47.609375 11.28125 51.796875 Q16.75 56 26.8125 56 Q31.78125 56 36.171875 55.265625 Q40.578125 54.546875 44.28125 53.078125 Z"
|
|
461
|
+
/><glyph unicode="u" horiz-adv-x="63.378906" d="M8.5 21.578125 L8.5 54.6875 L17.484375 54.6875 L17.484375 21.921875 Q17.484375 14.15625 20.5 10.265625 Q23.53125 6.390625 29.59375 6.390625 Q36.859375 6.390625 41.078125 11.03125 Q45.3125 15.671875 45.3125 23.6875 L45.3125 54.6875 L54.296875 54.6875 L54.296875 0 L45.3125 0 L45.3125 8.40625 Q42.046875 3.421875 37.71875 1 Q33.40625 -1.421875 27.6875 -1.421875 Q18.265625 -1.421875 13.375 4.4375 Q8.5 10.296875 8.5 21.578125 ZM31.109375 56 L31.109375 56 Z"
|
|
462
|
+
/><glyph unicode="b" horiz-adv-x="63.476562" d="M48.6875 27.296875 Q48.6875 37.203125 44.609375 42.84375 Q40.53125 48.484375 33.40625 48.484375 Q26.265625 48.484375 22.1875 42.84375 Q18.109375 37.203125 18.109375 27.296875 Q18.109375 17.390625 22.1875 11.75 Q26.265625 6.109375 33.40625 6.109375 Q40.53125 6.109375 44.609375 11.75 Q48.6875 17.390625 48.6875 27.296875 ZM18.109375 46.390625 Q20.953125 51.265625 25.265625 53.625 Q29.59375 56 35.59375 56 Q45.5625 56 51.78125 48.09375 Q58.015625 40.1875 58.015625 27.296875 Q58.015625 14.40625 51.78125 6.484375 Q45.5625 -1.421875 35.59375 -1.421875 Q29.59375 -1.421875 25.265625 0.953125 Q20.953125 3.328125 18.109375 8.203125 L18.109375 0 L9.078125 0 L9.078125 75.984375 L18.109375 75.984375 L18.109375 46.390625 Z"
|
|
463
|
+
/><glyph unicode="t" horiz-adv-x="39.208984" d="M18.3125 70.21875 L18.3125 54.6875 L36.8125 54.6875 L36.8125 47.703125 L18.3125 47.703125 L18.3125 18.015625 Q18.3125 11.328125 20.140625 9.421875 Q21.96875 7.515625 27.59375 7.515625 L36.8125 7.515625 L36.8125 0 L27.59375 0 Q17.1875 0 13.234375 3.875 Q9.28125 7.765625 9.28125 18.015625 L9.28125 47.703125 L2.6875 47.703125 L2.6875 54.6875 L9.28125 54.6875 L9.28125 70.21875 L18.3125 70.21875 Z"
|
|
464
|
+
/><glyph unicode="?" horiz-adv-x="53.07617" d="M19.09375 12.40625 L29 12.40625 L29 0 L19.09375 0 L19.09375 12.40625 ZM28.71875 19.578125 L19.390625 19.578125 L19.390625 27.09375 Q19.390625 32.03125 20.75 35.203125 Q22.125 38.375 26.515625 42.578125 L30.90625 46.921875 Q33.6875 49.515625 34.9375 51.8125 Q36.1875 54.109375 36.1875 56.5 Q36.1875 60.84375 32.984375 63.53125 Q29.78125 66.21875 24.515625 66.21875 Q20.65625 66.21875 16.28125 64.5 Q11.921875 62.796875 7.171875 59.515625 L7.171875 68.703125 Q11.765625 71.484375 16.46875 72.84375 Q21.1875 74.21875 26.21875 74.21875 Q35.203125 74.21875 40.640625 69.484375 Q46.09375 64.75 46.09375 56.984375 Q46.09375 53.265625 44.328125 49.921875 Q42.578125 46.578125 38.1875 42.390625 L33.890625 38.1875 Q31.59375 35.890625 30.640625 34.59375 Q29.6875 33.296875 29.296875 32.078125 Q29 31.0625 28.859375 29.59375 Q28.71875 28.125 28.71875 25.59375 L28.71875 19.578125 Z"
|
|
465
|
+
/><glyph unicode="y" horiz-adv-x="59.179688" d="M32.171875 -5.078125 Q28.375 -14.84375 24.75 -17.8125 Q21.140625 -20.796875 15.09375 -20.796875 L7.90625 -20.796875 L7.90625 -13.28125 L13.1875 -13.28125 Q16.890625 -13.28125 18.9375 -11.515625 Q21 -9.765625 23.484375 -3.21875 L25.09375 0.875 L2.984375 54.6875 L12.5 54.6875 L29.59375 11.921875 L46.6875 54.6875 L56.203125 54.6875 L32.171875 -5.078125 Z"
|
|
466
|
+
/><glyph unicode="f" horiz-adv-x="35.20508" d="M37.109375 75.984375 L37.109375 68.5 L28.515625 68.5 Q23.6875 68.5 21.796875 66.546875 Q19.921875 64.59375 19.921875 59.515625 L19.921875 54.6875 L34.71875 54.6875 L34.71875 47.703125 L19.921875 47.703125 L19.921875 0 L10.890625 0 L10.890625 47.703125 L2.296875 47.703125 L2.296875 54.6875 L10.890625 54.6875 L10.890625 58.5 Q10.890625 67.625 15.140625 71.796875 Q19.390625 75.984375 28.609375 75.984375 L37.109375 75.984375 Z"
|
|
467
|
+
/><glyph unicode="k" horiz-adv-x="57.910156" d="M9.078125 75.984375 L18.109375 75.984375 L18.109375 31.109375 L44.921875 54.6875 L56.390625 54.6875 L27.390625 29.109375 L57.625 0 L45.90625 0 L18.109375 26.703125 L18.109375 0 L9.078125 0 L9.078125 75.984375 Z"
|
|
468
|
+
/><glyph unicode="v" horiz-adv-x="59.179688" d="M2.984375 54.6875 L12.5 54.6875 L29.59375 8.796875 L46.6875 54.6875 L56.203125 54.6875 L35.6875 0 L23.484375 0 L2.984375 54.6875 Z"
|
|
469
|
+
/><glyph unicode="x" horiz-adv-x="59.179688" d="M54.890625 54.6875 L35.109375 28.078125 L55.90625 0 L45.3125 0 L29.390625 21.484375 L13.484375 0 L2.875 0 L24.125 28.609375 L4.6875 54.6875 L15.28125 54.6875 L29.78125 35.203125 L44.28125 54.6875 L54.890625 54.6875 Z"
|
|
470
|
+
/><glyph unicode="-" horiz-adv-x="36.083984" d="M4.890625 31.390625 L31.203125 31.390625 L31.203125 23.390625 L4.890625 23.390625 L4.890625 31.390625 Z"
|
|
471
|
+
/><glyph unicode="p" horiz-adv-x="63.476562" d="M18.109375 8.203125 L18.109375 -20.796875 L9.078125 -20.796875 L9.078125 54.6875 L18.109375 54.6875 L18.109375 46.390625 Q20.953125 51.265625 25.265625 53.625 Q29.59375 56 35.59375 56 Q45.5625 56 51.78125 48.09375 Q58.015625 40.1875 58.015625 27.296875 Q58.015625 14.40625 51.78125 6.484375 Q45.5625 -1.421875 35.59375 -1.421875 Q29.59375 -1.421875 25.265625 0.953125 Q20.953125 3.328125 18.109375 8.203125 ZM48.6875 27.296875 Q48.6875 37.203125 44.609375 42.84375 Q40.53125 48.484375 33.40625 48.484375 Q26.265625 48.484375 22.1875 42.84375 Q18.109375 37.203125 18.109375 27.296875 Q18.109375 17.390625 22.1875 11.75 Q26.265625 6.109375 33.40625 6.109375 Q40.53125 6.109375 44.609375 11.75 Q48.6875 17.390625 48.6875 27.296875 Z"
|
|
472
|
+
/><glyph unicode="C" horiz-adv-x="69.82422" d="M64.40625 67.28125 L64.40625 56.890625 Q59.421875 61.53125 53.78125 63.8125 Q48.140625 66.109375 41.796875 66.109375 Q29.296875 66.109375 22.65625 58.46875 Q16.015625 50.828125 16.015625 36.375 Q16.015625 21.96875 22.65625 14.328125 Q29.296875 6.6875 41.796875 6.6875 Q48.140625 6.6875 53.78125 8.984375 Q59.421875 11.28125 64.40625 15.921875 L64.40625 5.609375 Q59.234375 2.09375 53.4375 0.328125 Q47.65625 -1.421875 41.21875 -1.421875 Q24.65625 -1.421875 15.125 8.703125 Q5.609375 18.84375 5.609375 36.375 Q5.609375 53.953125 15.125 64.078125 Q24.65625 74.21875 41.21875 74.21875 Q47.75 74.21875 53.53125 72.484375 Q59.328125 70.75 64.40625 67.28125 Z"
|
|
473
|
+
/><glyph unicode="6" horiz-adv-x="63.623047" d="M33.015625 40.375 Q26.375 40.375 22.484375 35.828125 Q18.609375 31.296875 18.609375 23.390625 Q18.609375 15.53125 22.484375 10.953125 Q26.375 6.390625 33.015625 6.390625 Q39.65625 6.390625 43.53125 10.953125 Q47.40625 15.53125 47.40625 23.390625 Q47.40625 31.296875 43.53125 35.828125 Q39.65625 40.375 33.015625 40.375 ZM52.59375 71.296875 L52.59375 62.3125 Q48.875 64.0625 45.09375 64.984375 Q41.3125 65.921875 37.59375 65.921875 Q27.828125 65.921875 22.671875 59.328125 Q17.53125 52.734375 16.796875 39.40625 Q19.671875 43.65625 24.015625 45.921875 Q28.375 48.1875 33.59375 48.1875 Q44.578125 48.1875 50.953125 41.515625 Q57.328125 34.859375 57.328125 23.390625 Q57.328125 12.15625 50.6875 5.359375 Q44.046875 -1.421875 33.015625 -1.421875 Q20.359375 -1.421875 13.671875 8.265625 Q6.984375 17.96875 6.984375 36.375 Q6.984375 53.65625 15.1875 63.9375 Q23.390625 74.21875 37.203125 74.21875 Q40.921875 74.21875 44.703125 73.484375 Q48.484375 72.75 52.59375 71.296875 Z"
|
|
474
|
+
/><glyph unicode="3" horiz-adv-x="63.623047" d="M40.578125 39.3125 Q47.65625 37.796875 51.625 33 Q55.609375 28.21875 55.609375 21.1875 Q55.609375 10.40625 48.1875 4.484375 Q40.765625 -1.421875 27.09375 -1.421875 Q22.515625 -1.421875 17.65625 -0.515625 Q12.796875 0.390625 7.625 2.203125 L7.625 11.71875 Q11.71875 9.328125 16.59375 8.109375 Q21.484375 6.890625 26.8125 6.890625 Q36.078125 6.890625 40.9375 10.546875 Q45.796875 14.203125 45.796875 21.1875 Q45.796875 27.640625 41.28125 31.265625 Q36.765625 34.90625 28.71875 34.90625 L20.21875 34.90625 L20.21875 43.015625 L29.109375 43.015625 Q36.375 43.015625 40.234375 45.921875 Q44.09375 48.828125 44.09375 54.296875 Q44.09375 59.90625 40.109375 62.90625 Q36.140625 65.921875 28.71875 65.921875 Q24.65625 65.921875 20.015625 65.03125 Q15.375 64.15625 9.8125 62.3125 L9.8125 71.09375 Q15.4375 72.65625 20.34375 73.4375 Q25.25 74.21875 29.59375 74.21875 Q40.828125 74.21875 47.359375 69.109375 Q53.90625 64.015625 53.90625 55.328125 Q53.90625 49.265625 50.4375 45.09375 Q46.96875 40.921875 40.578125 39.3125 Z"
|
|
475
|
+
/><glyph unicode="1" horiz-adv-x="63.623047" d="M12.40625 8.296875 L28.515625 8.296875 L28.515625 63.921875 L10.984375 60.40625 L10.984375 69.390625 L28.421875 72.90625 L38.28125 72.90625 L38.28125 8.296875 L54.390625 8.296875 L54.390625 0 L12.40625 0 L12.40625 8.296875 Z"
|
|
476
|
+
/><glyph unicode="0" horiz-adv-x="63.623047" d="M31.78125 66.40625 Q24.171875 66.40625 20.328125 58.90625 Q16.5 51.421875 16.5 36.375 Q16.5 21.390625 20.328125 13.890625 Q24.171875 6.390625 31.78125 6.390625 Q39.453125 6.390625 43.28125 13.890625 Q47.125 21.390625 47.125 36.375 Q47.125 51.421875 43.28125 58.90625 Q39.453125 66.40625 31.78125 66.40625 ZM31.78125 74.21875 Q44.046875 74.21875 50.515625 64.515625 Q56.984375 54.828125 56.984375 36.375 Q56.984375 17.96875 50.515625 8.265625 Q44.046875 -1.421875 31.78125 -1.421875 Q19.53125 -1.421875 13.0625 8.265625 Q6.59375 17.96875 6.59375 36.375 Q6.59375 54.828125 13.0625 64.515625 Q19.53125 74.21875 31.78125 74.21875 Z"
|
|
477
|
+
/><glyph unicode="2" horiz-adv-x="63.623047" d="M19.1875 8.296875 L53.609375 8.296875 L53.609375 0 L7.328125 0 L7.328125 8.296875 Q12.9375 14.109375 22.625 23.890625 Q32.328125 33.6875 34.8125 36.53125 Q39.546875 41.84375 41.421875 45.53125 Q43.3125 49.21875 43.3125 52.78125 Q43.3125 58.59375 39.234375 62.25 Q35.15625 65.921875 28.609375 65.921875 Q23.96875 65.921875 18.8125 64.3125 Q13.671875 62.703125 7.8125 59.421875 L7.8125 69.390625 Q13.765625 71.78125 18.9375 73 Q24.125 74.21875 28.421875 74.21875 Q39.75 74.21875 46.484375 68.546875 Q53.21875 62.890625 53.21875 53.421875 Q53.21875 48.921875 51.53125 44.890625 Q49.859375 40.875 45.40625 35.40625 Q44.1875 33.984375 37.640625 27.21875 Q31.109375 20.453125 19.1875 8.296875 Z"
|
|
478
|
+
/><glyph unicode="." horiz-adv-x="31.78711" d="M10.6875 12.40625 L21 12.40625 L21 0 L10.6875 0 L10.6875 12.40625 Z"
|
|
479
|
+
/><glyph unicode="q" horiz-adv-x="63.476562" d="M14.796875 27.296875 Q14.796875 17.390625 18.875 11.75 Q22.953125 6.109375 30.078125 6.109375 Q37.203125 6.109375 41.296875 11.75 Q45.40625 17.390625 45.40625 27.296875 Q45.40625 37.203125 41.296875 42.84375 Q37.203125 48.484375 30.078125 48.484375 Q22.953125 48.484375 18.875 42.84375 Q14.796875 37.203125 14.796875 27.296875 ZM45.40625 8.203125 Q42.578125 3.328125 38.25 0.953125 Q33.9375 -1.421875 27.875 -1.421875 Q17.96875 -1.421875 11.734375 6.484375 Q5.515625 14.40625 5.515625 27.296875 Q5.515625 40.1875 11.734375 48.09375 Q17.96875 56 27.875 56 Q33.9375 56 38.25 53.625 Q42.578125 51.265625 45.40625 46.390625 L45.40625 54.6875 L54.390625 54.6875 L54.390625 -20.796875 L45.40625 -20.796875 L45.40625 8.203125 Z"
|
|
480
|
+
/><glyph unicode="T" horiz-adv-x="61.083984" d="M-0.296875 72.90625 L61.375 72.90625 L61.375 64.59375 L35.5 64.59375 L35.5 0 L25.59375 0 L25.59375 64.59375 L-0.296875 64.59375 L-0.296875 72.90625 Z"
|
|
481
|
+
/><glyph unicode="w" horiz-adv-x="81.78711" d="M4.203125 54.6875 L13.1875 54.6875 L24.421875 12.015625 L35.59375 54.6875 L46.1875 54.6875 L57.421875 12.015625 L68.609375 54.6875 L77.59375 54.6875 L63.28125 0 L52.6875 0 L40.921875 44.828125 L29.109375 0 L18.5 0 L4.203125 54.6875 Z"
|
|
482
|
+
/><glyph unicode="A" horiz-adv-x="68.4082" d="M34.1875 63.1875 L20.796875 26.90625 L47.609375 26.90625 L34.1875 63.1875 ZM28.609375 72.90625 L39.796875 72.90625 L67.578125 0 L57.328125 0 L50.6875 18.703125 L17.828125 18.703125 L11.1875 0 L0.78125 0 L28.609375 72.90625 Z"
|
|
483
|
+
/></font
|
|
484
|
+
></defs
|
|
485
|
+
><g font-size="13px" transform="translate(-1891,-968)" fill="white" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="crispEdges" stroke="white"
|
|
486
|
+
><rect x="0" width="5380" height="2913" y="0" clip-path="url(#clipPath1)" stroke="none"
|
|
487
|
+
/></g
|
|
488
|
+
><g fill="red" text-rendering="geometricPrecision" font-size="13px" font-family="sans-serif" stroke="red"
|
|
489
|
+
><path fill="none" d="M1011 362 C1025 362 1061 230 1084 230" clip-path="url(#clipPath2)"
|
|
490
|
+
/><path fill="none" d="M882 363 C868 363 694 163 671 163" clip-path="url(#clipPath2)" stroke="blue"
|
|
491
|
+
/><path fill="none" d="M871 377 C857 377 745 403 722 403" clip-path="url(#clipPath2)" stroke="lime"
|
|
492
|
+
/><path fill="none" d="M877 385 C863 385 717 512 694 512" clip-path="url(#clipPath2)" stroke="fuchsia"
|
|
493
|
+
/><path fill="none" d="M1020 367 C1034 367 1054 314 1077 314" clip-path="url(#clipPath2)" stroke="rgb(0,124,0)"
|
|
494
|
+
/><path fill="none" d="M1025 379 C1039 379 1049 414 1072 414" clip-path="url(#clipPath2)" stroke="rgb(124,0,124)"
|
|
495
|
+
/><path fill="none" d="M1002 394 C1016 394 1052 551 1075 551" clip-path="url(#clipPath2)" stroke="rgb(0,124,124)"
|
|
496
|
+
/><path fill="none" d="M905 396 C891 396 788 748 765 748" clip-path="url(#clipPath2)" stroke="rgb(124,124,0)"
|
|
497
|
+
/><path fill="none" d="M989 397 C1003 397 1034 654 1057 654" clip-path="url(#clipPath2)" stroke="aqua"
|
|
498
|
+
/></g
|
|
499
|
+
><g fill="white" text-rendering="geometricPrecision" font-size="24px" font-family="sans-serif" transform="translate(871,352)" stroke="white"
|
|
500
|
+
><ellipse rx="76.5" ry="23.5" clip-path="url(#clipPath39)" cx="77.5" cy="24.5" stroke="none"
|
|
501
|
+
/></g
|
|
502
|
+
><g stroke-linecap="butt" font-size="24px" transform="translate(871,352)" fill="gray" text-rendering="geometricPrecision" font-family="sans-serif" stroke="gray" stroke-width="1.127399802208" stroke-miterlimit="1"
|
|
503
|
+
><ellipse rx="77" fill="none" ry="24" clip-path="url(#clipPath39)" cx="77" cy="24"
|
|
504
|
+
/></g
|
|
505
|
+
><g text-rendering="geometricPrecision" font-size="24px" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(871,352.734999299049) scale(1.093577861786,1.093577861786)"
|
|
506
|
+
><text x="20" xml:space="preserve" y="30" clip-path="url(#clipPath40)" stroke="none"
|
|
507
|
+
>Schema</text
|
|
508
|
+
></g
|
|
509
|
+
><g font-size="13.333333969116px" transform="translate(1057,633)" fill="white" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="crispEdges" stroke="white"
|
|
510
|
+
><rect x="0" width="112" height="20" y="0" clip-path="url(#clipPath41)" stroke="none"
|
|
511
|
+
/></g
|
|
512
|
+
><g text-rendering="geometricPrecision" font-size="13.333333969116px" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(1057,633.314999699593) scale(1.093577861786,1.093577861786)"
|
|
513
|
+
><text x="2" xml:space="preserve" y="13" clip-path="url(#clipPath42)" stroke="none"
|
|
514
|
+
>error handling</text
|
|
515
|
+
></g
|
|
516
|
+
><g stroke-linecap="butt" font-size="13px" transform="translate(1057,633)" fill="aqua" text-rendering="geometricPrecision" font-family="sans-serif" stroke="aqua" stroke-width="1.127399802208" stroke-miterlimit="1"
|
|
517
|
+
><line y2="21" fill="none" x1="0" clip-path="url(#clipPath43)" x2="112" y1="21"
|
|
518
|
+
/></g
|
|
519
|
+
><g fill="rgb(124,124,0)" text-rendering="geometricPrecision" font-size="13px" font-family="sans-serif" transform="translate(8,544)" stroke="rgb(124,124,0)"
|
|
520
|
+
><path fill="none" d="M638 204 C624 204 638 78 615 78" clip-path="url(#clipPath4)"
|
|
521
|
+
/><path fill="none" d="M638 204 C624 204 638 103 615 103" clip-path="url(#clipPath4)"
|
|
522
|
+
/><path fill="none" d="M638 204 C624 204 638 128 615 128" clip-path="url(#clipPath4)"
|
|
523
|
+
/><path fill="none" d="M638 204 C624 204 638 159 615 159" clip-path="url(#clipPath4)"
|
|
524
|
+
/><path fill="none" d="M638 204 C624 204 638 184 615 184" clip-path="url(#clipPath4)"
|
|
525
|
+
/><path fill="none" d="M638 204 C624 204 638 209 615 209" clip-path="url(#clipPath4)"
|
|
526
|
+
/><path fill="none" d="M638 204 C624 204 638 236 615 236" clip-path="url(#clipPath4)"
|
|
527
|
+
/><path fill="none" d="M638 204 C624 204 623 338 600 338" clip-path="url(#clipPath4)"
|
|
528
|
+
/></g
|
|
529
|
+
><g font-size="13.333333969116px" transform="translate(646,727)" fill="white" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="crispEdges" stroke="white"
|
|
530
|
+
><rect x="0" width="120" height="20" y="0" clip-path="url(#clipPath44)" stroke="none"
|
|
531
|
+
/></g
|
|
532
|
+
><g text-rendering="geometricPrecision" font-size="13.333333969116px" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(646,727.314999699593) scale(1.093577861786,1.093577861786)"
|
|
533
|
+
><text x="2" xml:space="preserve" y="13" clip-path="url(#clipPath45)" stroke="none"
|
|
534
|
+
>attributes: db/*</text
|
|
535
|
+
></g
|
|
536
|
+
><g fill="rgb(124,124,0)" text-rendering="geometricPrecision" font-size="13px" font-family="sans-serif" transform="translate(229,767)" stroke="rgb(124,124,0)"
|
|
537
|
+
><path fill="none" d="M193 115 C179 115 193 78 170 78" clip-path="url(#clipPath5)"
|
|
538
|
+
/><path fill="none" d="M193 115 C179 115 193 103 170 103" clip-path="url(#clipPath5)"
|
|
539
|
+
/><path fill="none" d="M193 115 C179 115 193 128 170 128" clip-path="url(#clipPath5)"
|
|
540
|
+
/><path fill="none" d="M193 115 C179 115 193 153 170 153" clip-path="url(#clipPath5)"
|
|
541
|
+
/></g
|
|
542
|
+
><g font-size="13.333333969116px" transform="translate(422,861)" fill="white" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="crispEdges" stroke="white"
|
|
543
|
+
><rect x="0" width="187" height="20" y="0" clip-path="url(#clipPath46)" stroke="none"
|
|
544
|
+
/></g
|
|
545
|
+
><g text-rendering="geometricPrecision" font-size="13.333333969116px" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(422,861.314999699593) scale(1.093577861786,1.093577861786)"
|
|
546
|
+
><text x="2" xml:space="preserve" y="13" clip-path="url(#clipPath47)" stroke="none"
|
|
547
|
+
>additional functionality?</text
|
|
548
|
+
></g
|
|
549
|
+
><g font-size="13.333333969116px" transform="translate(286,899)" fill="white" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="crispEdges" stroke="white"
|
|
550
|
+
><rect x="0" width="114" height="20" y="0" clip-path="url(#clipPath48)" stroke="none"
|
|
551
|
+
/></g
|
|
552
|
+
><g text-rendering="geometricPrecision" font-size="13.333333969116px" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(286,899.314999699593) scale(1.093577861786,1.093577861786)"
|
|
553
|
+
><text x="2" xml:space="preserve" y="13" clip-path="url(#clipPath49)" stroke="none"
|
|
554
|
+
>database links</text
|
|
555
|
+
></g
|
|
556
|
+
><g stroke-linecap="butt" font-size="13px" transform="translate(286,899)" fill="rgb(124,124,0)" text-rendering="geometricPrecision" font-family="sans-serif" stroke="rgb(124,124,0)" stroke-width="1.127399802208" stroke-miterlimit="1"
|
|
557
|
+
><line y2="21" fill="none" x1="0" clip-path="url(#clipPath50)" x2="114" y1="21"
|
|
558
|
+
/></g
|
|
559
|
+
><g font-size="13.333333969116px" transform="translate(336,874)" fill="white" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="crispEdges" stroke="white"
|
|
560
|
+
><rect x="0" width="64" height="20" y="0" clip-path="url(#clipPath51)" stroke="none"
|
|
561
|
+
/></g
|
|
562
|
+
><g text-rendering="geometricPrecision" font-size="13.333333969116px" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(336,874.314999699593) scale(1.093577861786,1.093577861786)"
|
|
563
|
+
><text x="2" xml:space="preserve" y="13" clip-path="url(#clipPath52)" stroke="none"
|
|
564
|
+
>triggers</text
|
|
565
|
+
></g
|
|
566
|
+
><g stroke-linecap="butt" font-size="13px" transform="translate(336,874)" fill="rgb(124,124,0)" text-rendering="geometricPrecision" font-family="sans-serif" stroke="rgb(124,124,0)" stroke-width="1.127399802208" stroke-miterlimit="1"
|
|
567
|
+
><line y2="21" fill="none" x1="0" clip-path="url(#clipPath53)" x2="64" y1="21"
|
|
568
|
+
/></g
|
|
569
|
+
><g font-size="13.333333969116px" transform="translate(321,849)" fill="white" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="crispEdges" stroke="white"
|
|
570
|
+
><rect x="0" width="79" height="20" y="0" clip-path="url(#clipPath54)" stroke="none"
|
|
571
|
+
/></g
|
|
572
|
+
><g text-rendering="geometricPrecision" font-size="13.333333969116px" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(321,849.314999699593) scale(1.093577861786,1.093577861786)"
|
|
573
|
+
><text x="2" xml:space="preserve" y="13" clip-path="url(#clipPath55)" stroke="none"
|
|
574
|
+
>invariants</text
|
|
575
|
+
></g
|
|
576
|
+
><g stroke-linecap="butt" font-size="13px" transform="translate(321,849)" fill="rgb(124,124,0)" text-rendering="geometricPrecision" font-family="sans-serif" stroke="rgb(124,124,0)" stroke-width="1.127399802208" stroke-miterlimit="1"
|
|
577
|
+
><line y2="21" fill="none" x1="0" clip-path="url(#clipPath56)" x2="79" y1="21"
|
|
578
|
+
/></g
|
|
579
|
+
><g font-size="13.333333969116px" transform="translate(336,824)" fill="white" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="crispEdges" stroke="white"
|
|
580
|
+
><rect x="0" width="64" height="20" y="0" clip-path="url(#clipPath51)" stroke="none"
|
|
581
|
+
/></g
|
|
582
|
+
><g text-rendering="geometricPrecision" font-size="13.333333969116px" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(336,824.314999699593) scale(1.093577861786,1.093577861786)"
|
|
583
|
+
><text x="2" xml:space="preserve" y="13" clip-path="url(#clipPath52)" stroke="none"
|
|
584
|
+
>full-text</text
|
|
585
|
+
></g
|
|
586
|
+
><g stroke-linecap="butt" font-size="13px" transform="translate(336,824)" fill="rgb(124,124,0)" text-rendering="geometricPrecision" font-family="sans-serif" stroke="rgb(124,124,0)" stroke-width="1.127399802208" stroke-miterlimit="1"
|
|
587
|
+
><line y2="21" fill="none" x1="0" clip-path="url(#clipPath53)" x2="64" y1="21"
|
|
588
|
+
/></g
|
|
589
|
+
><g stroke-linecap="butt" font-size="13px" transform="translate(422,861)" fill="rgb(124,124,0)" text-rendering="geometricPrecision" font-family="sans-serif" stroke="rgb(124,124,0)" stroke-width="1.127399802208" stroke-miterlimit="1"
|
|
590
|
+
><line y2="21" fill="none" x1="0" clip-path="url(#clipPath57)" x2="187" y1="21"
|
|
591
|
+
/></g
|
|
592
|
+
><g fill="rgb(124,124,0)" text-rendering="geometricPrecision" font-size="13px" font-family="sans-serif" transform="translate(8,700)" stroke="rgb(124,124,0)"
|
|
593
|
+
><path fill="none" d="M512 80 C498 80 512 78 489 78" clip-path="url(#clipPath9)"
|
|
594
|
+
/></g
|
|
595
|
+
><g font-size="13.333333969116px" transform="translate(520,759)" fill="white" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="crispEdges" stroke="white"
|
|
596
|
+
><rect x="0" width="104" height="20" y="0" clip-path="url(#clipPath58)" stroke="none"
|
|
597
|
+
/></g
|
|
598
|
+
><g text-rendering="geometricPrecision" font-size="13.333333969116px" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(520,759.314999699593) scale(1.093577861786,1.093577861786)"
|
|
599
|
+
><text x="2" xml:space="preserve" y="13" clip-path="url(#clipPath59)" stroke="none"
|
|
600
|
+
>isComponent</text
|
|
601
|
+
></g
|
|
602
|
+
><g font-size="13.333333969116px" transform="translate(65,757)" fill="white" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="crispEdges" stroke="white"
|
|
603
|
+
><rect x="0" width="433" height="20" y="0" clip-path="url(#clipPath60)" stroke="none"
|
|
604
|
+
/></g
|
|
605
|
+
><g text-rendering="geometricPrecision" font-size="13px" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(65,757.314999699593) scale(1.093577861786,1.093577861786)"
|
|
606
|
+
><text x="2" xml:space="preserve" y="13" clip-path="url(#clipPath61)" stroke="none"
|
|
607
|
+
>http://blog.datomic.com/2013/06/component-entities.html</text
|
|
608
|
+
></g
|
|
609
|
+
><g stroke-linecap="butt" font-size="13px" transform="translate(65,757)" fill="rgb(124,124,0)" text-rendering="geometricPrecision" font-family="sans-serif" stroke="rgb(124,124,0)" stroke-width="1.127399802208" stroke-miterlimit="1"
|
|
610
|
+
><line y2="21" fill="none" x1="0" clip-path="url(#clipPath62)" x2="433" y1="21"
|
|
611
|
+
/></g
|
|
612
|
+
><g stroke-linecap="butt" font-size="13px" transform="translate(520,759)" fill="rgb(124,124,0)" text-rendering="geometricPrecision" font-family="sans-serif" stroke="rgb(124,124,0)" stroke-width="1.127399802208" stroke-miterlimit="1"
|
|
613
|
+
><line y2="21" fill="none" x1="0" clip-path="url(#clipPath63)" x2="104" y1="21"
|
|
614
|
+
/></g
|
|
615
|
+
><g font-size="13.333333969116px" transform="translate(567,732)" fill="white" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="crispEdges" stroke="white"
|
|
616
|
+
><rect x="0" width="57" height="20" y="0" clip-path="url(#clipPath64)" stroke="none"
|
|
617
|
+
/></g
|
|
618
|
+
><g text-rendering="geometricPrecision" font-size="13.333333969116px" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(567,732.314999699593) scale(1.093577861786,1.093577861786)"
|
|
619
|
+
><text x="2" xml:space="preserve" y="13" clip-path="url(#clipPath65)" stroke="none"
|
|
620
|
+
>unique</text
|
|
621
|
+
></g
|
|
622
|
+
><g stroke-linecap="butt" font-size="13px" transform="translate(567,732)" fill="rgb(124,124,0)" text-rendering="geometricPrecision" font-family="sans-serif" stroke="rgb(124,124,0)" stroke-width="1.127399802208" stroke-miterlimit="1"
|
|
623
|
+
><line y2="21" fill="none" x1="0" clip-path="url(#clipPath66)" x2="57" y1="21"
|
|
624
|
+
/></g
|
|
625
|
+
><g font-size="13.333333969116px" transform="translate(577,707)" fill="white" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="crispEdges" stroke="white"
|
|
626
|
+
><rect x="0" width="47" height="20" y="0" clip-path="url(#clipPath67)" stroke="none"
|
|
627
|
+
/></g
|
|
628
|
+
><g text-rendering="geometricPrecision" font-size="13.333333969116px" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(577,707.314999699593) scale(1.093577861786,1.093577861786)"
|
|
629
|
+
><text x="2" xml:space="preserve" y="13" clip-path="url(#clipPath68)" stroke="none"
|
|
630
|
+
>index</text
|
|
631
|
+
></g
|
|
632
|
+
><g stroke-linecap="butt" font-size="13px" transform="translate(577,707)" fill="rgb(124,124,0)" text-rendering="geometricPrecision" font-family="sans-serif" stroke="rgb(124,124,0)" stroke-width="1.127399802208" stroke-miterlimit="1"
|
|
633
|
+
><line y2="21" fill="none" x1="0" clip-path="url(#clipPath69)" x2="47" y1="21"
|
|
634
|
+
/></g
|
|
635
|
+
><g font-size="13.333333969116px" transform="translate(540,682)" fill="white" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="crispEdges" stroke="white"
|
|
636
|
+
><rect x="0" width="84" height="20" y="0" clip-path="url(#clipPath70)" stroke="none"
|
|
637
|
+
/></g
|
|
638
|
+
><g text-rendering="geometricPrecision" font-size="13.333333969116px" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(540,682.314999699593) scale(1.093577861786,1.093577861786)"
|
|
639
|
+
><text x="2" xml:space="preserve" y="13" clip-path="url(#clipPath71)" stroke="none"
|
|
640
|
+
>cardinality</text
|
|
641
|
+
></g
|
|
642
|
+
><g stroke-linecap="butt" font-size="13px" transform="translate(540,682)" fill="rgb(124,124,0)" text-rendering="geometricPrecision" font-family="sans-serif" stroke="rgb(124,124,0)" stroke-width="1.127399802208" stroke-miterlimit="1"
|
|
643
|
+
><line y2="21" fill="none" x1="0" clip-path="url(#clipPath72)" x2="84" y1="21"
|
|
644
|
+
/></g
|
|
645
|
+
><g font-size="13.333333969116px" transform="translate(541,651)" fill="white" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="crispEdges" stroke="white"
|
|
646
|
+
><rect x="0" width="83" height="20" y="0" clip-path="url(#clipPath73)" stroke="none"
|
|
647
|
+
/></g
|
|
648
|
+
><g text-rendering="geometricPrecision" font-size="13.333333969116px" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(541,651.314999699593) scale(1.093577861786,1.093577861786)"
|
|
649
|
+
><text x="2" xml:space="preserve" y="13" clip-path="url(#clipPath74)" stroke="none"
|
|
650
|
+
>valueType</text
|
|
651
|
+
></g
|
|
652
|
+
><g stroke-linecap="butt" font-size="13px" transform="translate(541,651)" fill="rgb(124,124,0)" text-rendering="geometricPrecision" font-family="sans-serif" stroke="rgb(124,124,0)" stroke-width="1.127399802208" stroke-miterlimit="1"
|
|
653
|
+
><line y2="21" fill="none" x1="0" clip-path="url(#clipPath75)" x2="83" y1="21"
|
|
654
|
+
/></g
|
|
655
|
+
><g font-size="13.333333969116px" transform="translate(605,626)" fill="white" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="crispEdges" stroke="white"
|
|
656
|
+
><rect x="0" width="19" height="20" y="0" clip-path="url(#clipPath76)" stroke="none"
|
|
657
|
+
/></g
|
|
658
|
+
><g text-rendering="geometricPrecision" font-size="13.333333969116px" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(605,626.314999699593) scale(1.093577861786,1.093577861786)"
|
|
659
|
+
><text x="2" xml:space="preserve" y="13" clip-path="url(#clipPath77)" stroke="none"
|
|
660
|
+
>id</text
|
|
661
|
+
></g
|
|
662
|
+
><g stroke-linecap="butt" font-size="13px" transform="translate(605,626)" fill="rgb(124,124,0)" text-rendering="geometricPrecision" font-family="sans-serif" stroke="rgb(124,124,0)" stroke-width="1.127399802208" stroke-miterlimit="1"
|
|
663
|
+
><line y2="21" fill="none" x1="0" clip-path="url(#clipPath78)" x2="19" y1="21"
|
|
664
|
+
/></g
|
|
665
|
+
><g font-size="13.333333969116px" transform="translate(581,601)" fill="white" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="crispEdges" stroke="white"
|
|
666
|
+
><rect x="0" width="43" height="20" y="0" clip-path="url(#clipPath79)" stroke="none"
|
|
667
|
+
/></g
|
|
668
|
+
><g text-rendering="geometricPrecision" font-size="13.333333969116px" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(581,601.314999699593) scale(1.093577861786,1.093577861786)"
|
|
669
|
+
><text x="2" xml:space="preserve" y="13" clip-path="url(#clipPath80)" stroke="none"
|
|
670
|
+
>ident</text
|
|
671
|
+
></g
|
|
672
|
+
><g stroke-linecap="butt" font-size="13px" transform="translate(581,601)" fill="rgb(124,124,0)" text-rendering="geometricPrecision" font-family="sans-serif" stroke="rgb(124,124,0)" stroke-width="1.127399802208" stroke-miterlimit="1"
|
|
673
|
+
><line y2="21" fill="none" x1="0" clip-path="url(#clipPath81)" x2="43" y1="21"
|
|
674
|
+
/></g
|
|
675
|
+
><g stroke-linecap="butt" font-size="13px" transform="translate(646,727)" fill="rgb(124,124,0)" text-rendering="geometricPrecision" font-family="sans-serif" stroke="rgb(124,124,0)" stroke-width="1.127399802208" stroke-miterlimit="1"
|
|
676
|
+
><line y2="21" fill="none" x1="0" clip-path="url(#clipPath82)" x2="120" y1="21"
|
|
677
|
+
/></g
|
|
678
|
+
><g fill="rgb(0,124,124)" text-rendering="geometricPrecision" font-size="13px" font-family="sans-serif" transform="translate(1018,448)" stroke="rgb(0,124,124)"
|
|
679
|
+
><path fill="none" d="M123 103 C137 103 123 78 146 78" clip-path="url(#clipPath17)"
|
|
680
|
+
/><path fill="none" d="M123 103 C137 103 123 103 146 103" clip-path="url(#clipPath17)"
|
|
681
|
+
/><path fill="none" d="M123 103 C137 103 123 128 146 128" clip-path="url(#clipPath17)"
|
|
682
|
+
/></g
|
|
683
|
+
><g font-size="13.333333969116px" transform="translate(1075,530)" fill="white" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="crispEdges" stroke="white"
|
|
684
|
+
><rect x="0" width="67" height="20" y="0" clip-path="url(#clipPath83)" stroke="none"
|
|
685
|
+
/></g
|
|
686
|
+
><g text-rendering="geometricPrecision" font-size="13.333333969116px" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(1075,530.314999699593) scale(1.093577861786,1.093577861786)"
|
|
687
|
+
><text x="2" xml:space="preserve" y="13" clip-path="url(#clipPath84)" stroke="none"
|
|
688
|
+
>creation</text
|
|
689
|
+
></g
|
|
690
|
+
><g font-size="13.333333969116px" transform="translate(1164,555)" fill="white" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="crispEdges" stroke="white"
|
|
691
|
+
><rect x="0" width="272" height="20" y="0" clip-path="url(#clipPath85)" stroke="none"
|
|
692
|
+
/></g
|
|
693
|
+
><g text-rendering="geometricPrecision" font-size="13.333333969116px" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(1164,555.314999699593) scale(1.093577861786,1.093577861786)"
|
|
694
|
+
><text x="2" xml:space="preserve" y="13" clip-path="url(#clipPath86)" stroke="none"
|
|
695
|
+
>possible to read edn on db creation</text
|
|
696
|
+
></g
|
|
697
|
+
><g stroke-linecap="butt" font-size="13px" transform="translate(1164,555)" fill="rgb(0,124,124)" text-rendering="geometricPrecision" font-family="sans-serif" stroke="rgb(0,124,124)" stroke-width="1.127399802208" stroke-miterlimit="1"
|
|
698
|
+
><line y2="21" fill="none" x1="0" clip-path="url(#clipPath87)" x2="272" y1="21"
|
|
699
|
+
/></g
|
|
700
|
+
><g fill="white" text-rendering="geometricPrecision" font-size="13px" font-family="sans-serif" transform="translate(1164,555)" stroke="white"
|
|
701
|
+
><circle r="5" clip-path="url(#clipPath87)" cx="276" cy="21" stroke="none"
|
|
702
|
+
/><circle fill="none" r="5" clip-path="url(#clipPath87)" cx="276" cy="21" stroke="rgb(0,124,124)"
|
|
703
|
+
/></g
|
|
704
|
+
><g font-size="13.333333969116px" transform="translate(1164,530)" fill="white" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="crispEdges" stroke="white"
|
|
705
|
+
><rect x="0" width="265" height="20" y="0" clip-path="url(#clipPath88)" stroke="none"
|
|
706
|
+
/></g
|
|
707
|
+
><g text-rendering="geometricPrecision" font-size="13.333333969116px" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(1164,530.314999699593) scale(1.093577861786,1.093577861786)"
|
|
708
|
+
><text x="2" xml:space="preserve" y="13" clip-path="url(#clipPath89)" stroke="none"
|
|
709
|
+
>check for reserved :db/* attributes</text
|
|
710
|
+
></g
|
|
711
|
+
><g stroke-linecap="butt" font-size="13px" transform="translate(1164,530)" fill="rgb(0,124,124)" text-rendering="geometricPrecision" font-family="sans-serif" stroke="rgb(0,124,124)" stroke-width="1.127399802208" stroke-miterlimit="1"
|
|
712
|
+
><line y2="21" fill="none" x1="0" clip-path="url(#clipPath90)" x2="265" y1="21"
|
|
713
|
+
/></g
|
|
714
|
+
><g font-size="13.333333969116px" transform="translate(1164,505)" fill="white" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="crispEdges" stroke="white"
|
|
715
|
+
><rect x="0" width="141" height="20" y="0" clip-path="url(#clipPath91)" stroke="none"
|
|
716
|
+
/></g
|
|
717
|
+
><g text-rendering="geometricPrecision" font-size="13.333333969116px" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(1164,505.314999699593) scale(1.093577861786,1.093577861786)"
|
|
718
|
+
><text x="2" xml:space="preserve" y="13" clip-path="url(#clipPath92)" stroke="none"
|
|
719
|
+
>insert via transact</text
|
|
720
|
+
></g
|
|
721
|
+
><g stroke-linecap="butt" font-size="13px" transform="translate(1164,505)" fill="rgb(0,124,124)" text-rendering="geometricPrecision" font-family="sans-serif" stroke="rgb(0,124,124)" stroke-width="1.127399802208" stroke-miterlimit="1"
|
|
722
|
+
><line y2="21" fill="none" x1="0" clip-path="url(#clipPath93)" x2="141" y1="21"
|
|
723
|
+
/></g
|
|
724
|
+
><g stroke-linecap="butt" font-size="13px" transform="translate(1075,530)" fill="rgb(0,124,124)" text-rendering="geometricPrecision" font-family="sans-serif" stroke="rgb(0,124,124)" stroke-width="1.127399802208" stroke-miterlimit="1"
|
|
725
|
+
><line y2="21" fill="none" x1="0" clip-path="url(#clipPath94)" x2="67" y1="21"
|
|
726
|
+
/></g
|
|
727
|
+
><g fill="rgb(124,0,124)" text-rendering="geometricPrecision" font-size="13px" font-family="sans-serif" transform="translate(1015,336)" stroke="rgb(124,0,124)"
|
|
728
|
+
><path fill="none" d="M183 78 C197 78 205 78 228 78" clip-path="url(#clipPath21)"
|
|
729
|
+
/></g
|
|
730
|
+
><g font-size="13.333333969116px" transform="translate(1072,393)" fill="white" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="crispEdges" stroke="white"
|
|
731
|
+
><rect x="0" width="127" height="20" y="0" clip-path="url(#clipPath95)" stroke="none"
|
|
732
|
+
/></g
|
|
733
|
+
><g text-rendering="geometricPrecision" font-size="13.333333969116px" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(1072,393.314999699593) scale(1.093577861786,1.093577861786)"
|
|
734
|
+
><text x="2" xml:space="preserve" y="13" clip-path="url(#clipPath96)" stroke="none"
|
|
735
|
+
>storage location</text
|
|
736
|
+
></g
|
|
737
|
+
><g font-size="13.333333969116px" transform="translate(1243,393)" fill="white" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="crispEdges" stroke="white"
|
|
738
|
+
><rect x="0" width="42" height="20" y="0" clip-path="url(#clipPath97)" stroke="none"
|
|
739
|
+
/></g
|
|
740
|
+
><g text-rendering="geometricPrecision" font-size="13.333333969116px" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(1243,393.314999699593) scale(1.093577861786,1.093577861786)"
|
|
741
|
+
><text x="2" xml:space="preserve" y="13" clip-path="url(#clipPath98)" stroke="none"
|
|
742
|
+
>in db</text
|
|
743
|
+
></g
|
|
744
|
+
><g stroke-linecap="butt" font-size="13px" transform="translate(1243,393)" fill="rgb(124,0,124)" text-rendering="geometricPrecision" font-family="sans-serif" stroke="rgb(124,0,124)" stroke-width="1.127399802208" stroke-miterlimit="1"
|
|
745
|
+
><line y2="21" fill="none" x1="0" clip-path="url(#clipPath99)" x2="42" y1="21"
|
|
746
|
+
/></g
|
|
747
|
+
><g stroke-linecap="butt" font-size="13px" transform="translate(1072,393)" fill="rgb(124,0,124)" text-rendering="geometricPrecision" font-family="sans-serif" stroke="rgb(124,0,124)" stroke-width="1.127399802208" stroke-miterlimit="1"
|
|
748
|
+
><line y2="21" fill="none" x1="0" clip-path="url(#clipPath100)" x2="127" y1="21"
|
|
749
|
+
/></g
|
|
750
|
+
><g fill="rgb(0,124,0)" text-rendering="geometricPrecision" font-size="13px" font-family="sans-serif" transform="translate(1020,224)" stroke="rgb(0,124,0)"
|
|
751
|
+
><path fill="none" d="M184 90 C198 90 184 78 207 78" clip-path="url(#clipPath23)"
|
|
752
|
+
/><path fill="none" d="M184 90 C198 90 184 103 207 103" clip-path="url(#clipPath23)"
|
|
753
|
+
/></g
|
|
754
|
+
><g font-size="13.333333969116px" transform="translate(1077,293)" fill="white" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="crispEdges" stroke="white"
|
|
755
|
+
><rect x="0" width="128" height="20" y="0" clip-path="url(#clipPath101)" stroke="none"
|
|
756
|
+
/></g
|
|
757
|
+
><g text-rendering="geometricPrecision" font-size="13.333333969116px" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(1077,293.314999699593) scale(1.093577861786,1.093577861786)"
|
|
758
|
+
><text x="2" xml:space="preserve" y="13" clip-path="url(#clipPath102)" stroke="none"
|
|
759
|
+
>schema-on-read</text
|
|
760
|
+
></g
|
|
761
|
+
><g font-size="13.333333969116px" transform="translate(1227,306)" fill="white" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="crispEdges" stroke="white"
|
|
762
|
+
><rect x="0" width="313" height="20" y="0" clip-path="url(#clipPath103)" stroke="none"
|
|
763
|
+
/></g
|
|
764
|
+
><g text-rendering="geometricPrecision" font-size="13.333333969116px" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(1227,306.314999699593) scale(1.093577861786,1.093577861786)"
|
|
765
|
+
><text x="2" xml:space="preserve" y="13" clip-path="url(#clipPath104)" stroke="none"
|
|
766
|
+
>should explicitly specified on db creation</text
|
|
767
|
+
></g
|
|
768
|
+
><g stroke-linecap="butt" font-size="13px" transform="translate(1227,306)" fill="rgb(0,124,0)" text-rendering="geometricPrecision" font-family="sans-serif" stroke="rgb(0,124,0)" stroke-width="1.127399802208" stroke-miterlimit="1"
|
|
769
|
+
><line y2="21" fill="none" x1="0" clip-path="url(#clipPath105)" x2="313" y1="21"
|
|
770
|
+
/></g
|
|
771
|
+
><g font-size="13.333333969116px" transform="translate(1227,281)" fill="white" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="crispEdges" stroke="white"
|
|
772
|
+
><rect x="0" width="314" height="20" y="0" clip-path="url(#clipPath106)" stroke="none"
|
|
773
|
+
/></g
|
|
774
|
+
><g text-rendering="geometricPrecision" font-size="13.333333969116px" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(1227,281.314999699593) scale(1.093577861786,1.093577861786)"
|
|
775
|
+
><text x="2" xml:space="preserve" y="13" clip-path="url(#clipPath107)" stroke="none"
|
|
776
|
+
>create default schema for new attributes</text
|
|
777
|
+
></g
|
|
778
|
+
><g stroke-linecap="butt" font-size="13px" transform="translate(1227,281)" fill="rgb(0,124,0)" text-rendering="geometricPrecision" font-family="sans-serif" stroke="rgb(0,124,0)" stroke-width="1.127399802208" stroke-miterlimit="1"
|
|
779
|
+
><line y2="21" fill="none" x1="0" clip-path="url(#clipPath108)" x2="314" y1="21"
|
|
780
|
+
/></g
|
|
781
|
+
><g stroke-linecap="butt" font-size="13px" transform="translate(1077,293)" fill="rgb(0,124,0)" text-rendering="geometricPrecision" font-family="sans-serif" stroke="rgb(0,124,0)" stroke-width="1.127399802208" stroke-miterlimit="1"
|
|
782
|
+
><line y2="21" fill="none" x1="0" clip-path="url(#clipPath109)" x2="128" y1="21"
|
|
783
|
+
/></g
|
|
784
|
+
><g fill="fuchsia" text-rendering="geometricPrecision" font-size="13px" font-family="sans-serif" transform="translate(334,434)" stroke="fuchsia"
|
|
785
|
+
><path fill="none" d="M276 78 C262 78 252 78 229 78" clip-path="url(#clipPath26)"
|
|
786
|
+
/></g
|
|
787
|
+
><g font-size="13.333333969116px" transform="translate(610,491)" fill="white" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="crispEdges" stroke="white"
|
|
788
|
+
><rect x="0" width="85" height="20" y="0" clip-path="url(#clipPath110)" stroke="none"
|
|
789
|
+
/></g
|
|
790
|
+
><g text-rendering="geometricPrecision" font-size="13.333333969116px" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(610,491.314999699593) scale(1.093577861786,1.093577861786)"
|
|
791
|
+
><text x="2" xml:space="preserve" y="13" clip-path="url(#clipPath111)" stroke="none"
|
|
792
|
+
>replication</text
|
|
793
|
+
></g
|
|
794
|
+
><g font-size="13.333333969116px" transform="translate(391,491)" fill="white" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="crispEdges" stroke="white"
|
|
795
|
+
><rect x="0" width="173" height="20" y="0" clip-path="url(#clipPath112)" stroke="none"
|
|
796
|
+
/></g
|
|
797
|
+
><g text-rendering="geometricPrecision" font-size="13.333333969116px" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(391,491.314999699593) scale(1.093577861786,1.093577861786)"
|
|
798
|
+
><text x="2" xml:space="preserve" y="13" clip-path="url(#clipPath113)" stroke="none"
|
|
799
|
+
>through db replication</text
|
|
800
|
+
></g
|
|
801
|
+
><g stroke-linecap="butt" font-size="13px" transform="translate(391,491)" fill="fuchsia" text-rendering="geometricPrecision" font-family="sans-serif" stroke="fuchsia" stroke-width="1.127399802208" stroke-miterlimit="1"
|
|
802
|
+
><line y2="21" fill="none" x1="0" clip-path="url(#clipPath114)" x2="173" y1="21"
|
|
803
|
+
/></g
|
|
804
|
+
><g stroke-linecap="butt" font-size="13px" transform="translate(610,491)" fill="fuchsia" text-rendering="geometricPrecision" font-family="sans-serif" stroke="fuchsia" stroke-width="1.127399802208" stroke-miterlimit="1"
|
|
805
|
+
><line y2="21" fill="none" x1="0" clip-path="url(#clipPath115)" x2="85" y1="21"
|
|
806
|
+
/></g
|
|
807
|
+
><g fill="lime" text-rendering="geometricPrecision" font-size="13px" font-family="sans-serif" transform="translate(252,313)" stroke="lime"
|
|
808
|
+
><path fill="none" d="M394 90 C380 90 394 78 371 78" clip-path="url(#clipPath28)"
|
|
809
|
+
/><path fill="none" d="M394 90 C380 90 394 103 371 103" clip-path="url(#clipPath28)"
|
|
810
|
+
/></g
|
|
811
|
+
><g font-size="13.333333969116px" transform="translate(646,382)" fill="white" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="crispEdges" stroke="white"
|
|
812
|
+
><rect x="0" width="77" height="20" y="0" clip-path="url(#clipPath116)" stroke="none"
|
|
813
|
+
/></g
|
|
814
|
+
><g text-rendering="geometricPrecision" font-size="13.333333969116px" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(646,382.314999699593) scale(1.093577861786,1.093577861786)"
|
|
815
|
+
><text x="2" xml:space="preserve" y="13" clip-path="url(#clipPath117)" stroke="none"
|
|
816
|
+
>migration</text
|
|
817
|
+
></g
|
|
818
|
+
><g font-size="13.333333969116px" transform="translate(426,395)" fill="white" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="crispEdges" stroke="white"
|
|
819
|
+
><rect x="0" width="198" height="20" y="0" clip-path="url(#clipPath118)" stroke="none"
|
|
820
|
+
/></g
|
|
821
|
+
><g text-rendering="geometricPrecision" font-size="13.333333969116px" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(426,395.314999699593) scale(1.093577861786,1.093577861786)"
|
|
822
|
+
><text x="2" xml:space="preserve" y="13" clip-path="url(#clipPath119)" stroke="none"
|
|
823
|
+
>best practices on website</text
|
|
824
|
+
></g
|
|
825
|
+
><g stroke-linecap="butt" font-size="13px" transform="translate(426,395)" fill="lime" text-rendering="geometricPrecision" font-family="sans-serif" stroke="lime" stroke-width="1.127399802208" stroke-miterlimit="1"
|
|
826
|
+
><line y2="21" fill="none" x1="0" clip-path="url(#clipPath120)" x2="198" y1="21"
|
|
827
|
+
/></g
|
|
828
|
+
><g font-size="13.333333969116px" transform="translate(309,370)" fill="white" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="crispEdges" stroke="white"
|
|
829
|
+
><rect x="0" width="315" height="20" y="0" clip-path="url(#clipPath121)" stroke="none"
|
|
830
|
+
/></g
|
|
831
|
+
><g text-rendering="geometricPrecision" font-size="13.333333969116px" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(309,370.314999699593) scale(1.093577861786,1.093577861786)"
|
|
832
|
+
><text x="2" xml:space="preserve" y="13" clip-path="url(#clipPath122)" stroke="none"
|
|
833
|
+
>https://github.com/avescodes/conformity</text
|
|
834
|
+
></g
|
|
835
|
+
><g stroke-linecap="butt" font-size="13px" transform="translate(309,370)" fill="lime" text-rendering="geometricPrecision" font-family="sans-serif" stroke="lime" stroke-width="1.127399802208" stroke-miterlimit="1"
|
|
836
|
+
><line y2="21" fill="none" x1="0" clip-path="url(#clipPath123)" x2="315" y1="21"
|
|
837
|
+
/></g
|
|
838
|
+
><g stroke-linecap="butt" font-size="13px" transform="translate(646,382)" fill="lime" text-rendering="geometricPrecision" font-family="sans-serif" stroke="lime" stroke-width="1.127399802208" stroke-miterlimit="1"
|
|
839
|
+
><line y2="21" fill="none" x1="0" clip-path="url(#clipPath124)" x2="77" y1="21"
|
|
840
|
+
/></g
|
|
841
|
+
><g fill="blue" text-rendering="geometricPrecision" font-size="13px" font-family="sans-serif" stroke="blue"
|
|
842
|
+
><path fill="none" d="M499 163 C485 163 499 112 476 112" clip-path="url(#clipPath31)"
|
|
843
|
+
/><path fill="none" d="M499 163 C485 163 381 287 358 287" clip-path="url(#clipPath31)"
|
|
844
|
+
/></g
|
|
845
|
+
><g font-size="13.333333969116px" transform="translate(499,142)" fill="white" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="crispEdges" stroke="white"
|
|
846
|
+
><rect x="0" width="173" height="20" y="0" clip-path="url(#clipPath112)" stroke="none"
|
|
847
|
+
/></g
|
|
848
|
+
><g text-rendering="geometricPrecision" font-size="13.333333969116px" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(499,142.314999699593) scale(1.093577861786,1.093577861786)"
|
|
849
|
+
><text x="2" xml:space="preserve" y="13" clip-path="url(#clipPath113)" stroke="none"
|
|
850
|
+
>supported value types</text
|
|
851
|
+
></g
|
|
852
|
+
><g fill="blue" text-rendering="geometricPrecision" font-size="13px" font-family="sans-serif" transform="translate(120,170)" stroke="blue"
|
|
853
|
+
><path fill="none" d="M160 117 C146 117 128 78 105 78" clip-path="url(#clipPath32)"
|
|
854
|
+
/><path fill="none" d="M160 117 C146 117 122 123 99 123" clip-path="url(#clipPath32)"
|
|
855
|
+
/><path fill="none" d="M160 117 C146 117 148 174 125 174" clip-path="url(#clipPath32)"
|
|
856
|
+
/></g
|
|
857
|
+
><g font-size="13.333333969116px" transform="translate(280,266)" fill="white" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="crispEdges" stroke="white"
|
|
858
|
+
><rect x="0" width="79" height="20" y="0" clip-path="url(#clipPath54)" stroke="none"
|
|
859
|
+
/></g
|
|
860
|
+
><g text-rendering="geometricPrecision" font-size="13.333333969116px" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(280,266.314999699593) scale(1.093577861786,1.093577861786)"
|
|
861
|
+
><text x="2" xml:space="preserve" y="13" clip-path="url(#clipPath55)" stroke="none"
|
|
862
|
+
>additional</text
|
|
863
|
+
></g
|
|
864
|
+
><g font-size="13.333333969116px" transform="translate(177,323)" fill="white" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="crispEdges" stroke="white"
|
|
865
|
+
><rect x="0" width="69" height="20" y="0" clip-path="url(#clipPath125)" stroke="none"
|
|
866
|
+
/></g
|
|
867
|
+
><g text-rendering="geometricPrecision" font-size="13.333333969116px" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(177,323.314999699593) scale(1.093577861786,1.093577861786)"
|
|
868
|
+
><text x="2" xml:space="preserve" y="13" clip-path="url(#clipPath126)" stroke="none"
|
|
869
|
+
>keyword</text
|
|
870
|
+
></g
|
|
871
|
+
><g stroke-linecap="butt" font-size="13px" transform="translate(177,323)" fill="blue" text-rendering="geometricPrecision" font-family="sans-serif" stroke="blue" stroke-width="1.127399802208" stroke-miterlimit="1"
|
|
872
|
+
><line y2="21" fill="none" x1="0" clip-path="url(#clipPath127)" x2="69" y1="21"
|
|
873
|
+
/></g
|
|
874
|
+
><g font-size="13.333333969116px" transform="translate(178,272)" fill="white" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="crispEdges" stroke="white"
|
|
875
|
+
><rect x="0" width="42" height="20" y="0" clip-path="url(#clipPath97)" stroke="none"
|
|
876
|
+
/></g
|
|
877
|
+
><g text-rendering="geometricPrecision" font-size="13.333333969116px" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(178,272.314999699593) scale(1.093577861786,1.093577861786)"
|
|
878
|
+
><text x="2" xml:space="preserve" y="13" clip-path="url(#clipPath98)" stroke="none"
|
|
879
|
+
>crdts</text
|
|
880
|
+
></g
|
|
881
|
+
><g stroke-linecap="butt" font-size="13px" transform="translate(178,272)" fill="blue" text-rendering="geometricPrecision" font-family="sans-serif" stroke="blue" stroke-width="1.127399802208" stroke-miterlimit="1"
|
|
882
|
+
><line y2="21" fill="none" x1="0" clip-path="url(#clipPath99)" x2="42" y1="21"
|
|
883
|
+
/></g
|
|
884
|
+
><g font-size="13.333333969116px" transform="translate(179,227)" fill="white" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="crispEdges" stroke="white"
|
|
885
|
+
><rect x="0" width="47" height="20" y="0" clip-path="url(#clipPath67)" stroke="none"
|
|
886
|
+
/></g
|
|
887
|
+
><g text-rendering="geometricPrecision" font-size="13.333333969116px" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(179,227.314999699593) scale(1.093577861786,1.093577861786)"
|
|
888
|
+
><text x="2" xml:space="preserve" y="13" clip-path="url(#clipPath68)" stroke="none"
|
|
889
|
+
>bytes</text
|
|
890
|
+
></g
|
|
891
|
+
><g stroke-linecap="butt" font-size="13px" transform="translate(179,227)" fill="blue" text-rendering="geometricPrecision" font-family="sans-serif" stroke="blue" stroke-width="1.127399802208" stroke-miterlimit="1"
|
|
892
|
+
><line y2="21" fill="none" x1="0" clip-path="url(#clipPath69)" x2="47" y1="21"
|
|
893
|
+
/></g
|
|
894
|
+
><g stroke-linecap="butt" font-size="13px" transform="translate(280,266)" fill="blue" text-rendering="geometricPrecision" font-family="sans-serif" stroke="blue" stroke-width="1.127399802208" stroke-miterlimit="1"
|
|
895
|
+
><line y2="21" fill="none" x1="0" clip-path="url(#clipPath128)" x2="79" y1="21"
|
|
896
|
+
/></g
|
|
897
|
+
><g fill="blue" text-rendering="geometricPrecision" font-size="13px" font-family="sans-serif" stroke="blue"
|
|
898
|
+
><path fill="none" d="M419 112 C405 112 397 78 374 78" clip-path="url(#clipPath34)"
|
|
899
|
+
/><path fill="none" d="M419 112 C405 112 397 151 374 151" clip-path="url(#clipPath34)"
|
|
900
|
+
/></g
|
|
901
|
+
><g font-size="13.333333969116px" transform="translate(419,91)" fill="white" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="crispEdges" stroke="white"
|
|
902
|
+
><rect x="0" width="58" height="20" y="0" clip-path="url(#clipPath129)" stroke="none"
|
|
903
|
+
/></g
|
|
904
|
+
><g text-rendering="geometricPrecision" font-size="13.333333969116px" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(419,91.314999699593) scale(1.093577861786,1.093577861786)"
|
|
905
|
+
><text x="2" xml:space="preserve" y="13" clip-path="url(#clipPath130)" stroke="none"
|
|
906
|
+
>default</text
|
|
907
|
+
></g
|
|
908
|
+
><g font-size="13.333333969116px" transform="translate(263,130)" fill="white" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="crispEdges" stroke="white"
|
|
909
|
+
><rect x="0" width="112" height="20" y="0" clip-path="url(#clipPath41)" stroke="none"
|
|
910
|
+
/></g
|
|
911
|
+
><g text-rendering="geometricPrecision" font-size="13.333333969116px" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(263,130.314999699593) scale(1.093577861786,1.093577861786)"
|
|
912
|
+
><text x="2" xml:space="preserve" y="13" clip-path="url(#clipPath42)" stroke="none"
|
|
913
|
+
>datomic types</text
|
|
914
|
+
></g
|
|
915
|
+
><g stroke-linecap="butt" font-size="13px" transform="translate(263,130)" fill="blue" text-rendering="geometricPrecision" font-family="sans-serif" stroke="blue" stroke-width="1.127399802208" stroke-miterlimit="1"
|
|
916
|
+
><line y2="21" fill="none" x1="0" clip-path="url(#clipPath43)" x2="112" y1="21"
|
|
917
|
+
/></g
|
|
918
|
+
><g font-size="13.333333969116px" transform="translate(57,57)" fill="white" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="crispEdges" stroke="white"
|
|
919
|
+
><rect x="0" width="318" height="20" y="0" clip-path="url(#clipPath131)" stroke="none"
|
|
920
|
+
/></g
|
|
921
|
+
><g text-rendering="geometricPrecision" font-size="13.333333969116px" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(57,57.314999699593) scale(1.093577861786,1.093577861786)"
|
|
922
|
+
><text x="2" xml:space="preserve" y="13" clip-path="url(#clipPath132)" stroke="none"
|
|
923
|
+
>::Any for schema-on-read or not specified</text
|
|
924
|
+
></g
|
|
925
|
+
><g stroke-linecap="butt" font-size="13px" transform="translate(57,57)" fill="blue" text-rendering="geometricPrecision" font-family="sans-serif" stroke="blue" stroke-width="1.127399802208" stroke-miterlimit="1"
|
|
926
|
+
><line y2="21" fill="none" x1="0" clip-path="url(#clipPath133)" x2="318" y1="21"
|
|
927
|
+
/></g
|
|
928
|
+
><g stroke-linecap="butt" font-size="13px" transform="translate(419,91)" fill="blue" text-rendering="geometricPrecision" font-family="sans-serif" stroke="blue" stroke-width="1.127399802208" stroke-miterlimit="1"
|
|
929
|
+
><line y2="21" fill="none" x1="0" clip-path="url(#clipPath134)" x2="58" y1="21"
|
|
930
|
+
/></g
|
|
931
|
+
><g stroke-linecap="butt" font-size="13px" transform="translate(499,142)" fill="blue" text-rendering="geometricPrecision" font-family="sans-serif" stroke="blue" stroke-width="1.127399802208" stroke-miterlimit="1"
|
|
932
|
+
><line y2="21" fill="none" x1="0" clip-path="url(#clipPath135)" x2="173" y1="21"
|
|
933
|
+
/></g
|
|
934
|
+
><g fill="red" text-rendering="geometricPrecision" font-size="13px" font-family="sans-serif" transform="translate(1027,140)" stroke="red"
|
|
935
|
+
><path fill="none" d="M224 90 C238 90 224 78 247 78" clip-path="url(#clipPath36)"
|
|
936
|
+
/><path fill="none" d="M224 90 C238 90 224 103 247 103" clip-path="url(#clipPath36)"
|
|
937
|
+
/></g
|
|
938
|
+
><g font-size="13.333333969116px" transform="translate(1084,209)" fill="white" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="crispEdges" stroke="white"
|
|
939
|
+
><rect x="0" width="168" height="20" y="0" clip-path="url(#clipPath136)" stroke="none"
|
|
940
|
+
/></g
|
|
941
|
+
><g text-rendering="geometricPrecision" font-size="13.333333969116px" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(1084,209.314999699593) scale(1.093577861786,1.093577861786)"
|
|
942
|
+
><text x="2" xml:space="preserve" y="13" clip-path="url(#clipPath137)" stroke="none"
|
|
943
|
+
>transaction validation</text
|
|
944
|
+
></g
|
|
945
|
+
><g font-size="13.333333969116px" transform="translate(1274,222)" fill="white" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="crispEdges" stroke="white"
|
|
946
|
+
><rect x="0" width="237" height="20" y="0" clip-path="url(#clipPath138)" stroke="none"
|
|
947
|
+
/></g
|
|
948
|
+
><g text-rendering="geometricPrecision" font-size="13.333333969116px" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(1274,222.314999699593) scale(1.093577861786,1.093577861786)"
|
|
949
|
+
><text x="2" xml:space="preserve" y="13" clip-path="url(#clipPath139)" stroke="none"
|
|
950
|
+
>db query against :db/* schema</text
|
|
951
|
+
></g
|
|
952
|
+
><g stroke-linecap="butt" font-size="13px" transform="translate(1274,222)" fill="red" text-rendering="geometricPrecision" font-family="sans-serif" stroke="red" stroke-width="1.127399802208" stroke-miterlimit="1"
|
|
953
|
+
><line y2="21" fill="none" x1="0" clip-path="url(#clipPath140)" x2="237" y1="21"
|
|
954
|
+
/></g
|
|
955
|
+
><g font-size="13.333333969116px" transform="translate(1274,197)" fill="white" text-rendering="geometricPrecision" font-family="sans-serif" shape-rendering="crispEdges" stroke="white"
|
|
956
|
+
><rect x="0" width="117" height="20" y="0" clip-path="url(#clipPath141)" stroke="none"
|
|
957
|
+
/></g
|
|
958
|
+
><g text-rendering="geometricPrecision" font-size="13.333333969116px" shape-rendering="crispEdges" font-family="sans-serif" transform="translate(1274,197.314999699593) scale(1.093577861786,1.093577861786)"
|
|
959
|
+
><text x="2" xml:space="preserve" y="13" clip-path="url(#clipPath142)" stroke="none"
|
|
960
|
+
>transact hooks</text
|
|
961
|
+
></g
|
|
962
|
+
><g stroke-linecap="butt" font-size="13px" transform="translate(1274,197)" fill="red" text-rendering="geometricPrecision" font-family="sans-serif" stroke="red" stroke-width="1.127399802208" stroke-miterlimit="1"
|
|
963
|
+
><line y2="21" fill="none" x1="0" clip-path="url(#clipPath143)" x2="117" y1="21"
|
|
964
|
+
/></g
|
|
965
|
+
><g stroke-linecap="butt" font-size="13px" transform="translate(1084,209)" fill="red" text-rendering="geometricPrecision" font-family="sans-serif" stroke="red" stroke-width="1.127399802208" stroke-miterlimit="1"
|
|
966
|
+
><line y2="21" fill="none" x1="0" clip-path="url(#clipPath144)" x2="168" y1="21"
|
|
967
|
+
/></g
|
|
968
|
+
></g
|
|
969
|
+
></svg
|
|
970
|
+
>
|