From e2efdd9d5c24c2c82037c5bd477adecd6132fd10 Mon Sep 17 00:00:00 2001 From: staudtMarius Date: Mon, 1 Jul 2024 12:51:44 +0200 Subject: [PATCH 1/5] Improving error message when using the outdated csv format --- CHANGELOG.md | 2 ++ .../edu/ie3/datamodel/io/source/csv/CsvDataSource.java | 8 ++++++++ 2 files changed, 10 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 083590698..b929ed3b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed ### Changed +- Improving error message when using the outdated csv format [#1112](https://github.com/ie3-institute/PowerSystemDataModel/issues/1112) + ## [5.1.0] - 2024-06-24 diff --git a/src/main/java/edu/ie3/datamodel/io/source/csv/CsvDataSource.java b/src/main/java/edu/ie3/datamodel/io/source/csv/CsvDataSource.java index 3232f2a24..21cd53ce2 100644 --- a/src/main/java/edu/ie3/datamodel/io/source/csv/CsvDataSource.java +++ b/src/main/java/edu/ie3/datamodel/io/source/csv/CsvDataSource.java @@ -168,6 +168,14 @@ protected Map buildFieldsToAttributes( try { String[] fieldVals = parseCsvRow(csvRow, csvSep); + + if (fieldVals.length > headline.length) { + throw new SourceException( + "The size of the fields is greater than the size of the headline. This can happen when using the old" + + " and now unsupported csv input format! Please refer to the docs to find the way to convert the" + + " input data into the new input format."); + } + insensitiveFieldsToAttributes.putAll( IntStream.range(0, fieldVals.length) .boxed() From 6b13e7353c6364f6f0b00c30f184e1768ce19033 Mon Sep 17 00:00:00 2001 From: staudtMarius Date: Mon, 1 Jul 2024 14:44:37 +0200 Subject: [PATCH 2/5] Improving log message. --- .../java/edu/ie3/datamodel/io/source/csv/CsvDataSource.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/edu/ie3/datamodel/io/source/csv/CsvDataSource.java b/src/main/java/edu/ie3/datamodel/io/source/csv/CsvDataSource.java index 21cd53ce2..26e348591 100644 --- a/src/main/java/edu/ie3/datamodel/io/source/csv/CsvDataSource.java +++ b/src/main/java/edu/ie3/datamodel/io/source/csv/CsvDataSource.java @@ -197,9 +197,9 @@ protected Map buildFieldsToAttributes( + csvSep + "') and does the number of columns match the number of headline fields?"); } - } catch (Exception e) { + } catch (SourceException e) { log.error( - "Cannot build fields to attributes map for row '{}' with headline '{}'.\nException: {}", + "Cannot build fields to attributes map for row '{}' with headline '{}'.", csvRow.trim(), String.join(",", headline), e); From c6afc53dac0f35692fdf494ab91db0bdfc82adef Mon Sep 17 00:00:00 2001 From: staudtMarius Date: Thu, 4 Jul 2024 15:29:18 +0200 Subject: [PATCH 3/5] Implementing requested changes. --- .../io/source/csv/CsvDataSource.java | 32 +++++++------------ .../io/source/csv/CsvDataSourceTest.groovy | 20 +++++++++++- 2 files changed, 31 insertions(+), 21 deletions(-) diff --git a/src/main/java/edu/ie3/datamodel/io/source/csv/CsvDataSource.java b/src/main/java/edu/ie3/datamodel/io/source/csv/CsvDataSource.java index 26e348591..61f79ad27 100644 --- a/src/main/java/edu/ie3/datamodel/io/source/csv/CsvDataSource.java +++ b/src/main/java/edu/ie3/datamodel/io/source/csv/CsvDataSource.java @@ -169,34 +169,26 @@ protected Map buildFieldsToAttributes( try { String[] fieldVals = parseCsvRow(csvRow, csvSep); - if (fieldVals.length > headline.length) { + if (fieldVals.length != headline.length) { throw new SourceException( - "The size of the fields is greater than the size of the headline. This can happen when using the old" - + " and now unsupported csv input format! Please refer to the docs to find the way to convert the" - + " input data into the new input format."); + "The size of the headline does not fit to the size of the attribute fields.\nHeadline: " + + String.join(", ", headline) + + "\nCsvRow: " + + csvRow.trim() + + ".\nPlease check:" + + "\n - is the csv separator in the file matching the separator provided in the constructor ('" + + csvSep + + "')" + + "\n - does the number of columns match the number of headline fields " + + "\n - are you using a valid RFC 4180 formatted csv row?"); } insensitiveFieldsToAttributes.putAll( - IntStream.range(0, fieldVals.length) + IntStream.range(0, headline.length) .boxed() .collect( Collectors.toMap( k -> StringUtils.snakeCaseToCamelCase(headline[k]), v -> fieldVals[v]))); - - if (insensitiveFieldsToAttributes.size() != headline.length) { - Set fieldsToAttributesKeySet = insensitiveFieldsToAttributes.keySet(); - insensitiveFieldsToAttributes = new TreeMap<>(String.CASE_INSENSITIVE_ORDER); - throw new SourceException( - "The size of the headline does not fit to the size of the resulting fields to attributes mapping.\nHeadline: " - + String.join(", ", headline) - + "\nResultingMap: " - + String.join(", ", fieldsToAttributesKeySet) - + "\nCsvRow: " - + csvRow.trim() - + ".\nIs the csv separator in the file matching the separator provided in the constructor ('" - + csvSep - + "') and does the number of columns match the number of headline fields?"); - } } catch (SourceException e) { log.error( "Cannot build fields to attributes map for row '{}' with headline '{}'.", diff --git a/src/test/groovy/edu/ie3/datamodel/io/source/csv/CsvDataSourceTest.groovy b/src/test/groovy/edu/ie3/datamodel/io/source/csv/CsvDataSourceTest.groovy index 4979f8b77..24a55820d 100644 --- a/src/test/groovy/edu/ie3/datamodel/io/source/csv/CsvDataSourceTest.groovy +++ b/src/test/groovy/edu/ie3/datamodel/io/source/csv/CsvDataSourceTest.groovy @@ -243,7 +243,6 @@ class CsvDataSourceTest extends Specification implements CsvTestDataMeta { ] } - def "A CsvDataSource should build a valid fields to attributes map with valid data and empty value fields as expected"() { given: def validHeadline = [ @@ -298,6 +297,25 @@ class CsvDataSourceTest extends Specification implements CsvTestDataMeta { "5ebd8f7e-dedb-4017-bb86-6373c4b68eb8,25.0,100.0,0.95,98.0,test_bmTypeInput,,,," || "too much columns" } + def "A CsvDataSource should be able to handle invalid headlines"() { + given: + def validCsvRow = "5ebd8f7e-dedb-4017-bb86-6373c4b68eb8,0.95,test_bmTypeInput,25.0" + + expect: + dummyCsvSource.buildFieldsToAttributes(validCsvRow, invalidHeadline) == [:] + + where: + invalidHeadline || explaination + ["uuid", "cosphi_rated", "id"] as String[] || "headline too short" + [ + "uuid", + "cosphi_rated", + "id", + "s_rated", + "capex" + ] as String[] || "headline too long" + } + def "The CsvDataSource is able to provide correct paths to time series files"() { when: def actual = dummyCsvSource.getIndividualTimeSeriesFilePaths() From ef5bfa6e3f0b2389ff97841c1060e345bf751a17 Mon Sep 17 00:00:00 2001 From: Sebastian Peter Date: Tue, 26 Nov 2024 13:20:01 +0100 Subject: [PATCH 4/5] Fixing formatting of test grid --- .../io/source/csv/_joint_grid/bm_input.csv | 2 +- .../io/source/csv/_joint_grid/evcs_input.csv | 4 +- .../csv/_joint_grid/fixed_feed_in_input.csv | 2 +- .../csv/_joint_grid/line_graphic_input.csv | 582 +++++----- .../io/source/csv/_joint_grid/line_input.csv | 17 +- .../io/source/csv/_joint_grid/load_input.csv | 992 +++++++++--------- .../csv/_joint_grid/node_graphic_input.csv | 598 +++++------ .../io/source/csv/_joint_grid/pv_input.csv | 126 +-- .../source/csv/_joint_grid/storage_input.csv | 2 +- 9 files changed, 1162 insertions(+), 1163 deletions(-) diff --git a/src/test/resources/edu/ie3/datamodel/io/source/csv/_joint_grid/bm_input.csv b/src/test/resources/edu/ie3/datamodel/io/source/csv/_joint_grid/bm_input.csv index 5caa7a26e..aea2e5df1 100644 --- a/src/test/resources/edu/ie3/datamodel/io/source/csv/_joint_grid/bm_input.csv +++ b/src/test/resources/edu/ie3/datamodel/io/source/csv/_joint_grid/bm_input.csv @@ -1,2 +1,2 @@ "uuid","cost_controlled","feed_in_tariff","id","market_reaction","node","operates_from","operates_until","operator","q_characteristics","type" -a3b7576b-cac7-4350-90ff-06316cdca192,true,51.0,BM_Test,true,f5839ade-5968-4879-a824-90b5fb3552cd,,,,cosPhiFixed:{(0.00,1.00)},2fdca5f1-c11b-4169-a695-4c98f0e0a84a +a3b7576b-cac7-4350-90ff-06316cdca192,true,51.0,BM_Test,true,f5839ade-5968-4879-a824-90b5fb3552cd,,,,"cosPhiFixed:{(0.00,1.00)}",2fdca5f1-c11b-4169-a695-4c98f0e0a84a diff --git a/src/test/resources/edu/ie3/datamodel/io/source/csv/_joint_grid/evcs_input.csv b/src/test/resources/edu/ie3/datamodel/io/source/csv/_joint_grid/evcs_input.csv index cf9538fba..48735020c 100644 --- a/src/test/resources/edu/ie3/datamodel/io/source/csv/_joint_grid/evcs_input.csv +++ b/src/test/resources/edu/ie3/datamodel/io/source/csv/_joint_grid/evcs_input.csv @@ -1,3 +1,3 @@ "uuid","cos_phi_rated","id","node","operates_from","operates_until","operator","q_characteristics","charging_points","type","location_type","v2gSupport" -06a14909-366e-4e94-a593-1016e1455b30,0.9,test_evcs_1,5f1c776c-6935-40f7-ba9e-60646e08992b,,,,cosPhiFixed:{(0.00,1.0)},4,ChargingStationType1,HOME,false -104acdaa-5dc5-4197-aed2-2fddb3c4f237,0.9,test_evcs_2,ed4697fd-016c-40c2-a66b-e793878dadea,,,,cosPhiFixed:{(0.00,1.0)},4,ChargingStationType1,HOME,false \ No newline at end of file +06a14909-366e-4e94-a593-1016e1455b30,0.9,test_evcs_1,5f1c776c-6935-40f7-ba9e-60646e08992b,,,,"cosPhiFixed:{(0.00,1.0)}",4,ChargingStationType1,HOME,false +104acdaa-5dc5-4197-aed2-2fddb3c4f237,0.9,test_evcs_2,ed4697fd-016c-40c2-a66b-e793878dadea,,,,"cosPhiFixed:{(0.00,1.0)}",4,ChargingStationType1,HOME,false \ No newline at end of file diff --git a/src/test/resources/edu/ie3/datamodel/io/source/csv/_joint_grid/fixed_feed_in_input.csv b/src/test/resources/edu/ie3/datamodel/io/source/csv/_joint_grid/fixed_feed_in_input.csv index 1bdb956ec..369d8d550 100644 --- a/src/test/resources/edu/ie3/datamodel/io/source/csv/_joint_grid/fixed_feed_in_input.csv +++ b/src/test/resources/edu/ie3/datamodel/io/source/csv/_joint_grid/fixed_feed_in_input.csv @@ -1,2 +1,2 @@ "uuid","cos_phi_rated","id","node","operates_from","operates_until","operator","q_characteristics","s_rated" -9abe950d-362e-4efe-b686-500f84d8f368,0.9,test_feed_in,5f1c776c-6935-40f7-ba9e-60646e08992b,,,,cosPhiFixed:{(0.00,0.95)},200.0 +9abe950d-362e-4efe-b686-500f84d8f368,0.9,test_feed_in,5f1c776c-6935-40f7-ba9e-60646e08992b,,,,"cosPhiFixed:{(0.00,0.95)}",200.0 diff --git a/src/test/resources/edu/ie3/datamodel/io/source/csv/_joint_grid/line_graphic_input.csv b/src/test/resources/edu/ie3/datamodel/io/source/csv/_joint_grid/line_graphic_input.csv index 2f97ccf67..4e44239cc 100644 --- a/src/test/resources/edu/ie3/datamodel/io/source/csv/_joint_grid/line_graphic_input.csv +++ b/src/test/resources/edu/ie3/datamodel/io/source/csv/_joint_grid/line_graphic_input.csv @@ -1,292 +1,292 @@ "uuid","graphic_layer","line","path" -077f10b2-79fe-4ae4-a86e-77423668cf1a,Standard,e50ba18f-8019-4824-b835-cc33c70b0196,{"type":"LineString","coordinates":[[0.92655367,0.77868852],[0.93785311,0.77868852],[0.93220339,0.77868852]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -d969661d-d4dc-4544-95aa-54baebea0e8f,Standard,a102f0f4-e86d-438c-95a9-d3fc6357121f,{"type":"LineString","coordinates":[[0.9039548,0.57377049],[0.91525424,0.57377049],[0.90960452,0.57377049]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -0fa23de1-db57-4f60-bea0-01ea1bab1da4,Standard,82e01986-321d-4f21-8453-60220f97bbb1,{"type":"LineString","coordinates":[[0.89265537,0.89344262],[0.88700565,0.89344262],[0.88135593,0.89344262]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -3c777579-8dba-4e53-8bc0-5a4a80af9988,Standard,7ad69cae-2bb0-4516-80a9-6afc7b5cb789,{"type":"LineString","coordinates":[[0.73446328,0.14754098],[0.74011299,0.14754098],[0.72881356,0.14754098]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -aba8138c-0b15-446c-94b9-67fc130f9c4b,Standard,d86488f7-cf74-41b4-9d62-e2923d00680f,{"type":"LineString","coordinates":[[0.70621469,0.36885246],[0.68926554,0.36885246],[0.68361582,0.36885246]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -e52aa402-4f9f-4b5f-8220-f3d4848d67ac,Standard,0c04a652-1076-4b59-a957-652790b4c963,{"type":"LineString","coordinates":[[0.78531073,0.45901639],[0.78531073,0.47540984],[0.78531073,0.46721311]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -00ce0bad-3efa-443d-8eed-968cc3132cf8,Standard,75098182-83b1-40ae-baaf-95f1e1f93250,{"type":"LineString","coordinates":[[0.63841808,0.14754098],[0.6440678,0.14754098],[0.64971751,0.14754098]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -077c54e5-7a8c-4c1c-8c3c-d72b4b7b0e11,Standard,97d5bd4a-ce14-4ded-90d4-4f2db25d6626,{"type":"LineString","coordinates":[[0.74011299,0.36885246],[0.74576271,0.36885246],[0.75141243,0.36885246]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -8ae601e8-3dcf-497e-a258-d8ac976e95e8,Standard,106f03b3-b84e-4d36-ab09-13b3dc3403e7,{"type":"LineString","coordinates":[[0.20338983,0.1557377],[0.25423729,0.1557377],[0.22881291,0.1557377]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -b038acec-bed0-4448-9ff8-a9af55865145,Standard,147bf31b-f9b1-415f-858b-f3ed430e508d,{"type":"LineString","coordinates":[[0.76836158,0.77868852],[0.75706215,0.77868852],[0.76271186,0.77868852]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -76492511-ec9c-4e2f-be35-4b6091a4d07b,Standard,ddc63e7d-e76a-489b-a05f-97e7dee40794,{"type":"LineString","coordinates":[[0.82485876,0.77868852],[0.83050847,0.77868852],[0.83615819,0.77868852]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -55977fba-bd2a-41c1-8176-a95fac899ea2,Standard,f8827054-46fd-486c-aa91-9bd813187705,{"type":"LineString","coordinates":[[0.91525424,0.57377049],[0.40677966,0.10655738],[0.92090395,0.57377049],[0.92655367,0.57377049],[0.41242938,0.10655738]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -f96dad25-b70b-459a-a1fe-d704fcd6410c,Standard,473a11f4-1691-44ba-8e95-96782bc9d07f,{"type":"LineString","coordinates":[[0.66666667,0.14754098],[0.66101695,0.14754098],[0.67231638,0.14754098]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -b622cf65-64b2-454b-900e-a191d7231dbc,Standard,0b1f06c3-9622-47cd-b41f-bd0314673b8d,{"type":"LineString","coordinates":[[0.85310734,0.14754098],[0.86440678,0.14754098],[0.85875706,0.14754098]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -b7bc8bae-9f00-497d-9d16-6b03765b5f98,Standard,e7388048-40c3-4fd7-bcbb-2e1b09e735d2,{"type":"LineString","coordinates":[[0.80225989,0.89344262],[0.81355932,0.89344262],[0.8079096,0.89344262]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -b6e8a3b1-e76e-4788-960f-79afcd82cd8f,Standard,1c23e300-0ad5-4b90-ac74-b9763e579268,{"type":"LineString","coordinates":[[0.22033898,0.0204918],[0.22033898,0.04098361],[0.22033898,0.0]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -90344d84-9485-4986-93e1-e94d73ee0aa3,Standard,91179f48-2d6c-4ae4-864c-d667f57a6e66,{"type":"LineString","coordinates":[[0.09039548,0.24590164],[0.11864407,0.24590164],[0.14689266,0.24590164]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -e5cbfa13-80ac-483f-8433-c6717fa1e7c9,Standard,2d616d05-fa31-4b7f-b666-0fab28a21a82,{"type":"LineString","coordinates":[[0.65536723,0.14754098],[0.66101695,0.14754098],[0.64971751,0.14754098]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -58798027-5b4e-4602-8e9f-ce34f156da4b,Standard,932d9fab-9b07-4948-9d65-4945c7700a72,{"type":"LineString","coordinates":[[0.71751412,0.89344262],[0.70056497,0.89344262],[0.72316384,0.89344262]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -88d88084-b78e-4620-837a-8afd74563b91,Standard,43394be2-5c85-4449-ad06-7866395a5c79,{"type":"LineString","coordinates":[[0.93785311,0.67213115],[0.92655367,0.67213115],[0.93220339,0.67213115]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -0f375bc5-fa36-4b66-ac12-e0db266bf400,Standard,9f57100c-cb04-49b5-a9bd-f0e78f87b18a,{"type":"LineString","coordinates":[[0.83050847,0.36885246],[0.83615819,0.36885246],[0.84180791,0.36885246]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -a6870226-3616-4619-9c12-e8d33ca469c5,Standard,95b47f01-829a-46c3-873a-4df11d798c49,{"type":"LineString","coordinates":[[0.85875706,0.89344262],[0.84745763,0.89344262],[0.85310734,0.89344262]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -8d9b357a-6612-45b4-baff-12849a787453,Standard,af565c79-9953-4934-9afd-91cd64ed1f06,{"type":"LineString","coordinates":[[0.85875706,0.89344262],[0.86440678,0.89344262],[0.8700565,0.89344262]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -b36d0168-6936-49f6-92f3-8755988c11e9,Standard,76f097c5-173f-4fee-b6db-190792922d0e,{"type":"LineString","coordinates":[[0.03954802,0.68032787],[0.03954802,0.57377049],[0.09039548,0.57377049],[0.03954802,0.78688525]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -54e0c3ae-10e0-4533-8679-063556715b18,Standard,52df9c70-136a-49bb-9ad4-d300123c7e99,{"type":"LineString","coordinates":[[0.15819209,0.18852459],[0.15819209,0.16803372],[0.15819209,0.14754098]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -db40acda-255e-4d7c-828a-e52619f60666,Standard,98a4759c-696b-4c99-b339-cf39ecc76ba7,{"type":"LineString","coordinates":[[0.09039548,0.66393443],[0.11864407,0.66393443],[0.14689266,0.66393443]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -37bfd165-910b-4ed1-b6b1-49633d000387,Standard,73359dab-e8bb-4cea-89e6-88b969ecb4e0,{"type":"LineString","coordinates":[[0.0960452,0.04098361],[0.0960452,0.07377049],[0.0960452,0.05737705]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -98c214c3-a010-494f-93d2-39d0045abbd6,Standard,f4859003-7182-4ebf-8a96-ce61b2f6191c,{"type":"LineString","coordinates":[[0.22033898,0.2295082],[0.22033898,0.20901733],[0.22033898,0.18852459]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -7548e909-99a8-426b-9c9a-7551e6fc7a87,Standard,13ea7170-5fc1-4ed8-be71-0a91a9e5df99,{"type":"LineString","coordinates":[[0.77966102,0.67213115],[0.79096045,0.67213115],[0.78531073,0.67213115]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -fad21258-86aa-4a48-a05b-73bbb3ad3dbd,Standard,7263918d-4331-43af-bd10-8c06bd2b8667,{"type":"LineString","coordinates":[[0.71186441,0.67213115],[0.72316384,0.67213115],[0.71751412,0.67213115]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -38d3d470-96ef-4884-80b9-b1fd23375ef1,Standard,1cfc85dd-3fb8-48a3-9ea1-b11b1b9ca8d4,{"type":"LineString","coordinates":[[0.8700565,0.57377049],[0.87570621,0.57377049],[0.88135593,0.57377049]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -ccacd75f-b7ad-43cb-9747-84e2fcf53ebd,Standard,09083d14-02aa-40a3-9948-86e86883bda1,{"type":"LineString","coordinates":[[0.73446328,0.96721311],[0.75706215,0.96721311],[0.74011299,0.96721311]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -cd44faca-2232-4565-9886-8dc5b92ccb96,Standard,eb64f0fb-1810-4b49-b0a6-e94a6422be04,{"type":"LineString","coordinates":[[0.98870056,0.39344262],[0.96610169,0.14754098],[0.98870056,0.14754098],[0.98870056,0.2704918]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -3cd9d77d-adbf-442f-b570-61b69223a367,Standard,bee47575-ecc8-4f2f-96de-e9a616603bb7,{"type":"LineString","coordinates":[[0.77966102,0.04918033],[0.78531073,0.04918033],[0.76271186,0.04918033]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -54c63d34-a5b6-4547-8898-cdf835177352,Standard,84f3941b-450c-4acb-8150-c788af1e6546,{"type":"LineString","coordinates":[[0.87570621,0.04918033],[0.8700565,0.04918033],[0.86440678,0.04918033]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -99333f9f-7f11-49e4-b97e-97956c7e6116,Standard,ce640cab-6f6d-4fd1-b652-009bec4c596b,{"type":"LineString","coordinates":[[0.84180791,0.89344262],[0.83615819,0.89344262],[0.84745763,0.89344262]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -7ad09272-dde8-46fb-bea5-31cce9bb450e,Standard,d9d1edce-43e0-4cbd-9801-4a4e1a1dfa71,{"type":"LineString","coordinates":[[0.76836158,0.77868852],[0.77966102,0.77868852],[0.7740113,0.77868852]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -d012e1ac-4919-4b5a-aaec-80cb2c8ef488,Standard,c87706ad-37ff-4419-b4bc-4607d780498e,{"type":"LineString","coordinates":[[0.85875706,0.25409836],[0.85310734,0.25409836],[0.86440678,0.25409836]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -fb003e5d-a7a2-4da7-916f-94272d001ee5,Standard,f6dfa796-69c1-4deb-8e5d-78d6a29f2b6e,{"type":"LineString","coordinates":[[0.96045198,0.25409836],[0.96610169,0.25409836],[0.95480226,0.25409836]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -df3c35c9-4b1b-477b-9722-3162aafc1487,Standard,2424f0ab-9f83-464e-a960-093ab14a2bb5,{"type":"LineString","coordinates":[[0.77966102,0.14754098],[0.7740113,0.14754098],[0.78531073,0.14754098]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -68ab9f6b-21c1-46eb-afde-2974072b3f9e,Standard,442c4813-6272-4cf9-b30b-22f9114bc3db,{"type":"LineString","coordinates":[[0.68361582,0.14754098],[0.67231638,0.14754098],[0.6779661,0.14754098]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -28c5c34c-a3bb-4f11-88da-6bf48d718eca,Standard,0f9bf171-b79b-4009-8b0b-6ec18c523ebf,{"type":"LineString","coordinates":[[0.76836158,0.67213115],[0.75706215,0.67213115],[0.76271186,0.67213115]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -06fd80ca-ed78-4310-87f3-e023fbb23e46,Standard,60c4970b-636a-4f8a-9329-97d01107a962,{"type":"LineString","coordinates":[[0.02259887,0.1147541],[0.02259887,0.0942623],[0.02259887,0.07377049]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -2aa712e6-4fbb-40e4-baac-a0c2ecd7a8be,Standard,0ffacffd-4f3f-465b-8525-bc22facc45da,{"type":"LineString","coordinates":[[0.17514124,0.57377049],[0.14689266,0.57377049],[0.20338983,0.57377049]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -94d96ee4-5d07-4b1b-a369-d8efb100c5e5,Standard,a9a94bc3-fa83-410a-9e71-38807e8d121c,{"type":"LineString","coordinates":[[0.74576271,0.89344262],[0.75706215,0.89344262],[0.75141243,0.89344262]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -676cc51f-74ee-4ff5-bc99-ef52b02c1abb,Standard,7f853fc7-6d3e-4086-82b0-cc93c8257f46,{"type":"LineString","coordinates":[[0.93220339,0.36885246],[0.92655367,0.36885246],[0.92090395,0.36885246]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -acb8900a-00d8-4ad2-86d5-eb04bd663251,Standard,a2a8bc02-02a9-40d8-9495-058c04d7df89,{"type":"LineString","coordinates":[[0.89265537,0.77868852],[0.88135593,0.77868852],[0.88700565,0.77868852]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -8df4fa46-3c96-4229-9d6a-262cc80ed213,Standard,d74febce-1b8d-4f51-9721-5eb1866d6b4e,{"type":"LineString","coordinates":[[0.15819209,0.0],[0.15819209,0.0204918],[0.15819209,0.04098361]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -fe3ffb5a-c30a-4f20-a70e-ed2bc99a607a,Standard,b08cf4bc-d9f2-4608-a162-74db09b16db0,{"type":"LineString","coordinates":[[0.84180791,0.40573864],[0.84180791,0.44262295],[0.84180791,0.36885246]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -09a046f1-f148-40aa-afeb-6592859da87d,Standard,094a0827-54d8-4ed9-bb8f-2766db020c87,{"type":"LineString","coordinates":[[0.70056497,0.89344262],[0.6779661,0.89344262],[0.68361582,0.89344262]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -f0e55d77-f8a0-4f63-b039-013a39f06539,Standard,d59a733b-b7c6-401b-8e38-653e0cb72b5c,{"type":"LineString","coordinates":[[0.78531073,0.45901639],[0.78531073,0.44262295],[0.78531073,0.45081967]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -702afdf5-0671-4f37-b888-5342fa3474de,Standard,184c0d91-3f4b-4816-a82d-519e4bcd7ee9,{"type":"LineString","coordinates":[[0.31073446,0.75409836],[0.25423729,0.75409836],[0.28248588,0.75409836]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -d923185a-03a0-484b-a66d-08f4757aadf7,Standard,2d552f15-6871-4e09-84b1-003da098d909,{"type":"LineString","coordinates":[[0.09039548,0.1557377],[0.11864407,0.1557377],[0.14689266,0.1557377]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -d3484467-529b-4f61-b8a1-fa4dfae30c31,Standard,764eccc0-09cc-4c7a-bf76-33259938530c,{"type":"LineString","coordinates":[[0.85875706,0.77868852],[0.8700565,0.77868852],[0.86440678,0.77868852]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -7e4b4545-d04e-4eb3-989a-ae75afbaad37,Standard,cc8bc119-79d7-479b-8767-8b108a0ba4a0,{"type":"LineString","coordinates":[[0.75141243,0.14754098],[0.74011299,0.14754098],[0.74576271,0.14754098]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -f1c8cd3e-5521-4539-8e13-aa5149272297,Standard,7f2e8019-f650-42b7-bd39-6895cb9c4d9f,{"type":"LineString","coordinates":[[0.85875706,0.67213115],[0.8700565,0.67213115],[0.86440678,0.67213115]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -623fe9a8-af66-455f-bad3-251c66ecf8bb,Standard,412d395e-7ebc-4cc6-88fb-24006f54c931,{"type":"LineString","coordinates":[[0.80225989,0.57377049],[0.8079096,0.57377049],[0.81355932,0.57377049]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -271af476-bfb4-4dfd-8de9-4a447259c4ea,Standard,230eae02-e233-4975-9cbb-268d0af4a492,{"type":"LineString","coordinates":[[0.88700565,0.36885246],[0.89265537,0.36885246],[0.89830508,0.36885246]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -04c0323b-b630-470f-9c69-1c9097106eaf,Standard,368c8108-0953-4e5a-90db-7c57a9057b20,{"type":"LineString","coordinates":[[0.66666667,0.89344262],[0.66101695,0.89344262],[0.65536723,0.89344262]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -ddf21544-9ca4-474f-be9b-9ead99cbb17f,Standard,02d85e44-4196-4ed1-9fa4-af9211dbd753,{"type":"LineString","coordinates":[[0.93785311,0.52459016],[0.93785311,0.57377049],[0.93785311,0.54918033]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -779b60ba-822c-451f-9f5f-ecf6909582a3,Standard,d9d3a1f3-5090-4015-86a5-60be94fadcbf,{"type":"LineString","coordinates":[[0.20338983,0.66393443],[0.22881291,0.66393443],[0.25423729,0.66393443]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -0ba2c517-f72b-4bf3-804c-01dea7c4e4dd,Standard,088e3b53-78f3-445a-bbc6-9da3efbda0a3,{"type":"LineString","coordinates":[[0.97740113,0.39344262],[0.97740113,0.32377143],[0.97740113,0.25409836],[0.96610169,0.25409836]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -bb7d1a7a-8dc5-4e59-a8ef-be64bb83f58c,Standard,24537b9f-9cb9-45d1-8bbb-f87e3a948a69,{"type":"LineString","coordinates":[[0.85310734,0.67213115],[0.85875706,0.67213115],[0.84745763,0.67213115]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -ee353ae3-c6e1-4529-9881-ec10d1d7b328,Standard,66651745-4425-4a9a-9a2a-3f2715252cf6,{"type":"LineString","coordinates":[[0.17514124,0.66393443],[0.20338983,0.66393443],[0.14689266,0.66393443]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -b0b7371e-66d5-4406-b7d3-a17809309afa,Standard,93cd3af7-2dbb-4804-9386-d15705b5f18e,{"type":"LineString","coordinates":[[0.61016949,0.67213115],[0.61581921,0.67213115],[0.62146893,0.67213115]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -d031dde1-6f80-4af1-a1f2-cbb223220469,Standard,4cfd425d-6158-4904-86b5-d16dc47a4778,{"type":"LineString","coordinates":[[0.89265537,0.67213115],[0.89830508,0.67213115],[0.9039548,0.67213115]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -bd830d87-73b0-44c8-9250-26afd33ac4f5,Standard,10c6a103-3132-4324-8f76-8c1858d51fcb,{"type":"LineString","coordinates":[[0.20338983,0.24590164],[0.17514124,0.24590164],[0.14689266,0.24590164]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -526bac21-e1fd-45aa-8dc1-3230569b51fa,Standard,f606c03b-66d1-4765-97e6-1319ad6ac0c3,{"type":"LineString","coordinates":[[0.17514124,0.75409836],[0.20338983,0.75409836],[0.14689266,0.75409836]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -723fb8fc-90ff-44d5-9c21-88a9f194e83a,Standard,5d1176ac-e64e-4811-8d0c-c87d9060ba2a,{"type":"LineString","coordinates":[[0.09039548,0.1557377],[0.05084746,0.27868852],[0.05084746,0.21721405],[0.05084746,0.1557377]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -816a5b4d-dae9-488c-9bed-b5e90fb62c89,Standard,21dc5686-67b6-49dc-b5aa-ecc7f7deb620,{"type":"LineString","coordinates":[[0.94350282,0.77868852],[0.93785311,0.77868852],[0.94915254,0.77868852]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -bef95efd-2cd8-472f-831d-c3bd3c207aa3,Standard,58105b87-e27d-4d7f-b492-42434801bdf7,{"type":"LineString","coordinates":[[0.73446328,0.89344262],[0.74576271,0.89344262],[0.74011299,0.89344262]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -24b27c1d-1816-4855-bb80-96ca34ded7c1,Standard,f6c9e202-6548-405e-9969-bc4ae68ef7c1,{"type":"LineString","coordinates":[[0.81920904,0.44262295],[0.81355932,0.44262295],[0.8079096,0.44262295]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -a8e794de-f56b-438c-af42-b40521bbb236,Standard,de25721a-7ad9-450f-9e89-f483f19bf8a7,{"type":"LineString","coordinates":[[0.70621469,0.25409836],[0.71186441,0.25409836],[0.71751412,0.25409836]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -c1971b4a-7f78-4488-a54f-03867b87cdf8,Standard,7614ed07-f464-4a56-8ea2-cf07772530c4,{"type":"LineString","coordinates":[[0.93785311,0.67213115],[0.94350282,0.67213115],[0.94915254,0.67213115]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -5e4cf1b3-fa4e-409b-84d1-e9a95ca0b7a6,Standard,f4ca1fb7-d17a-4d51-866d-ea2ae22c6f0c,{"type":"LineString","coordinates":[[0.66101695,0.25409836],[0.67231638,0.25409836],[0.66666667,0.25409836]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -4e955f6a-da29-4020-874c-7608dbf744db,Standard,ca765f8e-2a05-40fb-80b8-41e02887fa46,{"type":"LineString","coordinates":[[0.75706215,0.67213115],[0.75141243,0.67213115],[0.74576271,0.67213115]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -b634d0e8-330a-40ac-bf97-0caa01370bcf,Standard,6862b157-39c8-47d2-b31c-e418e1bad9a2,{"type":"LineString","coordinates":[[0.68926554,0.77868852],[0.69491525,0.77868852],[0.70056497,0.77868852]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -274aaed5-3d6d-402b-8dbd-d56b9bac6ef5,Standard,56e0ddce-ad67-435e-ad8c-5e276c13018a,{"type":"LineString","coordinates":[[0.09039548,0.75409836],[0.06214689,0.78688525],[0.06214689,0.75409836],[0.06214689,0.7704918]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -a93405e4-5473-437e-97d1-a0ea6a907b09,Standard,7bc8b609-baba-4afe-8cec-866d74e91e43,{"type":"LineString","coordinates":[[0.8700565,0.67213115],[0.88135593,0.67213115],[0.87570621,0.67213115]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -41239a55-df02-4249-84df-18824c2740f4,Standard,9ec195e0-4c9b-48a6-9233-0d770b34705b,{"type":"LineString","coordinates":[[0.85875706,0.77868852],[0.85310734,0.77868852],[0.84745763,0.77868852]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -14080b5a-f167-4d9f-bd93-c822c069807f,Standard,56603d19-84d5-4c2f-a42c-92777602999a,{"type":"LineString","coordinates":[[0.79096045,0.25409836],[0.78531073,0.25409836],[0.79661017,0.25409836]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -762d71ac-bff2-4b7d-a3d0-1997e7fc6c9d,Standard,7d9647cb-e7ca-4ecc-a79e-edb1bfbfb666,{"type":"LineString","coordinates":[[0.96610169,0.14754098],[0.95480226,0.14754098],[0.96045198,0.14754098]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -4090c3b8-35a0-45ce-aa49-9f37a5ddd55f,Standard,d54fcb7e-d472-4035-aff6-2646ce881931,{"type":"LineString","coordinates":[[0.9039548,0.36885246],[0.90960452,0.36885246],[0.89830508,0.36885246]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -272469ff-22c6-4f7f-ac31-b4bec6d952af,Standard,8a09b9b8-6c9f-4dc7-a5a5-fe5d22b5809a,{"type":"LineString","coordinates":[[0.84745763,0.25409836],[0.84180791,0.25409836],[0.85310734,0.25409836]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -600d7a2d-1aca-4b9c-ae82-095ce59eed0b,Standard,ebd1f65a-65ae-4620-b1cf-79898683c9e1,{"type":"LineString","coordinates":[[0.0960452,0.0204918],[0.0960452,0.04098361],[0.0960452,0.0]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -a0d87b77-0767-470f-adff-3333d612e076,Standard,9039f436-9be6-4c74-86b2-b5add2446d0a,{"type":"LineString","coordinates":[[0.22033898,0.07377049],[0.22033898,0.1147541],[0.22033898,0.0942623]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -a8182e9b-729e-4097-824c-bb1ffdf76499,Standard,2005c393-edc4-4cc4-80af-ebbde1305b8e,{"type":"LineString","coordinates":[[0.73446328,0.96721311],[0.72881356,0.96721311],[0.72316384,0.96721311]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -09c5fc01-1148-4ee9-9dca-b1f04954def6,Standard,836bf4ab-38e1-44f5-a082-723fc12e4845,{"type":"LineString","coordinates":[[0.95480226,0.67213115],[0.96045198,0.67213115],[0.94915254,0.67213115]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -9ebd2d6d-020f-43d0-859f-572048423fa5,Standard,5905e32c-b1d7-40d9-9759-84dbe6b14ba8,{"type":"LineString","coordinates":[[0.71186441,0.77868852],[0.72316384,0.77868852],[0.71751412,0.77868852]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -e5853628-7933-41bf-8928-1cbed722d992,Standard,8dd3984e-a9f6-4829-9c19-a377e3491f9a,{"type":"LineString","coordinates":[[0.71186441,0.14754098],[0.71751412,0.14754098],[0.70621469,0.14754098]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -020d5d66-68b8-4849-a49d-7ef75c5d660a,Standard,09125a13-324b-4611-a718-5028b390f1ca,{"type":"LineString","coordinates":[[0.96045198,0.67213115],[0.98305085,0.91803279],[0.98305085,0.79508197],[0.98305085,0.67213115]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -19c31421-6513-4f44-883b-586d45bbe732,Standard,8cc7bf8e-226d-41c9-9cd0-7524ea9186f7,{"type":"LineString","coordinates":[[0.92090395,0.89344262],[0.91525424,0.89344262],[0.92655367,0.89344262]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -9e61a9a5-b9b7-4033-b8bc-87db9dc0665e,Standard,220f509c-9aea-4e60-8dc1-593d2e35ed21,{"type":"LineString","coordinates":[[0.79096045,0.77868852],[0.79661017,0.77868852],[0.80225989,0.77868852]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -abf466a5-497f-471d-8571-8d51f687bc26,Standard,0d6627e5-9f9e-4c40-90c1-45abd98a51cd,{"type":"LineString","coordinates":[[0.0960452,0.2295082],[0.0960452,0.20901733],[0.0960452,0.18852459]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -6c612da8-8b8c-4d36-88e1-75a17fe6183c,Standard,d97f2684-22cb-4c14-b01c-b95081d4d624,{"type":"LineString","coordinates":[[0.81920904,0.96721311],[0.81355932,0.96721311],[0.82485876,0.96721311]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -7d5ff8b0-0692-4a90-bd37-24f4d8d61b98,Standard,13cfe1fb-1cec-4c17-baf8-b7dcb9f744cd,{"type":"LineString","coordinates":[[0.93220339,0.36885246],[0.94915254,0.36885246],[0.96610169,0.39344262],[0.96610169,0.36885246]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -0a19a747-608b-47ae-afee-68ce774e8a89,Standard,971288e4-038b-49d5-8df0-b2a7fdc0e17c,{"type":"LineString","coordinates":[[0.22033898,0.13114754],[0.22033898,0.14754098],[0.22033898,0.1147541]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -8429ecfe-031f-44ea-b7ff-b708c46e87cd,Standard,b13204e1-02fa-49dd-92e2-c3310a15909a,{"type":"LineString","coordinates":[[0.73446328,0.89344262],[0.72881356,0.89344262],[0.72316384,0.89344262]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -7f9e41b0-3a43-4107-98e7-e1763ebc0db8,Standard,42828cac-b67e-4d5c-b4fa-787c57f16fde,{"type":"LineString","coordinates":[[0.22033898,0.07377049],[0.22033898,0.04098361],[0.12429379,0.04098361],[0.02824859,0.06557377],[0.02824859,0.04098361]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -351b1bbd-8daf-427c-a18b-4fa6597db574,Standard,81578256-7c89-4651-8863-31fd206c628c,{"type":"LineString","coordinates":[[0.72881356,0.36885246],[0.70621469,0.36885246],[0.72316384,0.36885246]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -425a1be6-d966-476e-8266-4ba140da64e2,Standard,5753e615-c90a-4008-92ec-b50c8195f95f,{"type":"LineString","coordinates":[[0.65536723,0.67213115],[0.66666667,0.67213115],[0.66101695,0.67213115]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -abe20917-26ae-41ba-8373-916d8cfe6497,Standard,03b3d5c7-cb42-45d7-a5b7-b44c60ad5268,{"type":"LineString","coordinates":[[0.0960452,0.07377049],[0.0960452,0.0942623],[0.0960452,0.1147541]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -0eb4a8c0-bf8d-49c6-be95-c5e030be9dda,Standard,c64c73c4-109b-4baa-bf44-3357d4bca7d8,{"type":"LineString","coordinates":[[0.89265537,0.77868852],[0.89830508,0.77868852],[0.9039548,0.77868852]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -97ca267c-1174-4faf-9617-56bd2a90a390,Standard,3026e0ba-0a46-4d5e-afff-953c34fde207,{"type":"LineString","coordinates":[[0.94350282,0.04918033],[0.94350282,0.02459016],[0.94350282,0.0]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -4506a9cb-e391-43f7-ba75-88f376b40cf1,Standard,d7c951cc-2e8f-40d0-b310-03fbdb9b0558,{"type":"LineString","coordinates":[[0.88135593,0.25409836],[0.88700565,0.25409836],[0.87570621,0.25409836]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -eb5e4437-0f18-43c1-9e51-51bcfc038bea,Standard,37c8ebe1-5d29-4806-a84a-fc00e4279fa6,{"type":"LineString","coordinates":[[0.22881291,0.06557377],[0.25423729,0.06557377],[0.20338983,0.06557377]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -69e84854-3ccd-478b-bfd4-36179f27ce1d,Standard,73c09f1f-3538-4b5f-acbf-38b686a0dbba,{"type":"LineString","coordinates":[[0.93220339,0.57377049],[0.93785311,0.57377049],[0.92655367,0.57377049]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -643e73ad-b1dd-4965-8e27-f7a5aac9b2f5,Standard,5157574f-5e67-4574-81a3-686b97a893ff,{"type":"LineString","coordinates":[[0.77966102,0.44262295],[0.78531073,0.44262295],[0.7740113,0.44262295]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -b6211854-7f10-4f8b-ab3e-f4e32cbe01c8,Standard,f93f5e08-f351-4b2b-8cb0-9ec01203c1b9,{"type":"LineString","coordinates":[[0.83615819,0.96721311],[0.83050847,0.96721311],[0.82485876,0.96721311]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -69c87952-34ed-4092-8522-dd2c66ac48f5,Standard,eb1cd362-f3bd-4411-a45d-a237bcb07789,{"type":"LineString","coordinates":[[0.76836158,0.89344262],[0.75706215,0.89344262],[0.76271186,0.89344262]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -d7f74d06-26c4-4f97-b45c-e51aa12ab9fe,Standard,71832b7e-b5a2-40d4-82d3-e8f1ba38ace6,{"type":"LineString","coordinates":[[0.88700565,0.57377049],[0.89265537,0.57377049],[0.88135593,0.57377049]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -7c9a8ae8-b024-4bf6-ade7-154fd3f39d7a,Standard,746fa279-2acf-4aa1-b3e1-8d312d66058a,{"type":"LineString","coordinates":[[0.9039548,0.77868852],[0.91525424,0.77868852],[0.90960452,0.77868852]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -abed22cb-da71-4459-9221-9b63cb8c672b,Standard,d5d7329a-08a2-4946-8a02-d4a70746d37b,{"type":"LineString","coordinates":[[0.79096045,0.96721311],[0.79661017,0.96721311],[0.80225989,0.96721311]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -90022bb0-1fb8-4b03-8220-30c2fc7bf6c9,Standard,2770ee0b-96ca-4677-9933-8d82643501e3,{"type":"LineString","coordinates":[[0.82485876,0.57377049],[0.81920904,0.57377049],[0.81355932,0.57377049]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -fd9f1ff2-8ac3-44a6-a65d-9f8344c68b32,Standard,3029d722-91ec-4e45-9243-d267222b6c8e,{"type":"LineString","coordinates":[[0.93220339,0.25409836],[0.94350282,0.25409836],[0.93785311,0.25409836]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -d2f946ca-00f5-4f0f-be6c-eed2c34180d5,Standard,94071ac7-ae51-4e45-8795-9d10bda616e9,{"type":"LineString","coordinates":[[0.02259887,0.1147541],[0.02259887,0.13114754],[0.02259887,0.14754098]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -4bbd03a7-34fd-4fdd-9371-a77b305792e2,Standard,9085189c-48df-498a-80e5-49fe54692a66,{"type":"LineString","coordinates":[[0.14689266,0.57377049],[0.11864407,0.57377049],[0.09039548,0.57377049]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -7e4c4142-2c08-494c-bd3a-f8876ac8c176,Standard,8f9d19a8-8d64-4f62-b6aa-f5f01a12b566,{"type":"LineString","coordinates":[[0.94915254,0.25409836],[0.94350282,0.25409836],[0.95480226,0.25409836]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -aeea1358-be04-403e-84e7-5e22226fa156,Standard,222af488-6339-4308-8f25-eac19b6e2c9c,{"type":"LineString","coordinates":[[0.63276836,0.89344262],[0.62146893,0.89344262],[0.62711864,0.89344262]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -d8f0a014-fdb6-44da-8b0a-abd44e7578c6,Standard,7d68b748-ebe5-430e-95b8-bd0eededa136,{"type":"LineString","coordinates":[[0.94350282,0.89344262],[0.92655367,0.89344262],[0.96045198,0.89344262],[0.96045198,0.91803279]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -c7b49d97-2495-4f09-97e7-808764ac8b51,Standard,8c6b2196-6705-45ec-9879-8334924f968c,{"type":"LineString","coordinates":[[0.62146893,0.36885246],[0.62711864,0.36885246],[0.61581921,0.36885246]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -c329e8a9-931a-4efc-8e41-31cad43306de,Standard,d160ec85-06ab-42d2-9dc1-4f905306e0a6,{"type":"LineString","coordinates":[[0.79661017,0.36885246],[0.80225989,0.36885246],[0.8079096,0.36885246]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -37e7a43e-7216-4178-81c1-08c1bbc82b26,Standard,5c26821d-ea3b-4a00-8d42-1486710a2ca5,{"type":"LineString","coordinates":[[0.78531073,0.14754098],[0.79661017,0.14754098],[0.79096045,0.14754098]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -57ecdb3b-20dd-453d-8333-2961984499b2,Standard,876998db-5326-4257-b2d1-a4722265f51d,{"type":"LineString","coordinates":[[0.22033898,0.16803372],[0.22033898,0.14754098],[0.22033898,0.18852459]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -a8cd181f-6834-437f-aa9e-6b165504b870,Standard,f0d4491e-eb64-49a0-8fc3-44fa5bd9dcee,{"type":"LineString","coordinates":[[0.31073446,0.06557377],[0.25423729,0.06557377],[0.28248588,0.06557377]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -de4bc4d5-2d9e-405d-b63d-6e6534de49e1,Standard,ffdd2907-38ed-4a39-89de-9435e97dadc0,{"type":"LineString","coordinates":[[0.76836158,0.25409836],[0.7740113,0.25409836],[0.76271186,0.25409836]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -f9f042d8-0aa6-4194-bc49-8a91adb0faab,Standard,affde1a2-90e8-468f-a0a9-eb024f791857,{"type":"LineString","coordinates":[[1,0.04918033],[1,0.22131148],[1,0.39344262],[0.96610169,0.04918033]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -76c9c154-bb98-4112-acde-034bfea3eedf,Standard,2c6d3986-9cf2-4c41-9a40-400e4e0b3112,{"type":"LineString","coordinates":[[0.66666667,0.77868852],[0.6779661,0.77868852],[0.67231638,0.77868852]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -37d550c7-c9c4-48c3-b2b6-4c120c095dec,Standard,1372ca57-8429-43c6-a589-a402de4ac7f9,{"type":"LineString","coordinates":[[0.93785311,0.14754098],[0.93220339,0.14754098],[0.94350282,0.14754098]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -7a5177b5-a744-436f-ba4e-8d5f1c5c72ae,Standard,edbbe75f-8d40-42e8-a6f4-857f64547cbd,{"type":"LineString","coordinates":[[0.79096045,0.96721311],[0.77966102,0.96721311],[0.78531073,0.96721311]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -7cdd95e3-99fd-4221-83c6-0adb0614fef4,Standard,784bfe2a-8d23-4e74-8b05-b13141611186,{"type":"LineString","coordinates":[[0.73446328,0.67213115],[0.74576271,0.67213115],[0.74011299,0.67213115]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -99d1011b-78cd-420d-bda7-8c45c0eb6ab6,Standard,fd04cc09-6ff8-48ea-a5eb-453e9d59d6d7,{"type":"LineString","coordinates":[[0.17513737,0.07377049],[0.13559322,0.07377049],[0.13559322,0.1557377],[0.21468281,0.07377049]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -644acdd9-9a11-4521-9e6b-30a424684207,Standard,6bbccaac-2bbe-4d0b-bb07-80dbb605ec1c,{"type":"LineString","coordinates":[[0.74011299,0.25409836],[0.74576271,0.25409836],[0.75141243,0.25409836]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -78f2fb26-f4e1-453e-b1a8-037164e5859d,Standard,cfd11fa8-fcf6-4b65-9523-ee5d21e292ed,{"type":"LineString","coordinates":[[0.90960452,0.25409836],[0.9039548,0.25409836],[0.89830508,0.25409836]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -98611c6a-9f1a-4f18-a95c-2abaf27112db,Standard,b5c255b5-8572-41ce-a273-a01d2a4b4e20,{"type":"LineString","coordinates":[[0.83050847,0.04918033],[0.82485876,0.04918033],[0.81920904,0.04918033]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -135be5b3-e2f0-4b70-b71f-a2369e57bc15,Standard,ec21c844-ca32-4f95-b6f3-dd8c56128f66,{"type":"LineString","coordinates":[[0.88135593,0.14754098],[0.88700565,0.14754098],[0.87570621,0.14754098]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -576ebbf9-77a7-411e-84f9-192176cfe4b6,Standard,d3d211d9-22f6-42ba-a596-0d0ca1c7e943,{"type":"LineString","coordinates":[[0.91525424,0.25409836],[0.90960452,0.25409836],[0.92090395,0.25409836]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -2517024b-1ac9-4355-847e-64dc1bce6959,Standard,63be5ffd-acbc-4c4f-aab9-54c616e2dd2e,{"type":"LineString","coordinates":[[0.85875706,0.04918033],[0.86440678,0.04918033],[0.85310734,0.04918033]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -e4925b18-bc90-46e6-afbd-074e7604a079,Standard,a4792ce6-c652-43e9-9156-5e9d0aa082c2,{"type":"LineString","coordinates":[[0.09039548,0.66393443],[0.05084746,0.66393443],[0.05084746,0.78688525],[0.05084746,0.72541077]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -9aa0828c-100b-41d9-a1f9-5bc4957d27e5,Standard,a3c0115c-42eb-48a9-a6b0-64635ee66b87,{"type":"LineString","coordinates":[[0.84180791,0.14754098],[0.85310734,0.14754098],[0.84745763,0.14754098]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -064f5cc6-d674-40e8-843f-70e91d79f18f,Standard,f2c37ce1-91d3-43d3-beb3-1fc9a30c87fe,{"type":"LineString","coordinates":[[0.89265537,0.14754098],[0.89830508,0.14754098],[0.88700565,0.14754098]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -c1c61c3b-ca09-4cc7-a9d7-36a3c4214338,Standard,a78fbab6-e680-4c45-9731-97c82f2fb3c8,{"type":"LineString","coordinates":[[0.15819209,0.07377049],[0.15819209,0.05737705],[0.15819209,0.04098361]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -bbca471b-16c1-4981-8414-b6bf87274cae,Standard,80332374-76fe-4d06-adde-e2197f88fe6e,{"type":"LineString","coordinates":[[0.79661017,0.57377049],[0.80225989,0.57377049],[0.77966102,0.57377049]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -7e70ed5b-6fc1-4d25-bef7-d65b15598927,Standard,d15c85bb-c9b1-4fa3-8bf6-4aa393b564d4,{"type":"LineString","coordinates":[[0.79096045,0.67213115],[0.79661017,0.67213115],[0.80225989,0.67213115]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -0cff94f9-313a-407e-9261-659d48c4d22a,Standard,ca425259-fab4-4dc1-99c9-c19031121645,{"type":"LineString","coordinates":[[0.92090395,0.77868852],[0.92655367,0.77868852],[0.91525424,0.77868852]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -30a58ed2-09d8-4e43-9aff-7b9f1e3e1f73,Standard,7df282f5-2e54-4220-8276-087634415be8,{"type":"LineString","coordinates":[[0.73446328,0.44262295],[0.72881356,0.44262295],[0.74011299,0.44262295]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -f2ebf446-7c65-464d-96ba-5d5c3249b78d,Standard,10d957bc-fb58-4a8f-8fd2-96a0b129eb02,{"type":"LineString","coordinates":[[0.68926554,0.67213115],[0.69491525,0.67213115],[0.70056497,0.67213115]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -f6674e18-ba25-4454-9fed-d7864f493e0f,Standard,5d56c97f-e15c-4676-9b1a-fc5d7efb8a24,{"type":"LineString","coordinates":[[0.65536723,0.67213115],[0.6440678,0.67213115],[0.64971751,0.67213115]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -7c1b6af1-952c-4304-8d69-da1a0d14b955,Standard,8add0020-bc20-4aaa-9ad3-fa1a1a5ef376,{"type":"LineString","coordinates":[[0.7740113,0.36885246],[0.76271186,0.36885246],[0.76836158,0.36885246]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -0d80286f-437b-44cc-959f-998de3f51893,Standard,b6b655da-54ed-41d8-a331-04e41d2286de,{"type":"LineString","coordinates":[[0.09039548,0.75409836],[0.11864407,0.75409836],[0.14689266,0.75409836]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -a17da6b8-ee9a-4ea4-83b4-97ed6a95cfeb,Standard,17e2286d-65ca-4948-8a6c-63bdc13a9b50,{"type":"LineString","coordinates":[[0.99435028,0.57377049],[0.99435028,0.91803279],[0.99435028,0.74590164],[0.96045198,0.57377049]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -858c83e7-a54e-4409-abc4-445313cae9d2,Standard,5adb6634-4872-43af-b9cb-39df332b64b2,{"type":"LineString","coordinates":[[0.8700565,0.57377049],[0.86440678,0.57377049],[0.85875706,0.57377049]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -d557f6be-2b4b-46af-8e8b-2c2e85d210d1,Standard,ff38b3f7-e29d-4f61-946e-59a8b283295c,{"type":"LineString","coordinates":[[0.93220339,0.25409836],[0.92655367,0.25409836],[0.92090395,0.25409836]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -9c4bc5d8-e9a6-4fc6-9a88-2e09c3823bc4,Standard,47cc3694-2782-4c44-8c61-e14d30dbbaa4,{"type":"LineString","coordinates":[[0.7740113,0.36885246],[0.77966102,0.36885246],[0.78531073,0.36885246]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -70d56f26-5aff-44a5-b9af-e0141256ab38,Standard,76d82f19-65d7-447d-a14c-95d050139fa5,{"type":"LineString","coordinates":[[0.90960452,0.89344262],[0.91525424,0.89344262],[0.9039548,0.89344262]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -731d0c51-6405-43f9-ab85-2ee7039cbef5,Standard,0a068504-0bd7-4484-a0e3-26afade14698,{"type":"LineString","coordinates":[[0.0960452,0.14754098],[0.0960452,0.1147541],[0.0960452,0.13114754]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -890090ef-f4f2-4ff6-b11b-9eda935b67c5,Standard,16b934cc-98c6-42b9-9005-be4bf7365693,{"type":"LineString","coordinates":[[0.22881291,0.57377049],[0.25423729,0.57377049],[0.20338983,0.57377049]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -0238d402-4cd5-4f04-8838-02d4ac837e48,Standard,97b9a53e-9ff2-4567-95c0-6c9aab07a43f,{"type":"LineString","coordinates":[[0.73446328,0.67213115],[0.72881356,0.67213115],[0.72316384,0.67213115]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -3b3b0a7b-f2c4-4035-a97d-b86bc8c4f60e,Standard,2c4fae2c-c565-4111-b535-8488737aa358,{"type":"LineString","coordinates":[[0.72881356,0.25409836],[0.74011299,0.25409836],[0.73446328,0.25409836]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -75f3b026-fcc1-4403-844f-8c595cb797c1,Standard,a8b86d8f-a196-4eca-b248-66bc8918f9e6,{"type":"LineString","coordinates":[[0.76836158,0.89344262],[0.7740113,0.89344262],[0.77966102,0.89344262]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -b143bc7f-d331-491b-bc17-b2a5efbd8624,Standard,ab23d369-ff75-41b4-8a25-25ec9c4320aa,{"type":"LineString","coordinates":[[0.77966102,0.67213115],[0.76836158,0.67213115],[0.7740113,0.67213115]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -6e77b999-e8d0-40eb-91e8-fa1437071b53,Standard,ce8ea248-dbcb-40b9-a97d-22452032ad27,{"type":"LineString","coordinates":[[0.84180791,0.67213115],[0.84745763,0.67213115],[0.83615819,0.67213115]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -6c8e7b09-25bc-47fb-b94d-fda79b2a7587,Standard,5ff3f25d-ef1d-4ba2-ba1e-b387965a839a,{"type":"LineString","coordinates":[[0.81355932,0.36885246],[0.8079096,0.36885246],[0.81920904,0.36885246]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -4c56b3b5-fa87-4f28-a448-8b0c18e4fa5b,Standard,d8d23da6-be08-4ace-8d93-70c0faab1505,{"type":"LineString","coordinates":[[0.92090395,0.04918033],[0.90960452,0.04918033],[0.91525424,0.04918033]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -ef83135b-8f60-402c-b01b-35cbcd10dae1,Standard,815bc4d0-3418-4d15-8f85-c104a24e6b17,{"type":"LineString","coordinates":[[0.62146893,0.14754098],[0.61581921,0.14754098],[0.62711864,0.14754098]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -6648b930-5922-4929-ba68-61da0122ebf2,Standard,ab7c6c3c-3b7f-4475-8cad-27657bc148c6,{"type":"LineString","coordinates":[[0.95480226,0.77868852],[0.96045198,0.77868852],[0.94915254,0.77868852]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -7c3d59a2-9fbd-4b26-a8f5-19762ff323a5,Standard,0b6f398b-30f3-41f1-9bc2-ec93e91e8f19,{"type":"LineString","coordinates":[[0.72881356,0.25409836],[0.72316384,0.25409836],[0.71751412,0.25409836]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -75e06780-090a-411f-a47c-47c5a90a2e09,Standard,4bdb6569-72da-4d60-97b1-b5a639032d5d,{"type":"LineString","coordinates":[[0.25423729,0.24590164],[0.28248588,0.24590164],[0.31073446,0.24590164]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -b8808d71-77bb-4645-a465-925b78180142,Standard,4c98fe8a-ca2a-4503-8843-a800cbf92c82,{"type":"LineString","coordinates":[[0.81920904,0.14754098],[0.83050847,0.14754098],[0.82485876,0.14754098]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -38558b72-56a7-4b85-a4fe-db0f4e2bcb19,Standard,4dbb5675-cc27-4868-a9cc-e28ca232ba23,{"type":"LineString","coordinates":[[0.95480226,0.14754098],[0.94915254,0.14754098],[0.94350282,0.14754098]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -e063a648-77d9-43ef-974f-10cbae21da06,Standard,63856192-b60e-48a5-83a3-94422a79e79e,{"type":"LineString","coordinates":[[0.75706215,0.36885246],[0.75141243,0.36885246],[0.76271186,0.36885246]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -2943f23e-2c36-4e11-9865-1687d782d9ff,Standard,997840bf-8c94-444f-83f1-e9c991706d7c,{"type":"LineString","coordinates":[[0.01694915,0.06557377],[0.11864407,0.07377049],[0.06779661,0.07377049],[0.11864407,0.1557377],[0.01694915,0.07377049]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -d1c04861-36ef-49b7-9a2b-5fa2706734ad,Standard,bfecad6c-ddda-4957-ae66-f04d30fd7104,{"type":"LineString","coordinates":[[0.66101695,0.36885246],[0.63841808,0.36885246],[0.65536723,0.36885246]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -64cbd123-f34e-4732-beab-76022918e26c,Standard,87cd1ae0-2ac4-46fb-aeb8-b2f710da299b,{"type":"LineString","coordinates":[[0.79096045,0.77868852],[0.77966102,0.77868852],[0.78531073,0.77868852]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -2e32f0e7-43fd-4f42-8376-ce687378e5aa,Standard,8885b761-4c1a-4924-be8a-b8f474d8f629,{"type":"LineString","coordinates":[[0.15819209,0.18852459],[0.15819209,0.20901733],[0.15819209,0.2295082]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -79eac61e-e3b2-421a-9716-9940963761f0,Standard,199bc8fc-71a0-4c78-a64d-80a87f0f6b78,{"type":"LineString","coordinates":[[0.7740113,0.57377049],[0.75706215,0.57377049],[0.77966102,0.57377049]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -fb4b559f-3d60-40f8-aa42-6741e8976026,Standard,81f4c585-6170-4a9e-981f-2185a0d7f2ec,{"type":"LineString","coordinates":[[0.23163842,0.07377049],[0.23163842,0.1147541],[0.23163842,0.1557377]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -606bfb84-710f-493d-8726-c3293352134c,Standard,1cf0cb95-28b9-4dc1-82b9-3466d7d870cc,{"type":"LineString","coordinates":[[0.68926554,0.67213115],[0.68361582,0.67213115],[0.6779661,0.67213115]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -3753f696-3d3c-4153-b4b2-a212393224f3,Standard,2e5bf3d7-11a5-496f-9bd5-bb9d3686a576,{"type":"LineString","coordinates":[[0.90960452,0.67213115],[0.9039548,0.67213115],[0.91525424,0.67213115]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -6df8c538-c0a6-4317-99f3-3068051701d1,Standard,de5aeea7-2505-4f0d-9d53-22a5287ab8b7,{"type":"LineString","coordinates":[[0.70056497,0.25409836],[0.69491525,0.25409836],[0.70621469,0.25409836]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -f6991b3a-2ada-49cf-abf1-a63a965f014c,Standard,22d61b21-2a7d-4be8-b14b-f0d72e1c5ba7,{"type":"LineString","coordinates":[[0.8079096,0.04918033],[0.81355932,0.04918033],[0.81920904,0.04918033]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -93037ae2-ded0-404e-a453-841008d2f285,Standard,22acea8e-cde0-45a4-82e6-ce5241226aac,{"type":"LineString","coordinates":[[0.71186441,0.67213115],[0.70621469,0.67213115],[0.70056497,0.67213115]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -49330239-a43c-47c9-82cb-f65469f2265a,Standard,d00ddea9-83f7-411a-9da6-f9607ffb3c87,{"type":"LineString","coordinates":[[0.62711864,0.67213115],[0.63276836,0.67213115],[0.62146893,0.67213115]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -6b5fc3d8-f582-4658-b99e-a1fe3531d310,Standard,a92769d6-3f6f-4e67-98b3-303e59dd9cda,{"type":"LineString","coordinates":[[0.92090395,0.14754098],[0.91525424,0.14754098],[0.90960452,0.14754098]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -2df37064-78de-4de2-8cb5-561fa8cec2d3,Standard,b11ce01e-37ce-4ea7-b3a3-4db89820fde1,{"type":"LineString","coordinates":[[0.83615819,0.44262295],[0.84180791,0.44262295],[0.83050847,0.44262295]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -2591882d-ad68-4e8a-9ec1-370d33dafb29,Standard,7b7ac3b3-877f-4cba-8ad4-6171f2c5b83c,{"type":"LineString","coordinates":[[0.91525424,0.36885246],[0.90960452,0.36885246],[0.92090395,0.36885246]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -b175f10d-452b-48a1-a536-b8ae8fc1241e,Standard,b140dccb-7251-496b-9402-06ebd13048c2,{"type":"LineString","coordinates":[[0.62711864,0.36885246],[0.63841808,0.36885246],[0.63276836,0.36885246]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -90ad029a-358f-4f05-8a01-62820461dbb2,Standard,814dec01-f6f2-4817-8f83-2e758011b033,{"type":"LineString","coordinates":[[0.09039548,0.24590164],[0.06214689,0.27868852],[0.06214689,0.24590164],[0.06214689,0.26229508]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -75c4a953-e8af-496f-b844-0e201f12c8da,Standard,e1315733-0b28-4465-8367-fa4535d282fa,{"type":"LineString","coordinates":[[0.86440678,0.14754098],[0.8700565,0.14754098],[0.87570621,0.14754098]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -489c437d-5bf2-4b5a-b26c-c3e1b6b38b4c,Standard,b5a66c60-7189-4c86-a32a-4d1aa6568475,{"type":"LineString","coordinates":[[0.17796675,0.1557377],[0.14124939,0.1557377],[0.21468281,0.1557377]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -d270922a-fbc9-4da6-8b1d-33dc276757ea,Standard,5001666c-1331-43f9-8b09-3667c89951d4,{"type":"LineString","coordinates":[[0.75706215,0.04918033],[0.76271186,0.04918033],[0.75141243,0.04918033]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -8d0a5ac8-10bf-4e3e-afb5-b60f9bf317d9,Standard,0c73890d-adfa-4936-966f-8e527c06bdbe,{"type":"LineString","coordinates":[[0.67231638,0.36885246],[0.6779661,0.36885246],[0.68361582,0.36885246]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -74887fe3-c3a5-4919-8b77-743e3f2c5bd4,Standard,d48db7e8-5fde-456f-8b17-02d18a5a2e32,{"type":"LineString","coordinates":[[0.31073446,0.1557377],[0.25423729,0.1557377],[0.28248588,0.1557377]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -ba000052-dc52-4f14-9235-1cddc1069e4e,Standard,bdf60fc2-e400-46f6-b873-7a40663106f3,{"type":"LineString","coordinates":[[0.89265537,0.04918033],[0.88700565,0.04918033],[0.89830508,0.04918033]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -91bf20e1-1a3b-4b69-b55b-a4ab8a5b3ae9,Standard,445cc0c8-70b8-47d4-987f-308269b845a3,{"type":"LineString","coordinates":[[0.61581921,0.89344262],[0.62146893,0.89344262],[0.61016949,0.89344262]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -36b52d45-0e51-46b2-9831-aa3fb3ff3c37,Standard,c49d1581-a0c6-493f-9534-39f97970492b,{"type":"LineString","coordinates":[[0.81355932,0.67213115],[0.81920904,0.67213115],[0.82485876,0.67213115]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -12de6c44-ec23-42e2-81b7-1fc0a757edf9,Standard,8ae06d94-8e5d-48f6-9d43-599596df688a,{"type":"LineString","coordinates":[[0.86440678,0.36885246],[0.8700565,0.36885246],[0.87570621,0.36885246]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -533d0392-fdc3-48f9-a26b-ea150734112a,Standard,f2c9a881-eb41-4628-833c-5258e95ec457,{"type":"LineString","coordinates":[[0.71751412,0.96721311],[0.72316384,0.96721311],[0.71186441,0.96721311]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -2dd6612a-8f9d-417f-b922-5a2ec2d3acc2,Standard,2497455a-888c-4ac6-aa49-582ab91fd05e,{"type":"LineString","coordinates":[[0.77966102,0.96721311],[0.76836158,0.96721311],[0.7740113,0.96721311]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -bf2e4a45-726d-4ee5-9dfa-66024bcde4c0,Standard,a7a76517-7239-4a95-b9b0-0027cddfa77b,{"type":"LineString","coordinates":[[0.84745763,0.57377049],[0.82485876,0.57377049],[0.84180791,0.57377049]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -119b5881-58c5-4891-8c79-df4c5486fb64,Standard,88c3a0b5-9def-4bf3-87c1-0ee75578b5a9,{"type":"LineString","coordinates":[[0.72881356,0.36885246],[0.74011299,0.36885246],[0.73446328,0.36885246]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -635f6544-258b-43f5-959f-2f32c5345189,Standard,23abf40d-58a7-4f00-9ee8-5290a510f9b2,{"type":"LineString","coordinates":[[0.15819209,0.14754098],[0.15819209,0.1147541],[0.15819209,0.13114754]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -9944a608-7e0a-4325-963f-76110bbe81b7,Standard,b672be06-2cbc-4510-8a96-34647985e9d5,{"type":"LineString","coordinates":[[0.92090395,0.14754098],[0.93220339,0.14754098],[0.92655367,0.14754098]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -86e07109-4192-46e7-b92a-b5df2ed6a4b0,Standard,96cc155a-9417-4ed9-911a-b06b7981a2fe,{"type":"LineString","coordinates":[[0.77966102,1],[0.77966102,0.99180328],[0.77966102,0.98360656]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -1f1e8882-9977-48c4-aaaf-c98087dff35d,Standard,2dd402ff-ef64-4b4b-8a49-e9570364e65b,{"type":"LineString","coordinates":[[0.76836158,0.96721311],[0.75706215,0.96721311],[0.76271186,0.96721311]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -35855268-8c8d-4b4d-8f85-5f164a76dd73,Standard,dafff7d5-8ed4-4b2f-bcd3-b6d02472dfea,{"type":"LineString","coordinates":[[0.70621469,0.14754098],[0.70056497,0.14754098],[0.69491525,0.14754098]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -d56c9bd7-c160-4b6b-b132-accb5da7fda4,Standard,1a56ec37-3781-4f35-aeec-0d0341c63372,{"type":"LineString","coordinates":[[0.69491525,0.25409836],[0.68926554,0.25409836],[0.68361582,0.25409836]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -67fa7b51-f7ce-48c4-b9c5-9856619e2788,Standard,7297611b-fbdc-4949-87fc-1bca403708aa,{"type":"LineString","coordinates":[[0.89265537,0.67213115],[0.88135593,0.67213115],[0.88700565,0.67213115]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -f023c2be-7306-483e-9169-05d9d0fab2c7,Standard,9d2b065a-9098-447d-8dbe-5eb06cc691a2,{"type":"LineString","coordinates":[[0.74576271,0.57377049],[0.75706215,0.57377049],[0.75141243,0.57377049]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -a6a4da26-f67b-4ef9-aef8-c072a664c473,Standard,7cc28881-dec6-4baa-ad77-d4a2ea3cdd68,{"type":"LineString","coordinates":[[0.02259887,0.0],[0.02259887,0.0204918],[0.02259887,0.04098361]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -e918bf04-3eb3-4a6d-9173-20ed223f0628,Standard,31c8715f-7b85-4243-8908-69cf8b2c1525,{"type":"LineString","coordinates":[[0.87570621,0.89344262],[0.8700565,0.89344262],[0.88135593,0.89344262]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -59378c39-5361-470c-9974-8dd65fcc3b2b,Standard,e8329717-1626-4c33-b60e-d83e78514014,{"type":"LineString","coordinates":[[0.84180791,0.77868852],[0.84745763,0.77868852],[0.83615819,0.77868852]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -4d1fa209-9186-4e2c-862a-964d52e64d0d,Standard,66dbe72e-f2be-430d-b103-c1a84f8211a4,{"type":"LineString","coordinates":[[0.81920904,0.14754098],[0.8079096,0.14754098],[0.81355932,0.14754098]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -b422e0ef-fcf8-4035-a3e1-3c851db6551e,Standard,e6882165-4c20-4589-9dd5-624b10802042,{"type":"LineString","coordinates":[[0.94350282,0.04918033],[0.95480226,0.04918033],[0.96610169,0.04918033]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -fd79934e-7893-4948-8d5d-f7bad5afec35,Standard,5450f675-565b-4156-9d64-ff4cfeea96d3,{"type":"LineString","coordinates":[[0.68926554,0.77868852],[0.68361582,0.77868852],[0.6779661,0.77868852]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -c41cc825-581d-4aea-a08f-794c8be52c9b,Standard,d2cd0ac6-ffbb-43f3-94c1-e10344eea594,{"type":"LineString","coordinates":[[0.84180791,0.14754098],[0.83615819,0.14754098],[0.83050847,0.14754098]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -bd52fae7-5d39-4718-a9f5-737d6e4ac693,Standard,87a41d29-ad67-4bd6-a5b7-9d1414b38c6e,{"type":"LineString","coordinates":[[0.89265537,0.89344262],[0.9039548,0.89344262],[0.89830508,0.89344262]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -00f67881-6f00-41b0-9377-489c08522513,Standard,09fdfecb-1ea0-4b99-a7bd-caad84afe160,{"type":"LineString","coordinates":[[0.86440678,0.36885246],[0.85875706,0.36885246],[0.85310734,0.36885246]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -264375c8-48d3-4c14-a432-e627f7ffed82,Standard,ddc03ccc-bd8e-47f3-8183-97f3b039219d,{"type":"LineString","coordinates":[[0.8079096,0.14754098],[0.79661017,0.14754098],[0.80225989,0.14754098]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -7db35bba-5e4d-4964-abbe-a2e18b630f59,Standard,08d39ce3-e843-49bd-9b46-1fe927a1d4be,{"type":"LineString","coordinates":[[0.77966102,0.25409836],[0.7740113,0.25409836],[0.78531073,0.25409836]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -835b96cb-24b4-4032-a747-129e519583b1,Standard,c4f33026-5741-4070-970c-1234541ce509,{"type":"LineString","coordinates":[[0.88135593,0.77868852],[0.8700565,0.77868852],[0.87570621,0.77868852]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -217789d1-8cb9-4ff4-a7f5-12768eae95ab,Standard,8c4d9aa2-298b-466e-9982-6c4be253fbce,{"type":"LineString","coordinates":[[0.80225989,0.25409836],[0.8079096,0.25409836],[0.79661017,0.25409836]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -3de72fa7-5070-4429-b1d9-80d7f3273834,Standard,060f10e1-2ffd-4972-9ace-7fff8df78658,{"type":"LineString","coordinates":[[0.73446328,0.77868852],[0.72316384,0.77868852],[0.72881356,0.77868852]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -d37ce273-2b19-445b-aa00-ee2a13153e14,Standard,e357bf93-aaa3-4870-b6a4-6d2cdb8967da,{"type":"LineString","coordinates":[[0.88700565,0.36885246],[0.87570621,0.36885246],[0.88135593,0.36885246]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -71572ac8-64b8-4d87-b617-dd227be40af2,Standard,3e7e4741-502d-4c8f-bad5-e0c5c6f69958,{"type":"LineString","coordinates":[[0.83050847,0.36885246],[0.82485876,0.36885246],[0.81920904,0.36885246]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -4ec7ff3b-9815-43f8-9cba-f46af1a9f423,Standard,31f8365c-9329-4c46-8555-6ec6aadf130e,{"type":"LineString","coordinates":[[0.84745763,0.57377049],[0.85875706,0.57377049],[0.85310734,0.57377049]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -8b7a0eb4-e725-4416-ac52-3810059bfc5c,Standard,95644bf5-8dca-4409-bb04-7d4e9a24fa03,{"type":"LineString","coordinates":[[0.63841808,0.14754098],[0.63276836,0.14754098],[0.62711864,0.14754098]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -be192356-2248-4319-afd6-eac828fdb001,Standard,1a1550cf-77b8-40a9-90e5-5d0faef7baaa,{"type":"LineString","coordinates":[[0.79096045,0.89344262],[0.80225989,0.89344262],[0.79661017,0.89344262]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -79a153b2-2b64-4b59-bbe5-946a3c0073bd,Standard,c3206971-b22f-4090-826b-e08d4bc8ffad,{"type":"LineString","coordinates":[[0.20338983,0.24590164],[0.25423729,0.24590164],[0.22881421,0.24590164]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -ae02da1d-991a-4e16-81dd-2970373ec004,Standard,83b12a0c-d66f-43cf-a5c1-1945a8a66c4c,{"type":"LineString","coordinates":[[0.66666667,0.77868852],[0.65536723,0.77868852],[0.66101695,0.77868852]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -4ca6d6bc-9616-4f26-a953-b04c20364f56,Standard,1a52eb5c-a8a1-4b69-9aac-138e425d835b,{"type":"LineString","coordinates":[[0.88700565,0.04918033],[0.87570621,0.04918033],[0.88135593,0.04918033]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -31dab450-fe89-4ede-99e2-cba361671910,Standard,b714db4a-db55-4957-b503-2300559bb81f,{"type":"LineString","coordinates":[[0.20338983,0.1557377],[0.14689266,0.1557377],[0.17514124,0.1557377]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -bf3a5270-9bfc-4edb-9ca0-2ba3273c821e,Standard,dcf3c182-18bd-4536-b11f-960c52c3b36e,{"type":"LineString","coordinates":[[0.68926554,0.14754098],[0.68361582,0.14754098],[0.69491525,0.14754098]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -a4ffa7f8-dfd3-4d35-ae30-1eb0b6e6d3f6,Standard,fe19ff1f-8ea4-4ffe-881b-ad8d57c4561a,{"type":"LineString","coordinates":[[0.89830508,0.14754098],[0.90960452,0.14754098],[0.9039548,0.14754098]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -e466da06-3a27-4cea-962d-4449f392eed1,Standard,e3b38aa2-dd38-445e-86c4-600331d108d0,{"type":"LineString","coordinates":[[0.76836158,0.14754098],[0.7740113,0.14754098],[0.76271186,0.14754098]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -c1fd7798-e4fd-4cfb-af81-2cf23744637c,Standard,5f8eb2b8-0f98-4011-bc3a-b182285be4db,{"type":"LineString","coordinates":[[0.81920904,0.44262295],[0.83050847,0.44262295],[0.82485876,0.44262295]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -59151ef3-be46-4c4d-a2d4-c6a562a0952d,Standard,a5106b6a-42b2-42d0-b5b3-a4656541abfa,{"type":"LineString","coordinates":[[0.75706215,0.25409836],[0.75141243,0.25409836],[0.76271186,0.25409836]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -11bdeb21-cd02-48b2-bd54-b1adf2e96ecf,Standard,0f11e5d6-f850-463b-8d74-6fdf91fad535,{"type":"LineString","coordinates":[[0.97175141,0.84836159],[0.97175141,0.91803279],[0.96045198,0.77868852],[0.97175141,0.77868852]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -a79f2ac5-a708-48be-b910-85542d4fbb71,Standard,71c56dc9-d957-4746-872f-8ad07d4ef8a4,{"type":"LineString","coordinates":[[0.67231638,0.36885246],[0.66101695,0.36885246],[0.66666667,0.36885246]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -d2edc5bf-b3ed-4f2c-938f-8a60119a11b6,Standard,ea5f6247-4116-4acb-9595-52a7a0412897,{"type":"LineString","coordinates":[[0.25423729,0.75409836],[0.20338983,0.75409836],[0.22881421,0.75409836]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -3427affb-2a2c-4fb5-a5e3-96141a5bc9f1,Standard,b302dc76-9715-45b6-b6ef-8da630acd168,{"type":"LineString","coordinates":[[0.73446328,0.77868852],[0.74576271,0.77868852],[0.74011299,0.77868852]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -6b457803-1a41-4ed1-a747-9810ef70b1f7,Standard,64bd5e0e-cf5a-469f-a427-113b0e16893d,{"type":"LineString","coordinates":[[0.0960452,0.14754098],[0.0960452,0.16803372],[0.0960452,0.18852459]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -5afd84df-08c8-45af-b542-42eefdcb78b6,Standard,1c81ee69-fb75-4bea-bfa9-f627850f9e6b,{"type":"LineString","coordinates":[[0.84745763,0.04918033],[0.83050847,0.04918033],[0.85310734,0.04918033]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -3c31213f-b1cb-4f44-8503-7a95d141a04b,Standard,97ce398b-de56-4b28-925c-a37f9029e875,{"type":"LineString","coordinates":[[0.22033898,0.07377049],[0.22033898,0.04098361],[0.22033898,0.05737705]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -c061601a-9997-4176-a25d-aac4510a0fbc,Standard,29747132-2fe5-4570-8d02-114d3438835c,{"type":"LineString","coordinates":[[0.67231638,0.25409836],[0.6779661,0.25409836],[0.68361582,0.25409836]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -28b087ec-86fc-4701-b3b2-5a9b3c8e873e,Standard,04d02ea8-ba96-4a7f-969d-d25e201e32c6,{"type":"LineString","coordinates":[[0.94915254,0.57377049],[0.93785311,0.57377049],[0.96045198,0.57377049]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -a7dadc1d-7f50-4e7c-bd61-305d6c145ccf,Standard,52cd80d8-9489-41bc-931a-d82dba5d0926,{"type":"LineString","coordinates":[[0.28248588,0.66393443],[0.31073446,0.66393443],[0.25423729,0.66393443]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -13e3fc68-ff6f-4bd6-94cd-697d584f020c,Standard,a4dc31e8-e10a-4b42-90b4-f14d0f133c0c,{"type":"LineString","coordinates":[[0.83050847,0.25409836],[0.84180791,0.25409836],[0.83615819,0.25409836]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -fe36e4d1-ecdf-4043-af93-f1c272723249,Standard,ec4d2395-23de-41c7-a366-af36aed1bf44,{"type":"LineString","coordinates":[[0.92655367,0.67213115],[0.92090395,0.67213115],[0.91525424,0.67213115]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -26138708-ff02-48c2-a465-a8b5e5d165a8,Standard,25a1e96e-b425-48bf-a3ae-dc54ea9da47f,{"type":"LineString","coordinates":[[0.03954802,0.27868852],[0.03954802,0.17213115],[0.03954802,0.06557377],[0.09039548,0.06557377]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -58b6d4fc-b31d-4909-ba77-0b4c7bb2125a,Standard,7fa87646-f182-4d67-9ffd-850f489fb24a,{"type":"LineString","coordinates":[[0.66666667,0.67213115],[0.67231638,0.67213115],[0.6779661,0.67213115]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -8b60a817-a4d6-4051-9410-cab3ab26ce00,Standard,2cbfd089-e602-4f64-8a5b-86a6ecc56d32,{"type":"LineString","coordinates":[[0.15819209,0.0942623],[0.15819209,0.07377049],[0.15819209,0.1147541]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -446be4bd-f603-4b51-9387-39cf2aa66b2a,Standard,5763fe56-89a4-4407-ba41-c1a528dd50a0,{"type":"LineString","coordinates":[[0.63276836,0.89344262],[0.64971751,0.89344262],[0.65536723,0.89344262]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -6dd7072b-da09-4d47-a7ad-a57389a918f9,Standard,cba98774-b8c6-45f4-84cc-2fde121a77fa,{"type":"LineString","coordinates":[[0.14689266,0.06557377],[0.11864407,0.06557377],[0.09039548,0.06557377]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -6e4efd5a-e82f-47e0-bee0-a226c588fd90,Standard,9d1ef0fd-3f8d-4a97-8495-25074243860c,{"type":"LineString","coordinates":[[0.75706215,0.77868852],[0.75141243,0.77868852],[0.74576271,0.77868852]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -31f65061-b502-4249-83c0-47d10513255c,Standard,cadd7ca5-2b70-4bcc-83d0-867df8b6d0a3,{"type":"LineString","coordinates":[[0.63841808,0.67213115],[0.6440678,0.67213115],[0.63276836,0.67213115]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -bc177fc1-85f8-4475-825d-d875a935cbe1,Standard,84dcef6e-d5b1-436f-8562-369b2489bb10,{"type":"LineString","coordinates":[[0.76836158,0.44262295],[0.76271186,0.44262295],[0.7740113,0.44262295]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -9c5637b9-fd74-4119-be7e-5d22b13e2bdc,Standard,5fa6e010-393e-4bd2-a874-56eb784f9741,{"type":"LineString","coordinates":[[0.9039548,0.57377049],[0.89265537,0.57377049],[0.89830508,0.57377049]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -5d5ddcff-0cdf-42d6-a9c9-6dcd636d0c28,Standard,597126c9-f364-4968-909c-ccc064959397,{"type":"LineString","coordinates":[[0.79096045,0.44262295],[0.79661017,0.44262295],[0.78531073,0.44262295]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -5e94948f-0707-4691-910a-60a217ab9102,Standard,2887fb2b-fe44-4436-b28e-9f100f8288ac,{"type":"LineString","coordinates":[[0.31073446,0.57377049],[0.25423729,0.57377049],[0.28248588,0.57377049]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -79edb34f-6eea-4190-a0d4-2664ace2deb8,Standard,8bb29769-404b-4bf6-837e-f9ca1b389bf9,{"type":"LineString","coordinates":[[0.17514124,0.06557377],[0.14689266,0.06557377],[0.20338983,0.06557377]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -7e3b0ff3-5e08-407d-b36c-2077c16a8039,Standard,26d976e2-5245-4174-abcc-7e67e03d6352,{"type":"LineString","coordinates":[[0.83050847,0.67213115],[0.83615819,0.67213115],[0.82485876,0.67213115]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -cea17966-e3e4-40bf-a765-2e1280d383e6,Standard,7056d4fa-aa01-47d4-af86-5c9717345607,{"type":"LineString","coordinates":[[0.79661017,0.44262295],[0.8079096,0.44262295],[0.80225989,0.44262295]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -834e664b-3cff-4fae-8cc1-4cdd7af11516,Standard,ec6f82c5-e834-48d0-84af-a0f070979d65,{"type":"LineString","coordinates":[[0.75141243,0.14754098],[0.76271186,0.14754098],[0.75706215,0.14754098]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -4a76fcf6-0353-4b7f-9f53-dbd4f2df9848,Standard,a8bc3d4a-1113-4f62-b01d-e59e6c35ab84,{"type":"LineString","coordinates":[[0.02259887,0.20901733],[0.02259887,0.18852459],[0.02259887,0.2295082]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -3635451d-3007-44d6-85c8-67775bfc4e48,Standard,041991a2-c961-44a7-bfec-29cccd9a7831,{"type":"LineString","coordinates":[[0.8700565,0.25409836],[0.87570621,0.25409836],[0.86440678,0.25409836]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -8004803f-5af6-4eb8-be81-78bee4d8f302,Standard,be047b0d-9f7c-413e-bd60-f38b45d5ee80,{"type":"LineString","coordinates":[[0.83615819,0.89344262],[0.82485876,0.89344262],[0.83050847,0.89344262]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -7f6d06de-5e2f-4e11-9b80-ab156b6ad570,Standard,62c21e1e-f353-4e48-bca6-8a4da341971e,{"type":"LineString","coordinates":[[0.66666667,0.89344262],[0.67231638,0.89344262],[0.6779661,0.89344262]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -1d132dc2-af13-46f5-ab50-167e6d59fb0c,Standard,c23b7659-8e54-410a-b0e9-9eccbe2457dc,{"type":"LineString","coordinates":[[0.84745763,0.36885246],[0.84180791,0.36885246],[0.85310734,0.36885246]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -580f595f-8a44-4b1c-8833-ff8202075bb4,Standard,364ffff6-7541-4324-bbcf-fe626ba9de1d,{"type":"LineString","coordinates":[[0.81355932,0.25409836],[0.81920904,0.25409836],[0.8079096,0.25409836]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -d6a95fd4-e44c-4fb8-951a-6aaf881cfd6a,Standard,f395e127-6036-49bb-b06f-1a3808193dfa,{"type":"LineString","coordinates":[[0.8079096,0.04918033],[0.78531073,0.04918033],[0.80225989,0.04918033]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -654af5fb-14d5-4f67-8a21-f5481a814555,Standard,52ccd989-d87b-4f9f-9d5d-a0609391f56e,{"type":"LineString","coordinates":[[0.81920904,0.89344262],[0.82485876,0.89344262],[0.81355932,0.89344262]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -38c4a4da-68e5-4702-9efa-70f2a6499346,Standard,1a5bb799-bc03-4de9-a8a1-9a0616ea3add,{"type":"LineString","coordinates":[[0.81920904,0.77868852],[0.81355932,0.77868852],[0.82485876,0.77868852]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -badf084a-59db-4de6-bf6d-48f988378609,Standard,14f9eef8-8550-45fa-a3f0-f583624556e7,{"type":"LineString","coordinates":[[0.83050847,0.25409836],[0.82485876,0.25409836],[0.81920904,0.25409836]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -25e39498-b841-4c6f-bbac-2365e141f950,Standard,8619b18b-8b32-4013-9b3a-6aab514b73cc,{"type":"LineString","coordinates":[[0.93785311,0.04918033],[0.94350282,0.04918033],[0.93220339,0.04918033]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -84c7afaf-51f9-4c19-bf29-c7b79b2f90e2,Standard,1bb0764a-82b8-4f4c-8208-c9c58b8b92c0,{"type":"LineString","coordinates":[[0.02259887,0.16803372],[0.02259887,0.18852459],[0.02259887,0.14754098]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -d43ae4c8-5544-4df7-9c24-8d39301cf3a5,Standard,00a3c4ab-e866-42a9-854f-fbf28c7f6a43,{"type":"LineString","coordinates":[[0.8079096,0.77868852],[0.81355932,0.77868852],[0.80225989,0.77868852]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -4bb29460-65cf-42ff-baed-c79ec00af1ec,Standard,0d6a5b4a-db92-4772-a91c-4e18ff35c0be,{"type":"LineString","coordinates":[[0.74576271,0.44262295],[0.76271186,0.44262295],[0.74011299,0.44262295]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -00af0ca8-e5ba-4bcc-93e2-d876e5fe5f2d,Standard,7cfd5184-c217-42b9-be09-7ed413d7a11e,{"type":"LineString","coordinates":[[0.77966102,0.96721311],[0.77966102,0.97540984],[0.77966102,0.98360656]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -7d30150b-f752-417b-bbed-a6f3ecd2f823,Standard,bf6e54ab-1c74-4ce7-8371-b47e9019bd25,{"type":"LineString","coordinates":[[0.02259887,0.07377049],[0.02259887,0.04098361],[0.02259887,0.05737705]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -7fdceb5a-d837-4672-a25c-3ef1c4b021f1,Standard,cd994d2f-b62e-4ab9-8f4c-e5357fd04af7,{"type":"LineString","coordinates":[[0.71751412,0.14754098],[0.72316384,0.14754098],[0.72881356,0.14754098]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -790513bc-152b-45ac-96c6-9e89f07719c0,Standard,031633ca-bd50-401e-9159-d2258ce6309c,{"type":"LineString","coordinates":[[0.9039548,0.04918033],[0.90960452,0.04918033],[0.89830508,0.04918033]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -1d22d39f-e8b0-43b3-ab64-67ea9c72e892,Standard,6f875559-5af0-47a9-9f0e-f1d8332f9230,{"type":"LineString","coordinates":[[0.81355932,0.96721311],[0.8079096,0.96721311],[0.80225989,0.96721311]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -9b8ea76d-8054-4d43-afb3-664375202b2f,Standard,2ea48cfa-0a0b-48f0-aa66-b619c35b9929,{"type":"LineString","coordinates":[[0.8079096,0.67213115],[0.81355932,0.67213115],[0.80225989,0.67213115]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -7533ebc3-7178-4967-8613-437c2fd4663d,Standard,f59cd3fa-404d-4c42-820b-31346ae47c00,{"type":"LineString","coordinates":[[0.88700565,0.25409836],[0.89265537,0.25409836],[0.89830508,0.25409836]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -2b5bb969-f38a-4ac9-914a-413db62ac6f0,Standard,f03440ae-d6d8-4f7b-ad5f-bbd280a9d2a6,{"type":"LineString","coordinates":[[0.71751412,0.44262295],[0.72881356,0.44262295],[0.72316384,0.44262295]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -9f0829cb-1a13-482f-b372-ec6dcbbe2cda,Standard,73d786b9-377a-4807-9b70-21c80599a4d8,{"type":"LineString","coordinates":[[0.83615819,0.96721311],[0.83615819,0.89344262],[0.83615819,0.93032881]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -74efa478-92b6-442f-9c59-fb15bf064429,Standard,c6d6ca9d-042c-4525-9221-65bfa04477a4,{"type":"LineString","coordinates":[[0.79661017,0.36885246],[0.79096045,0.36885246],[0.78531073,0.36885246]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -d377b2a4-317a-4934-8442-33b32bf55c4b,Standard,9af99daa-1e1e-45a8-bbed-c77e47ba4f8a,{"type":"LineString","coordinates":[[0.71186441,0.77868852],[0.70621469,0.77868852],[0.70056497,0.77868852]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -21842dba-9c70-45df-b715-87db6ec36a0f,Standard,e311729e-244e-48a6-bc48-0c7d9823c148,{"type":"LineString","coordinates":[[0.92090395,0.04918033],[0.40677966,0.10655738],[0.92655367,0.04918033],[0.93220339,0.04918033],[0.41242938,0.10655738]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -fc601178-3ca7-48f9-8a07-e9fb3751d3e0,Standard,9e9550e6-a601-4633-96a1-20220893ce00,{"type":"LineString","coordinates":[[0.79096045,0.89344262],[0.78531073,0.89344262],[0.77966102,0.89344262]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} +077f10b2-79fe-4ae4-a86e-77423668cf1a,Standard,e50ba18f-8019-4824-b835-cc33c70b0196,"{""type"":""LineString"",""coordinates"":[[0.92655367,0.77868852],[0.93785311,0.77868852],[0.93220339,0.77868852]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +d969661d-d4dc-4544-95aa-54baebea0e8f,Standard,a102f0f4-e86d-438c-95a9-d3fc6357121f,"{""type"":""LineString"",""coordinates"":[[0.9039548,0.57377049],[0.91525424,0.57377049],[0.90960452,0.57377049]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +0fa23de1-db57-4f60-bea0-01ea1bab1da4,Standard,82e01986-321d-4f21-8453-60220f97bbb1,"{""type"":""LineString"",""coordinates"":[[0.89265537,0.89344262],[0.88700565,0.89344262],[0.88135593,0.89344262]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +3c777579-8dba-4e53-8bc0-5a4a80af9988,Standard,7ad69cae-2bb0-4516-80a9-6afc7b5cb789,"{""type"":""LineString"",""coordinates"":[[0.73446328,0.14754098],[0.74011299,0.14754098],[0.72881356,0.14754098]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +aba8138c-0b15-446c-94b9-67fc130f9c4b,Standard,d86488f7-cf74-41b4-9d62-e2923d00680f,"{""type"":""LineString"",""coordinates"":[[0.70621469,0.36885246],[0.68926554,0.36885246],[0.68361582,0.36885246]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +e52aa402-4f9f-4b5f-8220-f3d4848d67ac,Standard,0c04a652-1076-4b59-a957-652790b4c963,"{""type"":""LineString"",""coordinates"":[[0.78531073,0.45901639],[0.78531073,0.47540984],[0.78531073,0.46721311]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +00ce0bad-3efa-443d-8eed-968cc3132cf8,Standard,75098182-83b1-40ae-baaf-95f1e1f93250,"{""type"":""LineString"",""coordinates"":[[0.63841808,0.14754098],[0.6440678,0.14754098],[0.64971751,0.14754098]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +077c54e5-7a8c-4c1c-8c3c-d72b4b7b0e11,Standard,97d5bd4a-ce14-4ded-90d4-4f2db25d6626,"{""type"":""LineString"",""coordinates"":[[0.74011299,0.36885246],[0.74576271,0.36885246],[0.75141243,0.36885246]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +8ae601e8-3dcf-497e-a258-d8ac976e95e8,Standard,106f03b3-b84e-4d36-ab09-13b3dc3403e7,"{""type"":""LineString"",""coordinates"":[[0.20338983,0.1557377],[0.25423729,0.1557377],[0.22881291,0.1557377]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +b038acec-bed0-4448-9ff8-a9af55865145,Standard,147bf31b-f9b1-415f-858b-f3ed430e508d,"{""type"":""LineString"",""coordinates"":[[0.76836158,0.77868852],[0.75706215,0.77868852],[0.76271186,0.77868852]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +76492511-ec9c-4e2f-be35-4b6091a4d07b,Standard,ddc63e7d-e76a-489b-a05f-97e7dee40794,"{""type"":""LineString"",""coordinates"":[[0.82485876,0.77868852],[0.83050847,0.77868852],[0.83615819,0.77868852]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +55977fba-bd2a-41c1-8176-a95fac899ea2,Standard,f8827054-46fd-486c-aa91-9bd813187705,"{""type"":""LineString"",""coordinates"":[[0.91525424,0.57377049],[0.40677966,0.10655738],[0.92090395,0.57377049],[0.92655367,0.57377049],[0.41242938,0.10655738]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +f96dad25-b70b-459a-a1fe-d704fcd6410c,Standard,473a11f4-1691-44ba-8e95-96782bc9d07f,"{""type"":""LineString"",""coordinates"":[[0.66666667,0.14754098],[0.66101695,0.14754098],[0.67231638,0.14754098]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +b622cf65-64b2-454b-900e-a191d7231dbc,Standard,0b1f06c3-9622-47cd-b41f-bd0314673b8d,"{""type"":""LineString"",""coordinates"":[[0.85310734,0.14754098],[0.86440678,0.14754098],[0.85875706,0.14754098]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +b7bc8bae-9f00-497d-9d16-6b03765b5f98,Standard,e7388048-40c3-4fd7-bcbb-2e1b09e735d2,"{""type"":""LineString"",""coordinates"":[[0.80225989,0.89344262],[0.81355932,0.89344262],[0.8079096,0.89344262]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +b6e8a3b1-e76e-4788-960f-79afcd82cd8f,Standard,1c23e300-0ad5-4b90-ac74-b9763e579268,"{""type"":""LineString"",""coordinates"":[[0.22033898,0.0204918],[0.22033898,0.04098361],[0.22033898,0.0]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +90344d84-9485-4986-93e1-e94d73ee0aa3,Standard,91179f48-2d6c-4ae4-864c-d667f57a6e66,"{""type"":""LineString"",""coordinates"":[[0.09039548,0.24590164],[0.11864407,0.24590164],[0.14689266,0.24590164]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +e5cbfa13-80ac-483f-8433-c6717fa1e7c9,Standard,2d616d05-fa31-4b7f-b666-0fab28a21a82,"{""type"":""LineString"",""coordinates"":[[0.65536723,0.14754098],[0.66101695,0.14754098],[0.64971751,0.14754098]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +58798027-5b4e-4602-8e9f-ce34f156da4b,Standard,932d9fab-9b07-4948-9d65-4945c7700a72,"{""type"":""LineString"",""coordinates"":[[0.71751412,0.89344262],[0.70056497,0.89344262],[0.72316384,0.89344262]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +88d88084-b78e-4620-837a-8afd74563b91,Standard,43394be2-5c85-4449-ad06-7866395a5c79,"{""type"":""LineString"",""coordinates"":[[0.93785311,0.67213115],[0.92655367,0.67213115],[0.93220339,0.67213115]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +0f375bc5-fa36-4b66-ac12-e0db266bf400,Standard,9f57100c-cb04-49b5-a9bd-f0e78f87b18a,"{""type"":""LineString"",""coordinates"":[[0.83050847,0.36885246],[0.83615819,0.36885246],[0.84180791,0.36885246]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +a6870226-3616-4619-9c12-e8d33ca469c5,Standard,95b47f01-829a-46c3-873a-4df11d798c49,"{""type"":""LineString"",""coordinates"":[[0.85875706,0.89344262],[0.84745763,0.89344262],[0.85310734,0.89344262]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +8d9b357a-6612-45b4-baff-12849a787453,Standard,af565c79-9953-4934-9afd-91cd64ed1f06,"{""type"":""LineString"",""coordinates"":[[0.85875706,0.89344262],[0.86440678,0.89344262],[0.8700565,0.89344262]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +b36d0168-6936-49f6-92f3-8755988c11e9,Standard,76f097c5-173f-4fee-b6db-190792922d0e,"{""type"":""LineString"",""coordinates"":[[0.03954802,0.68032787],[0.03954802,0.57377049],[0.09039548,0.57377049],[0.03954802,0.78688525]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +54e0c3ae-10e0-4533-8679-063556715b18,Standard,52df9c70-136a-49bb-9ad4-d300123c7e99,"{""type"":""LineString"",""coordinates"":[[0.15819209,0.18852459],[0.15819209,0.16803372],[0.15819209,0.14754098]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +db40acda-255e-4d7c-828a-e52619f60666,Standard,98a4759c-696b-4c99-b339-cf39ecc76ba7,"{""type"":""LineString"",""coordinates"":[[0.09039548,0.66393443],[0.11864407,0.66393443],[0.14689266,0.66393443]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +37bfd165-910b-4ed1-b6b1-49633d000387,Standard,73359dab-e8bb-4cea-89e6-88b969ecb4e0,"{""type"":""LineString"",""coordinates"":[[0.0960452,0.04098361],[0.0960452,0.07377049],[0.0960452,0.05737705]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +98c214c3-a010-494f-93d2-39d0045abbd6,Standard,f4859003-7182-4ebf-8a96-ce61b2f6191c,"{""type"":""LineString"",""coordinates"":[[0.22033898,0.2295082],[0.22033898,0.20901733],[0.22033898,0.18852459]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +7548e909-99a8-426b-9c9a-7551e6fc7a87,Standard,13ea7170-5fc1-4ed8-be71-0a91a9e5df99,"{""type"":""LineString"",""coordinates"":[[0.77966102,0.67213115],[0.79096045,0.67213115],[0.78531073,0.67213115]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +fad21258-86aa-4a48-a05b-73bbb3ad3dbd,Standard,7263918d-4331-43af-bd10-8c06bd2b8667,"{""type"":""LineString"",""coordinates"":[[0.71186441,0.67213115],[0.72316384,0.67213115],[0.71751412,0.67213115]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +38d3d470-96ef-4884-80b9-b1fd23375ef1,Standard,1cfc85dd-3fb8-48a3-9ea1-b11b1b9ca8d4,"{""type"":""LineString"",""coordinates"":[[0.8700565,0.57377049],[0.87570621,0.57377049],[0.88135593,0.57377049]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +ccacd75f-b7ad-43cb-9747-84e2fcf53ebd,Standard,09083d14-02aa-40a3-9948-86e86883bda1,"{""type"":""LineString"",""coordinates"":[[0.73446328,0.96721311],[0.75706215,0.96721311],[0.74011299,0.96721311]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +cd44faca-2232-4565-9886-8dc5b92ccb96,Standard,eb64f0fb-1810-4b49-b0a6-e94a6422be04,"{""type"":""LineString"",""coordinates"":[[0.98870056,0.39344262],[0.96610169,0.14754098],[0.98870056,0.14754098],[0.98870056,0.2704918]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +3cd9d77d-adbf-442f-b570-61b69223a367,Standard,bee47575-ecc8-4f2f-96de-e9a616603bb7,"{""type"":""LineString"",""coordinates"":[[0.77966102,0.04918033],[0.78531073,0.04918033],[0.76271186,0.04918033]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +54c63d34-a5b6-4547-8898-cdf835177352,Standard,84f3941b-450c-4acb-8150-c788af1e6546,"{""type"":""LineString"",""coordinates"":[[0.87570621,0.04918033],[0.8700565,0.04918033],[0.86440678,0.04918033]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +99333f9f-7f11-49e4-b97e-97956c7e6116,Standard,ce640cab-6f6d-4fd1-b652-009bec4c596b,"{""type"":""LineString"",""coordinates"":[[0.84180791,0.89344262],[0.83615819,0.89344262],[0.84745763,0.89344262]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +7ad09272-dde8-46fb-bea5-31cce9bb450e,Standard,d9d1edce-43e0-4cbd-9801-4a4e1a1dfa71,"{""type"":""LineString"",""coordinates"":[[0.76836158,0.77868852],[0.77966102,0.77868852],[0.7740113,0.77868852]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +d012e1ac-4919-4b5a-aaec-80cb2c8ef488,Standard,c87706ad-37ff-4419-b4bc-4607d780498e,"{""type"":""LineString"",""coordinates"":[[0.85875706,0.25409836],[0.85310734,0.25409836],[0.86440678,0.25409836]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +fb003e5d-a7a2-4da7-916f-94272d001ee5,Standard,f6dfa796-69c1-4deb-8e5d-78d6a29f2b6e,"{""type"":""LineString"",""coordinates"":[[0.96045198,0.25409836],[0.96610169,0.25409836],[0.95480226,0.25409836]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +df3c35c9-4b1b-477b-9722-3162aafc1487,Standard,2424f0ab-9f83-464e-a960-093ab14a2bb5,"{""type"":""LineString"",""coordinates"":[[0.77966102,0.14754098],[0.7740113,0.14754098],[0.78531073,0.14754098]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +68ab9f6b-21c1-46eb-afde-2974072b3f9e,Standard,442c4813-6272-4cf9-b30b-22f9114bc3db,"{""type"":""LineString"",""coordinates"":[[0.68361582,0.14754098],[0.67231638,0.14754098],[0.6779661,0.14754098]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +28c5c34c-a3bb-4f11-88da-6bf48d718eca,Standard,0f9bf171-b79b-4009-8b0b-6ec18c523ebf,"{""type"":""LineString"",""coordinates"":[[0.76836158,0.67213115],[0.75706215,0.67213115],[0.76271186,0.67213115]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +06fd80ca-ed78-4310-87f3-e023fbb23e46,Standard,60c4970b-636a-4f8a-9329-97d01107a962,"{""type"":""LineString"",""coordinates"":[[0.02259887,0.1147541],[0.02259887,0.0942623],[0.02259887,0.07377049]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +2aa712e6-4fbb-40e4-baac-a0c2ecd7a8be,Standard,0ffacffd-4f3f-465b-8525-bc22facc45da,"{""type"":""LineString"",""coordinates"":[[0.17514124,0.57377049],[0.14689266,0.57377049],[0.20338983,0.57377049]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +94d96ee4-5d07-4b1b-a369-d8efb100c5e5,Standard,a9a94bc3-fa83-410a-9e71-38807e8d121c,"{""type"":""LineString"",""coordinates"":[[0.74576271,0.89344262],[0.75706215,0.89344262],[0.75141243,0.89344262]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +676cc51f-74ee-4ff5-bc99-ef52b02c1abb,Standard,7f853fc7-6d3e-4086-82b0-cc93c8257f46,"{""type"":""LineString"",""coordinates"":[[0.93220339,0.36885246],[0.92655367,0.36885246],[0.92090395,0.36885246]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +acb8900a-00d8-4ad2-86d5-eb04bd663251,Standard,a2a8bc02-02a9-40d8-9495-058c04d7df89,"{""type"":""LineString"",""coordinates"":[[0.89265537,0.77868852],[0.88135593,0.77868852],[0.88700565,0.77868852]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +8df4fa46-3c96-4229-9d6a-262cc80ed213,Standard,d74febce-1b8d-4f51-9721-5eb1866d6b4e,"{""type"":""LineString"",""coordinates"":[[0.15819209,0.0],[0.15819209,0.0204918],[0.15819209,0.04098361]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +fe3ffb5a-c30a-4f20-a70e-ed2bc99a607a,Standard,b08cf4bc-d9f2-4608-a162-74db09b16db0,"{""type"":""LineString"",""coordinates"":[[0.84180791,0.40573864],[0.84180791,0.44262295],[0.84180791,0.36885246]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +09a046f1-f148-40aa-afeb-6592859da87d,Standard,094a0827-54d8-4ed9-bb8f-2766db020c87,"{""type"":""LineString"",""coordinates"":[[0.70056497,0.89344262],[0.6779661,0.89344262],[0.68361582,0.89344262]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +f0e55d77-f8a0-4f63-b039-013a39f06539,Standard,d59a733b-b7c6-401b-8e38-653e0cb72b5c,"{""type"":""LineString"",""coordinates"":[[0.78531073,0.45901639],[0.78531073,0.44262295],[0.78531073,0.45081967]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +702afdf5-0671-4f37-b888-5342fa3474de,Standard,184c0d91-3f4b-4816-a82d-519e4bcd7ee9,"{""type"":""LineString"",""coordinates"":[[0.31073446,0.75409836],[0.25423729,0.75409836],[0.28248588,0.75409836]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +d923185a-03a0-484b-a66d-08f4757aadf7,Standard,2d552f15-6871-4e09-84b1-003da098d909,"{""type"":""LineString"",""coordinates"":[[0.09039548,0.1557377],[0.11864407,0.1557377],[0.14689266,0.1557377]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +d3484467-529b-4f61-b8a1-fa4dfae30c31,Standard,764eccc0-09cc-4c7a-bf76-33259938530c,"{""type"":""LineString"",""coordinates"":[[0.85875706,0.77868852],[0.8700565,0.77868852],[0.86440678,0.77868852]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +7e4b4545-d04e-4eb3-989a-ae75afbaad37,Standard,cc8bc119-79d7-479b-8767-8b108a0ba4a0,"{""type"":""LineString"",""coordinates"":[[0.75141243,0.14754098],[0.74011299,0.14754098],[0.74576271,0.14754098]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +f1c8cd3e-5521-4539-8e13-aa5149272297,Standard,7f2e8019-f650-42b7-bd39-6895cb9c4d9f,"{""type"":""LineString"",""coordinates"":[[0.85875706,0.67213115],[0.8700565,0.67213115],[0.86440678,0.67213115]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +623fe9a8-af66-455f-bad3-251c66ecf8bb,Standard,412d395e-7ebc-4cc6-88fb-24006f54c931,"{""type"":""LineString"",""coordinates"":[[0.80225989,0.57377049],[0.8079096,0.57377049],[0.81355932,0.57377049]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +271af476-bfb4-4dfd-8de9-4a447259c4ea,Standard,230eae02-e233-4975-9cbb-268d0af4a492,"{""type"":""LineString"",""coordinates"":[[0.88700565,0.36885246],[0.89265537,0.36885246],[0.89830508,0.36885246]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +04c0323b-b630-470f-9c69-1c9097106eaf,Standard,368c8108-0953-4e5a-90db-7c57a9057b20,"{""type"":""LineString"",""coordinates"":[[0.66666667,0.89344262],[0.66101695,0.89344262],[0.65536723,0.89344262]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +ddf21544-9ca4-474f-be9b-9ead99cbb17f,Standard,02d85e44-4196-4ed1-9fa4-af9211dbd753,"{""type"":""LineString"",""coordinates"":[[0.93785311,0.52459016],[0.93785311,0.57377049],[0.93785311,0.54918033]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +779b60ba-822c-451f-9f5f-ecf6909582a3,Standard,d9d3a1f3-5090-4015-86a5-60be94fadcbf,"{""type"":""LineString"",""coordinates"":[[0.20338983,0.66393443],[0.22881291,0.66393443],[0.25423729,0.66393443]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +0ba2c517-f72b-4bf3-804c-01dea7c4e4dd,Standard,088e3b53-78f3-445a-bbc6-9da3efbda0a3,"{""type"":""LineString"",""coordinates"":[[0.97740113,0.39344262],[0.97740113,0.32377143],[0.97740113,0.25409836],[0.96610169,0.25409836]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +bb7d1a7a-8dc5-4e59-a8ef-be64bb83f58c,Standard,24537b9f-9cb9-45d1-8bbb-f87e3a948a69,"{""type"":""LineString"",""coordinates"":[[0.85310734,0.67213115],[0.85875706,0.67213115],[0.84745763,0.67213115]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +ee353ae3-c6e1-4529-9881-ec10d1d7b328,Standard,66651745-4425-4a9a-9a2a-3f2715252cf6,"{""type"":""LineString"",""coordinates"":[[0.17514124,0.66393443],[0.20338983,0.66393443],[0.14689266,0.66393443]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +b0b7371e-66d5-4406-b7d3-a17809309afa,Standard,93cd3af7-2dbb-4804-9386-d15705b5f18e,"{""type"":""LineString"",""coordinates"":[[0.61016949,0.67213115],[0.61581921,0.67213115],[0.62146893,0.67213115]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +d031dde1-6f80-4af1-a1f2-cbb223220469,Standard,4cfd425d-6158-4904-86b5-d16dc47a4778,"{""type"":""LineString"",""coordinates"":[[0.89265537,0.67213115],[0.89830508,0.67213115],[0.9039548,0.67213115]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +bd830d87-73b0-44c8-9250-26afd33ac4f5,Standard,10c6a103-3132-4324-8f76-8c1858d51fcb,"{""type"":""LineString"",""coordinates"":[[0.20338983,0.24590164],[0.17514124,0.24590164],[0.14689266,0.24590164]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +526bac21-e1fd-45aa-8dc1-3230569b51fa,Standard,f606c03b-66d1-4765-97e6-1319ad6ac0c3,"{""type"":""LineString"",""coordinates"":[[0.17514124,0.75409836],[0.20338983,0.75409836],[0.14689266,0.75409836]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +723fb8fc-90ff-44d5-9c21-88a9f194e83a,Standard,5d1176ac-e64e-4811-8d0c-c87d9060ba2a,"{""type"":""LineString"",""coordinates"":[[0.09039548,0.1557377],[0.05084746,0.27868852],[0.05084746,0.21721405],[0.05084746,0.1557377]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +816a5b4d-dae9-488c-9bed-b5e90fb62c89,Standard,21dc5686-67b6-49dc-b5aa-ecc7f7deb620,"{""type"":""LineString"",""coordinates"":[[0.94350282,0.77868852],[0.93785311,0.77868852],[0.94915254,0.77868852]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +bef95efd-2cd8-472f-831d-c3bd3c207aa3,Standard,58105b87-e27d-4d7f-b492-42434801bdf7,"{""type"":""LineString"",""coordinates"":[[0.73446328,0.89344262],[0.74576271,0.89344262],[0.74011299,0.89344262]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +24b27c1d-1816-4855-bb80-96ca34ded7c1,Standard,f6c9e202-6548-405e-9969-bc4ae68ef7c1,"{""type"":""LineString"",""coordinates"":[[0.81920904,0.44262295],[0.81355932,0.44262295],[0.8079096,0.44262295]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +a8e794de-f56b-438c-af42-b40521bbb236,Standard,de25721a-7ad9-450f-9e89-f483f19bf8a7,"{""type"":""LineString"",""coordinates"":[[0.70621469,0.25409836],[0.71186441,0.25409836],[0.71751412,0.25409836]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +c1971b4a-7f78-4488-a54f-03867b87cdf8,Standard,7614ed07-f464-4a56-8ea2-cf07772530c4,"{""type"":""LineString"",""coordinates"":[[0.93785311,0.67213115],[0.94350282,0.67213115],[0.94915254,0.67213115]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +5e4cf1b3-fa4e-409b-84d1-e9a95ca0b7a6,Standard,f4ca1fb7-d17a-4d51-866d-ea2ae22c6f0c,"{""type"":""LineString"",""coordinates"":[[0.66101695,0.25409836],[0.67231638,0.25409836],[0.66666667,0.25409836]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +4e955f6a-da29-4020-874c-7608dbf744db,Standard,ca765f8e-2a05-40fb-80b8-41e02887fa46,"{""type"":""LineString"",""coordinates"":[[0.75706215,0.67213115],[0.75141243,0.67213115],[0.74576271,0.67213115]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +b634d0e8-330a-40ac-bf97-0caa01370bcf,Standard,6862b157-39c8-47d2-b31c-e418e1bad9a2,"{""type"":""LineString"",""coordinates"":[[0.68926554,0.77868852],[0.69491525,0.77868852],[0.70056497,0.77868852]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +274aaed5-3d6d-402b-8dbd-d56b9bac6ef5,Standard,56e0ddce-ad67-435e-ad8c-5e276c13018a,"{""type"":""LineString"",""coordinates"":[[0.09039548,0.75409836],[0.06214689,0.78688525],[0.06214689,0.75409836],[0.06214689,0.7704918]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +a93405e4-5473-437e-97d1-a0ea6a907b09,Standard,7bc8b609-baba-4afe-8cec-866d74e91e43,"{""type"":""LineString"",""coordinates"":[[0.8700565,0.67213115],[0.88135593,0.67213115],[0.87570621,0.67213115]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +41239a55-df02-4249-84df-18824c2740f4,Standard,9ec195e0-4c9b-48a6-9233-0d770b34705b,"{""type"":""LineString"",""coordinates"":[[0.85875706,0.77868852],[0.85310734,0.77868852],[0.84745763,0.77868852]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +14080b5a-f167-4d9f-bd93-c822c069807f,Standard,56603d19-84d5-4c2f-a42c-92777602999a,"{""type"":""LineString"",""coordinates"":[[0.79096045,0.25409836],[0.78531073,0.25409836],[0.79661017,0.25409836]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +762d71ac-bff2-4b7d-a3d0-1997e7fc6c9d,Standard,7d9647cb-e7ca-4ecc-a79e-edb1bfbfb666,"{""type"":""LineString"",""coordinates"":[[0.96610169,0.14754098],[0.95480226,0.14754098],[0.96045198,0.14754098]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +4090c3b8-35a0-45ce-aa49-9f37a5ddd55f,Standard,d54fcb7e-d472-4035-aff6-2646ce881931,"{""type"":""LineString"",""coordinates"":[[0.9039548,0.36885246],[0.90960452,0.36885246],[0.89830508,0.36885246]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +272469ff-22c6-4f7f-ac31-b4bec6d952af,Standard,8a09b9b8-6c9f-4dc7-a5a5-fe5d22b5809a,"{""type"":""LineString"",""coordinates"":[[0.84745763,0.25409836],[0.84180791,0.25409836],[0.85310734,0.25409836]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +600d7a2d-1aca-4b9c-ae82-095ce59eed0b,Standard,ebd1f65a-65ae-4620-b1cf-79898683c9e1,"{""type"":""LineString"",""coordinates"":[[0.0960452,0.0204918],[0.0960452,0.04098361],[0.0960452,0.0]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +a0d87b77-0767-470f-adff-3333d612e076,Standard,9039f436-9be6-4c74-86b2-b5add2446d0a,"{""type"":""LineString"",""coordinates"":[[0.22033898,0.07377049],[0.22033898,0.1147541],[0.22033898,0.0942623]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +a8182e9b-729e-4097-824c-bb1ffdf76499,Standard,2005c393-edc4-4cc4-80af-ebbde1305b8e,"{""type"":""LineString"",""coordinates"":[[0.73446328,0.96721311],[0.72881356,0.96721311],[0.72316384,0.96721311]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +09c5fc01-1148-4ee9-9dca-b1f04954def6,Standard,836bf4ab-38e1-44f5-a082-723fc12e4845,"{""type"":""LineString"",""coordinates"":[[0.95480226,0.67213115],[0.96045198,0.67213115],[0.94915254,0.67213115]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +9ebd2d6d-020f-43d0-859f-572048423fa5,Standard,5905e32c-b1d7-40d9-9759-84dbe6b14ba8,"{""type"":""LineString"",""coordinates"":[[0.71186441,0.77868852],[0.72316384,0.77868852],[0.71751412,0.77868852]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +e5853628-7933-41bf-8928-1cbed722d992,Standard,8dd3984e-a9f6-4829-9c19-a377e3491f9a,"{""type"":""LineString"",""coordinates"":[[0.71186441,0.14754098],[0.71751412,0.14754098],[0.70621469,0.14754098]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +020d5d66-68b8-4849-a49d-7ef75c5d660a,Standard,09125a13-324b-4611-a718-5028b390f1ca,"{""type"":""LineString"",""coordinates"":[[0.96045198,0.67213115],[0.98305085,0.91803279],[0.98305085,0.79508197],[0.98305085,0.67213115]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +19c31421-6513-4f44-883b-586d45bbe732,Standard,8cc7bf8e-226d-41c9-9cd0-7524ea9186f7,"{""type"":""LineString"",""coordinates"":[[0.92090395,0.89344262],[0.91525424,0.89344262],[0.92655367,0.89344262]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +9e61a9a5-b9b7-4033-b8bc-87db9dc0665e,Standard,220f509c-9aea-4e60-8dc1-593d2e35ed21,"{""type"":""LineString"",""coordinates"":[[0.79096045,0.77868852],[0.79661017,0.77868852],[0.80225989,0.77868852]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +abf466a5-497f-471d-8571-8d51f687bc26,Standard,0d6627e5-9f9e-4c40-90c1-45abd98a51cd,"{""type"":""LineString"",""coordinates"":[[0.0960452,0.2295082],[0.0960452,0.20901733],[0.0960452,0.18852459]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +6c612da8-8b8c-4d36-88e1-75a17fe6183c,Standard,d97f2684-22cb-4c14-b01c-b95081d4d624,"{""type"":""LineString"",""coordinates"":[[0.81920904,0.96721311],[0.81355932,0.96721311],[0.82485876,0.96721311]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +7d5ff8b0-0692-4a90-bd37-24f4d8d61b98,Standard,13cfe1fb-1cec-4c17-baf8-b7dcb9f744cd,"{""type"":""LineString"",""coordinates"":[[0.93220339,0.36885246],[0.94915254,0.36885246],[0.96610169,0.39344262],[0.96610169,0.36885246]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +0a19a747-608b-47ae-afee-68ce774e8a89,Standard,971288e4-038b-49d5-8df0-b2a7fdc0e17c,"{""type"":""LineString"",""coordinates"":[[0.22033898,0.13114754],[0.22033898,0.14754098],[0.22033898,0.1147541]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +8429ecfe-031f-44ea-b7ff-b708c46e87cd,Standard,b13204e1-02fa-49dd-92e2-c3310a15909a,"{""type"":""LineString"",""coordinates"":[[0.73446328,0.89344262],[0.72881356,0.89344262],[0.72316384,0.89344262]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +7f9e41b0-3a43-4107-98e7-e1763ebc0db8,Standard,42828cac-b67e-4d5c-b4fa-787c57f16fde,"{""type"":""LineString"",""coordinates"":[[0.22033898,0.07377049],[0.22033898,0.04098361],[0.12429379,0.04098361],[0.02824859,0.06557377],[0.02824859,0.04098361]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +351b1bbd-8daf-427c-a18b-4fa6597db574,Standard,81578256-7c89-4651-8863-31fd206c628c,"{""type"":""LineString"",""coordinates"":[[0.72881356,0.36885246],[0.70621469,0.36885246],[0.72316384,0.36885246]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +425a1be6-d966-476e-8266-4ba140da64e2,Standard,5753e615-c90a-4008-92ec-b50c8195f95f,"{""type"":""LineString"",""coordinates"":[[0.65536723,0.67213115],[0.66666667,0.67213115],[0.66101695,0.67213115]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +abe20917-26ae-41ba-8373-916d8cfe6497,Standard,03b3d5c7-cb42-45d7-a5b7-b44c60ad5268,"{""type"":""LineString"",""coordinates"":[[0.0960452,0.07377049],[0.0960452,0.0942623],[0.0960452,0.1147541]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +0eb4a8c0-bf8d-49c6-be95-c5e030be9dda,Standard,c64c73c4-109b-4baa-bf44-3357d4bca7d8,"{""type"":""LineString"",""coordinates"":[[0.89265537,0.77868852],[0.89830508,0.77868852],[0.9039548,0.77868852]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +97ca267c-1174-4faf-9617-56bd2a90a390,Standard,3026e0ba-0a46-4d5e-afff-953c34fde207,"{""type"":""LineString"",""coordinates"":[[0.94350282,0.04918033],[0.94350282,0.02459016],[0.94350282,0.0]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +4506a9cb-e391-43f7-ba75-88f376b40cf1,Standard,d7c951cc-2e8f-40d0-b310-03fbdb9b0558,"{""type"":""LineString"",""coordinates"":[[0.88135593,0.25409836],[0.88700565,0.25409836],[0.87570621,0.25409836]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +eb5e4437-0f18-43c1-9e51-51bcfc038bea,Standard,37c8ebe1-5d29-4806-a84a-fc00e4279fa6,"{""type"":""LineString"",""coordinates"":[[0.22881291,0.06557377],[0.25423729,0.06557377],[0.20338983,0.06557377]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +69e84854-3ccd-478b-bfd4-36179f27ce1d,Standard,73c09f1f-3538-4b5f-acbf-38b686a0dbba,"{""type"":""LineString"",""coordinates"":[[0.93220339,0.57377049],[0.93785311,0.57377049],[0.92655367,0.57377049]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +643e73ad-b1dd-4965-8e27-f7a5aac9b2f5,Standard,5157574f-5e67-4574-81a3-686b97a893ff,"{""type"":""LineString"",""coordinates"":[[0.77966102,0.44262295],[0.78531073,0.44262295],[0.7740113,0.44262295]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +b6211854-7f10-4f8b-ab3e-f4e32cbe01c8,Standard,f93f5e08-f351-4b2b-8cb0-9ec01203c1b9,"{""type"":""LineString"",""coordinates"":[[0.83615819,0.96721311],[0.83050847,0.96721311],[0.82485876,0.96721311]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +69c87952-34ed-4092-8522-dd2c66ac48f5,Standard,eb1cd362-f3bd-4411-a45d-a237bcb07789,"{""type"":""LineString"",""coordinates"":[[0.76836158,0.89344262],[0.75706215,0.89344262],[0.76271186,0.89344262]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +d7f74d06-26c4-4f97-b45c-e51aa12ab9fe,Standard,71832b7e-b5a2-40d4-82d3-e8f1ba38ace6,"{""type"":""LineString"",""coordinates"":[[0.88700565,0.57377049],[0.89265537,0.57377049],[0.88135593,0.57377049]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +7c9a8ae8-b024-4bf6-ade7-154fd3f39d7a,Standard,746fa279-2acf-4aa1-b3e1-8d312d66058a,"{""type"":""LineString"",""coordinates"":[[0.9039548,0.77868852],[0.91525424,0.77868852],[0.90960452,0.77868852]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +abed22cb-da71-4459-9221-9b63cb8c672b,Standard,d5d7329a-08a2-4946-8a02-d4a70746d37b,"{""type"":""LineString"",""coordinates"":[[0.79096045,0.96721311],[0.79661017,0.96721311],[0.80225989,0.96721311]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +90022bb0-1fb8-4b03-8220-30c2fc7bf6c9,Standard,2770ee0b-96ca-4677-9933-8d82643501e3,"{""type"":""LineString"",""coordinates"":[[0.82485876,0.57377049],[0.81920904,0.57377049],[0.81355932,0.57377049]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +fd9f1ff2-8ac3-44a6-a65d-9f8344c68b32,Standard,3029d722-91ec-4e45-9243-d267222b6c8e,"{""type"":""LineString"",""coordinates"":[[0.93220339,0.25409836],[0.94350282,0.25409836],[0.93785311,0.25409836]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +d2f946ca-00f5-4f0f-be6c-eed2c34180d5,Standard,94071ac7-ae51-4e45-8795-9d10bda616e9,"{""type"":""LineString"",""coordinates"":[[0.02259887,0.1147541],[0.02259887,0.13114754],[0.02259887,0.14754098]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +4bbd03a7-34fd-4fdd-9371-a77b305792e2,Standard,9085189c-48df-498a-80e5-49fe54692a66,"{""type"":""LineString"",""coordinates"":[[0.14689266,0.57377049],[0.11864407,0.57377049],[0.09039548,0.57377049]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +7e4c4142-2c08-494c-bd3a-f8876ac8c176,Standard,8f9d19a8-8d64-4f62-b6aa-f5f01a12b566,"{""type"":""LineString"",""coordinates"":[[0.94915254,0.25409836],[0.94350282,0.25409836],[0.95480226,0.25409836]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +aeea1358-be04-403e-84e7-5e22226fa156,Standard,222af488-6339-4308-8f25-eac19b6e2c9c,"{""type"":""LineString"",""coordinates"":[[0.63276836,0.89344262],[0.62146893,0.89344262],[0.62711864,0.89344262]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +d8f0a014-fdb6-44da-8b0a-abd44e7578c6,Standard,7d68b748-ebe5-430e-95b8-bd0eededa136,"{""type"":""LineString"",""coordinates"":[[0.94350282,0.89344262],[0.92655367,0.89344262],[0.96045198,0.89344262],[0.96045198,0.91803279]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +c7b49d97-2495-4f09-97e7-808764ac8b51,Standard,8c6b2196-6705-45ec-9879-8334924f968c,"{""type"":""LineString"",""coordinates"":[[0.62146893,0.36885246],[0.62711864,0.36885246],[0.61581921,0.36885246]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +c329e8a9-931a-4efc-8e41-31cad43306de,Standard,d160ec85-06ab-42d2-9dc1-4f905306e0a6,"{""type"":""LineString"",""coordinates"":[[0.79661017,0.36885246],[0.80225989,0.36885246],[0.8079096,0.36885246]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +37e7a43e-7216-4178-81c1-08c1bbc82b26,Standard,5c26821d-ea3b-4a00-8d42-1486710a2ca5,"{""type"":""LineString"",""coordinates"":[[0.78531073,0.14754098],[0.79661017,0.14754098],[0.79096045,0.14754098]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +57ecdb3b-20dd-453d-8333-2961984499b2,Standard,876998db-5326-4257-b2d1-a4722265f51d,"{""type"":""LineString"",""coordinates"":[[0.22033898,0.16803372],[0.22033898,0.14754098],[0.22033898,0.18852459]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +a8cd181f-6834-437f-aa9e-6b165504b870,Standard,f0d4491e-eb64-49a0-8fc3-44fa5bd9dcee,"{""type"":""LineString"",""coordinates"":[[0.31073446,0.06557377],[0.25423729,0.06557377],[0.28248588,0.06557377]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +de4bc4d5-2d9e-405d-b63d-6e6534de49e1,Standard,ffdd2907-38ed-4a39-89de-9435e97dadc0,"{""type"":""LineString"",""coordinates"":[[0.76836158,0.25409836],[0.7740113,0.25409836],[0.76271186,0.25409836]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +f9f042d8-0aa6-4194-bc49-8a91adb0faab,Standard,affde1a2-90e8-468f-a0a9-eb024f791857,"{""type"":""LineString"",""coordinates"":[[1,0.04918033],[1,0.22131148],[1,0.39344262],[0.96610169,0.04918033]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +76c9c154-bb98-4112-acde-034bfea3eedf,Standard,2c6d3986-9cf2-4c41-9a40-400e4e0b3112,"{""type"":""LineString"",""coordinates"":[[0.66666667,0.77868852],[0.6779661,0.77868852],[0.67231638,0.77868852]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +37d550c7-c9c4-48c3-b2b6-4c120c095dec,Standard,1372ca57-8429-43c6-a589-a402de4ac7f9,"{""type"":""LineString"",""coordinates"":[[0.93785311,0.14754098],[0.93220339,0.14754098],[0.94350282,0.14754098]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +7a5177b5-a744-436f-ba4e-8d5f1c5c72ae,Standard,edbbe75f-8d40-42e8-a6f4-857f64547cbd,"{""type"":""LineString"",""coordinates"":[[0.79096045,0.96721311],[0.77966102,0.96721311],[0.78531073,0.96721311]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +7cdd95e3-99fd-4221-83c6-0adb0614fef4,Standard,784bfe2a-8d23-4e74-8b05-b13141611186,"{""type"":""LineString"",""coordinates"":[[0.73446328,0.67213115],[0.74576271,0.67213115],[0.74011299,0.67213115]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +99d1011b-78cd-420d-bda7-8c45c0eb6ab6,Standard,fd04cc09-6ff8-48ea-a5eb-453e9d59d6d7,"{""type"":""LineString"",""coordinates"":[[0.17513737,0.07377049],[0.13559322,0.07377049],[0.13559322,0.1557377],[0.21468281,0.07377049]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +644acdd9-9a11-4521-9e6b-30a424684207,Standard,6bbccaac-2bbe-4d0b-bb07-80dbb605ec1c,"{""type"":""LineString"",""coordinates"":[[0.74011299,0.25409836],[0.74576271,0.25409836],[0.75141243,0.25409836]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +78f2fb26-f4e1-453e-b1a8-037164e5859d,Standard,cfd11fa8-fcf6-4b65-9523-ee5d21e292ed,"{""type"":""LineString"",""coordinates"":[[0.90960452,0.25409836],[0.9039548,0.25409836],[0.89830508,0.25409836]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +98611c6a-9f1a-4f18-a95c-2abaf27112db,Standard,b5c255b5-8572-41ce-a273-a01d2a4b4e20,"{""type"":""LineString"",""coordinates"":[[0.83050847,0.04918033],[0.82485876,0.04918033],[0.81920904,0.04918033]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +135be5b3-e2f0-4b70-b71f-a2369e57bc15,Standard,ec21c844-ca32-4f95-b6f3-dd8c56128f66,"{""type"":""LineString"",""coordinates"":[[0.88135593,0.14754098],[0.88700565,0.14754098],[0.87570621,0.14754098]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +576ebbf9-77a7-411e-84f9-192176cfe4b6,Standard,d3d211d9-22f6-42ba-a596-0d0ca1c7e943,"{""type"":""LineString"",""coordinates"":[[0.91525424,0.25409836],[0.90960452,0.25409836],[0.92090395,0.25409836]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +2517024b-1ac9-4355-847e-64dc1bce6959,Standard,63be5ffd-acbc-4c4f-aab9-54c616e2dd2e,"{""type"":""LineString"",""coordinates"":[[0.85875706,0.04918033],[0.86440678,0.04918033],[0.85310734,0.04918033]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +e4925b18-bc90-46e6-afbd-074e7604a079,Standard,a4792ce6-c652-43e9-9156-5e9d0aa082c2,"{""type"":""LineString"",""coordinates"":[[0.09039548,0.66393443],[0.05084746,0.66393443],[0.05084746,0.78688525],[0.05084746,0.72541077]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +9aa0828c-100b-41d9-a1f9-5bc4957d27e5,Standard,a3c0115c-42eb-48a9-a6b0-64635ee66b87,"{""type"":""LineString"",""coordinates"":[[0.84180791,0.14754098],[0.85310734,0.14754098],[0.84745763,0.14754098]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +064f5cc6-d674-40e8-843f-70e91d79f18f,Standard,f2c37ce1-91d3-43d3-beb3-1fc9a30c87fe,"{""type"":""LineString"",""coordinates"":[[0.89265537,0.14754098],[0.89830508,0.14754098],[0.88700565,0.14754098]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +c1c61c3b-ca09-4cc7-a9d7-36a3c4214338,Standard,a78fbab6-e680-4c45-9731-97c82f2fb3c8,"{""type"":""LineString"",""coordinates"":[[0.15819209,0.07377049],[0.15819209,0.05737705],[0.15819209,0.04098361]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +bbca471b-16c1-4981-8414-b6bf87274cae,Standard,80332374-76fe-4d06-adde-e2197f88fe6e,"{""type"":""LineString"",""coordinates"":[[0.79661017,0.57377049],[0.80225989,0.57377049],[0.77966102,0.57377049]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +7e70ed5b-6fc1-4d25-bef7-d65b15598927,Standard,d15c85bb-c9b1-4fa3-8bf6-4aa393b564d4,"{""type"":""LineString"",""coordinates"":[[0.79096045,0.67213115],[0.79661017,0.67213115],[0.80225989,0.67213115]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +0cff94f9-313a-407e-9261-659d48c4d22a,Standard,ca425259-fab4-4dc1-99c9-c19031121645,"{""type"":""LineString"",""coordinates"":[[0.92090395,0.77868852],[0.92655367,0.77868852],[0.91525424,0.77868852]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +30a58ed2-09d8-4e43-9aff-7b9f1e3e1f73,Standard,7df282f5-2e54-4220-8276-087634415be8,"{""type"":""LineString"",""coordinates"":[[0.73446328,0.44262295],[0.72881356,0.44262295],[0.74011299,0.44262295]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +f2ebf446-7c65-464d-96ba-5d5c3249b78d,Standard,10d957bc-fb58-4a8f-8fd2-96a0b129eb02,"{""type"":""LineString"",""coordinates"":[[0.68926554,0.67213115],[0.69491525,0.67213115],[0.70056497,0.67213115]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +f6674e18-ba25-4454-9fed-d7864f493e0f,Standard,5d56c97f-e15c-4676-9b1a-fc5d7efb8a24,"{""type"":""LineString"",""coordinates"":[[0.65536723,0.67213115],[0.6440678,0.67213115],[0.64971751,0.67213115]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +7c1b6af1-952c-4304-8d69-da1a0d14b955,Standard,8add0020-bc20-4aaa-9ad3-fa1a1a5ef376,"{""type"":""LineString"",""coordinates"":[[0.7740113,0.36885246],[0.76271186,0.36885246],[0.76836158,0.36885246]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +0d80286f-437b-44cc-959f-998de3f51893,Standard,b6b655da-54ed-41d8-a331-04e41d2286de,"{""type"":""LineString"",""coordinates"":[[0.09039548,0.75409836],[0.11864407,0.75409836],[0.14689266,0.75409836]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +a17da6b8-ee9a-4ea4-83b4-97ed6a95cfeb,Standard,17e2286d-65ca-4948-8a6c-63bdc13a9b50,"{""type"":""LineString"",""coordinates"":[[0.99435028,0.57377049],[0.99435028,0.91803279],[0.99435028,0.74590164],[0.96045198,0.57377049]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +858c83e7-a54e-4409-abc4-445313cae9d2,Standard,5adb6634-4872-43af-b9cb-39df332b64b2,"{""type"":""LineString"",""coordinates"":[[0.8700565,0.57377049],[0.86440678,0.57377049],[0.85875706,0.57377049]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +d557f6be-2b4b-46af-8e8b-2c2e85d210d1,Standard,ff38b3f7-e29d-4f61-946e-59a8b283295c,"{""type"":""LineString"",""coordinates"":[[0.93220339,0.25409836],[0.92655367,0.25409836],[0.92090395,0.25409836]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +9c4bc5d8-e9a6-4fc6-9a88-2e09c3823bc4,Standard,47cc3694-2782-4c44-8c61-e14d30dbbaa4,"{""type"":""LineString"",""coordinates"":[[0.7740113,0.36885246],[0.77966102,0.36885246],[0.78531073,0.36885246]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +70d56f26-5aff-44a5-b9af-e0141256ab38,Standard,76d82f19-65d7-447d-a14c-95d050139fa5,"{""type"":""LineString"",""coordinates"":[[0.90960452,0.89344262],[0.91525424,0.89344262],[0.9039548,0.89344262]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +731d0c51-6405-43f9-ab85-2ee7039cbef5,Standard,0a068504-0bd7-4484-a0e3-26afade14698,"{""type"":""LineString"",""coordinates"":[[0.0960452,0.14754098],[0.0960452,0.1147541],[0.0960452,0.13114754]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +890090ef-f4f2-4ff6-b11b-9eda935b67c5,Standard,16b934cc-98c6-42b9-9005-be4bf7365693,"{""type"":""LineString"",""coordinates"":[[0.22881291,0.57377049],[0.25423729,0.57377049],[0.20338983,0.57377049]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +0238d402-4cd5-4f04-8838-02d4ac837e48,Standard,97b9a53e-9ff2-4567-95c0-6c9aab07a43f,"{""type"":""LineString"",""coordinates"":[[0.73446328,0.67213115],[0.72881356,0.67213115],[0.72316384,0.67213115]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +3b3b0a7b-f2c4-4035-a97d-b86bc8c4f60e,Standard,2c4fae2c-c565-4111-b535-8488737aa358,"{""type"":""LineString"",""coordinates"":[[0.72881356,0.25409836],[0.74011299,0.25409836],[0.73446328,0.25409836]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +75f3b026-fcc1-4403-844f-8c595cb797c1,Standard,a8b86d8f-a196-4eca-b248-66bc8918f9e6,"{""type"":""LineString"",""coordinates"":[[0.76836158,0.89344262],[0.7740113,0.89344262],[0.77966102,0.89344262]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +b143bc7f-d331-491b-bc17-b2a5efbd8624,Standard,ab23d369-ff75-41b4-8a25-25ec9c4320aa,"{""type"":""LineString"",""coordinates"":[[0.77966102,0.67213115],[0.76836158,0.67213115],[0.7740113,0.67213115]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +6e77b999-e8d0-40eb-91e8-fa1437071b53,Standard,ce8ea248-dbcb-40b9-a97d-22452032ad27,"{""type"":""LineString"",""coordinates"":[[0.84180791,0.67213115],[0.84745763,0.67213115],[0.83615819,0.67213115]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +6c8e7b09-25bc-47fb-b94d-fda79b2a7587,Standard,5ff3f25d-ef1d-4ba2-ba1e-b387965a839a,"{""type"":""LineString"",""coordinates"":[[0.81355932,0.36885246],[0.8079096,0.36885246],[0.81920904,0.36885246]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +4c56b3b5-fa87-4f28-a448-8b0c18e4fa5b,Standard,d8d23da6-be08-4ace-8d93-70c0faab1505,"{""type"":""LineString"",""coordinates"":[[0.92090395,0.04918033],[0.90960452,0.04918033],[0.91525424,0.04918033]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +ef83135b-8f60-402c-b01b-35cbcd10dae1,Standard,815bc4d0-3418-4d15-8f85-c104a24e6b17,"{""type"":""LineString"",""coordinates"":[[0.62146893,0.14754098],[0.61581921,0.14754098],[0.62711864,0.14754098]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +6648b930-5922-4929-ba68-61da0122ebf2,Standard,ab7c6c3c-3b7f-4475-8cad-27657bc148c6,"{""type"":""LineString"",""coordinates"":[[0.95480226,0.77868852],[0.96045198,0.77868852],[0.94915254,0.77868852]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +7c3d59a2-9fbd-4b26-a8f5-19762ff323a5,Standard,0b6f398b-30f3-41f1-9bc2-ec93e91e8f19,"{""type"":""LineString"",""coordinates"":[[0.72881356,0.25409836],[0.72316384,0.25409836],[0.71751412,0.25409836]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +75e06780-090a-411f-a47c-47c5a90a2e09,Standard,4bdb6569-72da-4d60-97b1-b5a639032d5d,"{""type"":""LineString"",""coordinates"":[[0.25423729,0.24590164],[0.28248588,0.24590164],[0.31073446,0.24590164]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +b8808d71-77bb-4645-a465-925b78180142,Standard,4c98fe8a-ca2a-4503-8843-a800cbf92c82,"{""type"":""LineString"",""coordinates"":[[0.81920904,0.14754098],[0.83050847,0.14754098],[0.82485876,0.14754098]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +38558b72-56a7-4b85-a4fe-db0f4e2bcb19,Standard,4dbb5675-cc27-4868-a9cc-e28ca232ba23,"{""type"":""LineString"",""coordinates"":[[0.95480226,0.14754098],[0.94915254,0.14754098],[0.94350282,0.14754098]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +e063a648-77d9-43ef-974f-10cbae21da06,Standard,63856192-b60e-48a5-83a3-94422a79e79e,"{""type"":""LineString"",""coordinates"":[[0.75706215,0.36885246],[0.75141243,0.36885246],[0.76271186,0.36885246]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +2943f23e-2c36-4e11-9865-1687d782d9ff,Standard,997840bf-8c94-444f-83f1-e9c991706d7c,"{""type"":""LineString"",""coordinates"":[[0.01694915,0.06557377],[0.11864407,0.07377049],[0.06779661,0.07377049],[0.11864407,0.1557377],[0.01694915,0.07377049]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +d1c04861-36ef-49b7-9a2b-5fa2706734ad,Standard,bfecad6c-ddda-4957-ae66-f04d30fd7104,"{""type"":""LineString"",""coordinates"":[[0.66101695,0.36885246],[0.63841808,0.36885246],[0.65536723,0.36885246]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +64cbd123-f34e-4732-beab-76022918e26c,Standard,87cd1ae0-2ac4-46fb-aeb8-b2f710da299b,"{""type"":""LineString"",""coordinates"":[[0.79096045,0.77868852],[0.77966102,0.77868852],[0.78531073,0.77868852]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +2e32f0e7-43fd-4f42-8376-ce687378e5aa,Standard,8885b761-4c1a-4924-be8a-b8f474d8f629,"{""type"":""LineString"",""coordinates"":[[0.15819209,0.18852459],[0.15819209,0.20901733],[0.15819209,0.2295082]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +79eac61e-e3b2-421a-9716-9940963761f0,Standard,199bc8fc-71a0-4c78-a64d-80a87f0f6b78,"{""type"":""LineString"",""coordinates"":[[0.7740113,0.57377049],[0.75706215,0.57377049],[0.77966102,0.57377049]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +fb4b559f-3d60-40f8-aa42-6741e8976026,Standard,81f4c585-6170-4a9e-981f-2185a0d7f2ec,"{""type"":""LineString"",""coordinates"":[[0.23163842,0.07377049],[0.23163842,0.1147541],[0.23163842,0.1557377]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +606bfb84-710f-493d-8726-c3293352134c,Standard,1cf0cb95-28b9-4dc1-82b9-3466d7d870cc,"{""type"":""LineString"",""coordinates"":[[0.68926554,0.67213115],[0.68361582,0.67213115],[0.6779661,0.67213115]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +3753f696-3d3c-4153-b4b2-a212393224f3,Standard,2e5bf3d7-11a5-496f-9bd5-bb9d3686a576,"{""type"":""LineString"",""coordinates"":[[0.90960452,0.67213115],[0.9039548,0.67213115],[0.91525424,0.67213115]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +6df8c538-c0a6-4317-99f3-3068051701d1,Standard,de5aeea7-2505-4f0d-9d53-22a5287ab8b7,"{""type"":""LineString"",""coordinates"":[[0.70056497,0.25409836],[0.69491525,0.25409836],[0.70621469,0.25409836]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +f6991b3a-2ada-49cf-abf1-a63a965f014c,Standard,22d61b21-2a7d-4be8-b14b-f0d72e1c5ba7,"{""type"":""LineString"",""coordinates"":[[0.8079096,0.04918033],[0.81355932,0.04918033],[0.81920904,0.04918033]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +93037ae2-ded0-404e-a453-841008d2f285,Standard,22acea8e-cde0-45a4-82e6-ce5241226aac,"{""type"":""LineString"",""coordinates"":[[0.71186441,0.67213115],[0.70621469,0.67213115],[0.70056497,0.67213115]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +49330239-a43c-47c9-82cb-f65469f2265a,Standard,d00ddea9-83f7-411a-9da6-f9607ffb3c87,"{""type"":""LineString"",""coordinates"":[[0.62711864,0.67213115],[0.63276836,0.67213115],[0.62146893,0.67213115]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +6b5fc3d8-f582-4658-b99e-a1fe3531d310,Standard,a92769d6-3f6f-4e67-98b3-303e59dd9cda,"{""type"":""LineString"",""coordinates"":[[0.92090395,0.14754098],[0.91525424,0.14754098],[0.90960452,0.14754098]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +2df37064-78de-4de2-8cb5-561fa8cec2d3,Standard,b11ce01e-37ce-4ea7-b3a3-4db89820fde1,"{""type"":""LineString"",""coordinates"":[[0.83615819,0.44262295],[0.84180791,0.44262295],[0.83050847,0.44262295]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +2591882d-ad68-4e8a-9ec1-370d33dafb29,Standard,7b7ac3b3-877f-4cba-8ad4-6171f2c5b83c,"{""type"":""LineString"",""coordinates"":[[0.91525424,0.36885246],[0.90960452,0.36885246],[0.92090395,0.36885246]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +b175f10d-452b-48a1-a536-b8ae8fc1241e,Standard,b140dccb-7251-496b-9402-06ebd13048c2,"{""type"":""LineString"",""coordinates"":[[0.62711864,0.36885246],[0.63841808,0.36885246],[0.63276836,0.36885246]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +90ad029a-358f-4f05-8a01-62820461dbb2,Standard,814dec01-f6f2-4817-8f83-2e758011b033,"{""type"":""LineString"",""coordinates"":[[0.09039548,0.24590164],[0.06214689,0.27868852],[0.06214689,0.24590164],[0.06214689,0.26229508]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +75c4a953-e8af-496f-b844-0e201f12c8da,Standard,e1315733-0b28-4465-8367-fa4535d282fa,"{""type"":""LineString"",""coordinates"":[[0.86440678,0.14754098],[0.8700565,0.14754098],[0.87570621,0.14754098]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +489c437d-5bf2-4b5a-b26c-c3e1b6b38b4c,Standard,b5a66c60-7189-4c86-a32a-4d1aa6568475,"{""type"":""LineString"",""coordinates"":[[0.17796675,0.1557377],[0.14124939,0.1557377],[0.21468281,0.1557377]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +d270922a-fbc9-4da6-8b1d-33dc276757ea,Standard,5001666c-1331-43f9-8b09-3667c89951d4,"{""type"":""LineString"",""coordinates"":[[0.75706215,0.04918033],[0.76271186,0.04918033],[0.75141243,0.04918033]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +8d0a5ac8-10bf-4e3e-afb5-b60f9bf317d9,Standard,0c73890d-adfa-4936-966f-8e527c06bdbe,"{""type"":""LineString"",""coordinates"":[[0.67231638,0.36885246],[0.6779661,0.36885246],[0.68361582,0.36885246]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +74887fe3-c3a5-4919-8b77-743e3f2c5bd4,Standard,d48db7e8-5fde-456f-8b17-02d18a5a2e32,"{""type"":""LineString"",""coordinates"":[[0.31073446,0.1557377],[0.25423729,0.1557377],[0.28248588,0.1557377]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +ba000052-dc52-4f14-9235-1cddc1069e4e,Standard,bdf60fc2-e400-46f6-b873-7a40663106f3,"{""type"":""LineString"",""coordinates"":[[0.89265537,0.04918033],[0.88700565,0.04918033],[0.89830508,0.04918033]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +91bf20e1-1a3b-4b69-b55b-a4ab8a5b3ae9,Standard,445cc0c8-70b8-47d4-987f-308269b845a3,"{""type"":""LineString"",""coordinates"":[[0.61581921,0.89344262],[0.62146893,0.89344262],[0.61016949,0.89344262]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +36b52d45-0e51-46b2-9831-aa3fb3ff3c37,Standard,c49d1581-a0c6-493f-9534-39f97970492b,"{""type"":""LineString"",""coordinates"":[[0.81355932,0.67213115],[0.81920904,0.67213115],[0.82485876,0.67213115]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +12de6c44-ec23-42e2-81b7-1fc0a757edf9,Standard,8ae06d94-8e5d-48f6-9d43-599596df688a,"{""type"":""LineString"",""coordinates"":[[0.86440678,0.36885246],[0.8700565,0.36885246],[0.87570621,0.36885246]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +533d0392-fdc3-48f9-a26b-ea150734112a,Standard,f2c9a881-eb41-4628-833c-5258e95ec457,"{""type"":""LineString"",""coordinates"":[[0.71751412,0.96721311],[0.72316384,0.96721311],[0.71186441,0.96721311]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +2dd6612a-8f9d-417f-b922-5a2ec2d3acc2,Standard,2497455a-888c-4ac6-aa49-582ab91fd05e,"{""type"":""LineString"",""coordinates"":[[0.77966102,0.96721311],[0.76836158,0.96721311],[0.7740113,0.96721311]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +bf2e4a45-726d-4ee5-9dfa-66024bcde4c0,Standard,a7a76517-7239-4a95-b9b0-0027cddfa77b,"{""type"":""LineString"",""coordinates"":[[0.84745763,0.57377049],[0.82485876,0.57377049],[0.84180791,0.57377049]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +119b5881-58c5-4891-8c79-df4c5486fb64,Standard,88c3a0b5-9def-4bf3-87c1-0ee75578b5a9,"{""type"":""LineString"",""coordinates"":[[0.72881356,0.36885246],[0.74011299,0.36885246],[0.73446328,0.36885246]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +635f6544-258b-43f5-959f-2f32c5345189,Standard,23abf40d-58a7-4f00-9ee8-5290a510f9b2,"{""type"":""LineString"",""coordinates"":[[0.15819209,0.14754098],[0.15819209,0.1147541],[0.15819209,0.13114754]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +9944a608-7e0a-4325-963f-76110bbe81b7,Standard,b672be06-2cbc-4510-8a96-34647985e9d5,"{""type"":""LineString"",""coordinates"":[[0.92090395,0.14754098],[0.93220339,0.14754098],[0.92655367,0.14754098]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +86e07109-4192-46e7-b92a-b5df2ed6a4b0,Standard,96cc155a-9417-4ed9-911a-b06b7981a2fe,"{""type"":""LineString"",""coordinates"":[[0.77966102,1],[0.77966102,0.99180328],[0.77966102,0.98360656]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +1f1e8882-9977-48c4-aaaf-c98087dff35d,Standard,2dd402ff-ef64-4b4b-8a49-e9570364e65b,"{""type"":""LineString"",""coordinates"":[[0.76836158,0.96721311],[0.75706215,0.96721311],[0.76271186,0.96721311]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +35855268-8c8d-4b4d-8f85-5f164a76dd73,Standard,dafff7d5-8ed4-4b2f-bcd3-b6d02472dfea,"{""type"":""LineString"",""coordinates"":[[0.70621469,0.14754098],[0.70056497,0.14754098],[0.69491525,0.14754098]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +d56c9bd7-c160-4b6b-b132-accb5da7fda4,Standard,1a56ec37-3781-4f35-aeec-0d0341c63372,"{""type"":""LineString"",""coordinates"":[[0.69491525,0.25409836],[0.68926554,0.25409836],[0.68361582,0.25409836]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +67fa7b51-f7ce-48c4-b9c5-9856619e2788,Standard,7297611b-fbdc-4949-87fc-1bca403708aa,"{""type"":""LineString"",""coordinates"":[[0.89265537,0.67213115],[0.88135593,0.67213115],[0.88700565,0.67213115]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +f023c2be-7306-483e-9169-05d9d0fab2c7,Standard,9d2b065a-9098-447d-8dbe-5eb06cc691a2,"{""type"":""LineString"",""coordinates"":[[0.74576271,0.57377049],[0.75706215,0.57377049],[0.75141243,0.57377049]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +a6a4da26-f67b-4ef9-aef8-c072a664c473,Standard,7cc28881-dec6-4baa-ad77-d4a2ea3cdd68,"{""type"":""LineString"",""coordinates"":[[0.02259887,0.0],[0.02259887,0.0204918],[0.02259887,0.04098361]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +e918bf04-3eb3-4a6d-9173-20ed223f0628,Standard,31c8715f-7b85-4243-8908-69cf8b2c1525,"{""type"":""LineString"",""coordinates"":[[0.87570621,0.89344262],[0.8700565,0.89344262],[0.88135593,0.89344262]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +59378c39-5361-470c-9974-8dd65fcc3b2b,Standard,e8329717-1626-4c33-b60e-d83e78514014,"{""type"":""LineString"",""coordinates"":[[0.84180791,0.77868852],[0.84745763,0.77868852],[0.83615819,0.77868852]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +4d1fa209-9186-4e2c-862a-964d52e64d0d,Standard,66dbe72e-f2be-430d-b103-c1a84f8211a4,"{""type"":""LineString"",""coordinates"":[[0.81920904,0.14754098],[0.8079096,0.14754098],[0.81355932,0.14754098]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +b422e0ef-fcf8-4035-a3e1-3c851db6551e,Standard,e6882165-4c20-4589-9dd5-624b10802042,"{""type"":""LineString"",""coordinates"":[[0.94350282,0.04918033],[0.95480226,0.04918033],[0.96610169,0.04918033]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +fd79934e-7893-4948-8d5d-f7bad5afec35,Standard,5450f675-565b-4156-9d64-ff4cfeea96d3,"{""type"":""LineString"",""coordinates"":[[0.68926554,0.77868852],[0.68361582,0.77868852],[0.6779661,0.77868852]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +c41cc825-581d-4aea-a08f-794c8be52c9b,Standard,d2cd0ac6-ffbb-43f3-94c1-e10344eea594,"{""type"":""LineString"",""coordinates"":[[0.84180791,0.14754098],[0.83615819,0.14754098],[0.83050847,0.14754098]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +bd52fae7-5d39-4718-a9f5-737d6e4ac693,Standard,87a41d29-ad67-4bd6-a5b7-9d1414b38c6e,"{""type"":""LineString"",""coordinates"":[[0.89265537,0.89344262],[0.9039548,0.89344262],[0.89830508,0.89344262]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +00f67881-6f00-41b0-9377-489c08522513,Standard,09fdfecb-1ea0-4b99-a7bd-caad84afe160,"{""type"":""LineString"",""coordinates"":[[0.86440678,0.36885246],[0.85875706,0.36885246],[0.85310734,0.36885246]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +264375c8-48d3-4c14-a432-e627f7ffed82,Standard,ddc03ccc-bd8e-47f3-8183-97f3b039219d,"{""type"":""LineString"",""coordinates"":[[0.8079096,0.14754098],[0.79661017,0.14754098],[0.80225989,0.14754098]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +7db35bba-5e4d-4964-abbe-a2e18b630f59,Standard,08d39ce3-e843-49bd-9b46-1fe927a1d4be,"{""type"":""LineString"",""coordinates"":[[0.77966102,0.25409836],[0.7740113,0.25409836],[0.78531073,0.25409836]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +835b96cb-24b4-4032-a747-129e519583b1,Standard,c4f33026-5741-4070-970c-1234541ce509,"{""type"":""LineString"",""coordinates"":[[0.88135593,0.77868852],[0.8700565,0.77868852],[0.87570621,0.77868852]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +217789d1-8cb9-4ff4-a7f5-12768eae95ab,Standard,8c4d9aa2-298b-466e-9982-6c4be253fbce,"{""type"":""LineString"",""coordinates"":[[0.80225989,0.25409836],[0.8079096,0.25409836],[0.79661017,0.25409836]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +3de72fa7-5070-4429-b1d9-80d7f3273834,Standard,060f10e1-2ffd-4972-9ace-7fff8df78658,"{""type"":""LineString"",""coordinates"":[[0.73446328,0.77868852],[0.72316384,0.77868852],[0.72881356,0.77868852]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +d37ce273-2b19-445b-aa00-ee2a13153e14,Standard,e357bf93-aaa3-4870-b6a4-6d2cdb8967da,"{""type"":""LineString"",""coordinates"":[[0.88700565,0.36885246],[0.87570621,0.36885246],[0.88135593,0.36885246]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +71572ac8-64b8-4d87-b617-dd227be40af2,Standard,3e7e4741-502d-4c8f-bad5-e0c5c6f69958,"{""type"":""LineString"",""coordinates"":[[0.83050847,0.36885246],[0.82485876,0.36885246],[0.81920904,0.36885246]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +4ec7ff3b-9815-43f8-9cba-f46af1a9f423,Standard,31f8365c-9329-4c46-8555-6ec6aadf130e,"{""type"":""LineString"",""coordinates"":[[0.84745763,0.57377049],[0.85875706,0.57377049],[0.85310734,0.57377049]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +8b7a0eb4-e725-4416-ac52-3810059bfc5c,Standard,95644bf5-8dca-4409-bb04-7d4e9a24fa03,"{""type"":""LineString"",""coordinates"":[[0.63841808,0.14754098],[0.63276836,0.14754098],[0.62711864,0.14754098]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +be192356-2248-4319-afd6-eac828fdb001,Standard,1a1550cf-77b8-40a9-90e5-5d0faef7baaa,"{""type"":""LineString"",""coordinates"":[[0.79096045,0.89344262],[0.80225989,0.89344262],[0.79661017,0.89344262]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +79a153b2-2b64-4b59-bbe5-946a3c0073bd,Standard,c3206971-b22f-4090-826b-e08d4bc8ffad,"{""type"":""LineString"",""coordinates"":[[0.20338983,0.24590164],[0.25423729,0.24590164],[0.22881421,0.24590164]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +ae02da1d-991a-4e16-81dd-2970373ec004,Standard,83b12a0c-d66f-43cf-a5c1-1945a8a66c4c,"{""type"":""LineString"",""coordinates"":[[0.66666667,0.77868852],[0.65536723,0.77868852],[0.66101695,0.77868852]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +4ca6d6bc-9616-4f26-a953-b04c20364f56,Standard,1a52eb5c-a8a1-4b69-9aac-138e425d835b,"{""type"":""LineString"",""coordinates"":[[0.88700565,0.04918033],[0.87570621,0.04918033],[0.88135593,0.04918033]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +31dab450-fe89-4ede-99e2-cba361671910,Standard,b714db4a-db55-4957-b503-2300559bb81f,"{""type"":""LineString"",""coordinates"":[[0.20338983,0.1557377],[0.14689266,0.1557377],[0.17514124,0.1557377]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +bf3a5270-9bfc-4edb-9ca0-2ba3273c821e,Standard,dcf3c182-18bd-4536-b11f-960c52c3b36e,"{""type"":""LineString"",""coordinates"":[[0.68926554,0.14754098],[0.68361582,0.14754098],[0.69491525,0.14754098]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +a4ffa7f8-dfd3-4d35-ae30-1eb0b6e6d3f6,Standard,fe19ff1f-8ea4-4ffe-881b-ad8d57c4561a,"{""type"":""LineString"",""coordinates"":[[0.89830508,0.14754098],[0.90960452,0.14754098],[0.9039548,0.14754098]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +e466da06-3a27-4cea-962d-4449f392eed1,Standard,e3b38aa2-dd38-445e-86c4-600331d108d0,"{""type"":""LineString"",""coordinates"":[[0.76836158,0.14754098],[0.7740113,0.14754098],[0.76271186,0.14754098]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +c1fd7798-e4fd-4cfb-af81-2cf23744637c,Standard,5f8eb2b8-0f98-4011-bc3a-b182285be4db,"{""type"":""LineString"",""coordinates"":[[0.81920904,0.44262295],[0.83050847,0.44262295],[0.82485876,0.44262295]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +59151ef3-be46-4c4d-a2d4-c6a562a0952d,Standard,a5106b6a-42b2-42d0-b5b3-a4656541abfa,"{""type"":""LineString"",""coordinates"":[[0.75706215,0.25409836],[0.75141243,0.25409836],[0.76271186,0.25409836]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +11bdeb21-cd02-48b2-bd54-b1adf2e96ecf,Standard,0f11e5d6-f850-463b-8d74-6fdf91fad535,"{""type"":""LineString"",""coordinates"":[[0.97175141,0.84836159],[0.97175141,0.91803279],[0.96045198,0.77868852],[0.97175141,0.77868852]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +a79f2ac5-a708-48be-b910-85542d4fbb71,Standard,71c56dc9-d957-4746-872f-8ad07d4ef8a4,"{""type"":""LineString"",""coordinates"":[[0.67231638,0.36885246],[0.66101695,0.36885246],[0.66666667,0.36885246]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +d2edc5bf-b3ed-4f2c-938f-8a60119a11b6,Standard,ea5f6247-4116-4acb-9595-52a7a0412897,"{""type"":""LineString"",""coordinates"":[[0.25423729,0.75409836],[0.20338983,0.75409836],[0.22881421,0.75409836]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +3427affb-2a2c-4fb5-a5e3-96141a5bc9f1,Standard,b302dc76-9715-45b6-b6ef-8da630acd168,"{""type"":""LineString"",""coordinates"":[[0.73446328,0.77868852],[0.74576271,0.77868852],[0.74011299,0.77868852]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +6b457803-1a41-4ed1-a747-9810ef70b1f7,Standard,64bd5e0e-cf5a-469f-a427-113b0e16893d,"{""type"":""LineString"",""coordinates"":[[0.0960452,0.14754098],[0.0960452,0.16803372],[0.0960452,0.18852459]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +5afd84df-08c8-45af-b542-42eefdcb78b6,Standard,1c81ee69-fb75-4bea-bfa9-f627850f9e6b,"{""type"":""LineString"",""coordinates"":[[0.84745763,0.04918033],[0.83050847,0.04918033],[0.85310734,0.04918033]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +3c31213f-b1cb-4f44-8503-7a95d141a04b,Standard,97ce398b-de56-4b28-925c-a37f9029e875,"{""type"":""LineString"",""coordinates"":[[0.22033898,0.07377049],[0.22033898,0.04098361],[0.22033898,0.05737705]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +c061601a-9997-4176-a25d-aac4510a0fbc,Standard,29747132-2fe5-4570-8d02-114d3438835c,"{""type"":""LineString"",""coordinates"":[[0.67231638,0.25409836],[0.6779661,0.25409836],[0.68361582,0.25409836]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +28b087ec-86fc-4701-b3b2-5a9b3c8e873e,Standard,04d02ea8-ba96-4a7f-969d-d25e201e32c6,"{""type"":""LineString"",""coordinates"":[[0.94915254,0.57377049],[0.93785311,0.57377049],[0.96045198,0.57377049]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +a7dadc1d-7f50-4e7c-bd61-305d6c145ccf,Standard,52cd80d8-9489-41bc-931a-d82dba5d0926,"{""type"":""LineString"",""coordinates"":[[0.28248588,0.66393443],[0.31073446,0.66393443],[0.25423729,0.66393443]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +13e3fc68-ff6f-4bd6-94cd-697d584f020c,Standard,a4dc31e8-e10a-4b42-90b4-f14d0f133c0c,"{""type"":""LineString"",""coordinates"":[[0.83050847,0.25409836],[0.84180791,0.25409836],[0.83615819,0.25409836]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +fe36e4d1-ecdf-4043-af93-f1c272723249,Standard,ec4d2395-23de-41c7-a366-af36aed1bf44,"{""type"":""LineString"",""coordinates"":[[0.92655367,0.67213115],[0.92090395,0.67213115],[0.91525424,0.67213115]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +26138708-ff02-48c2-a465-a8b5e5d165a8,Standard,25a1e96e-b425-48bf-a3ae-dc54ea9da47f,"{""type"":""LineString"",""coordinates"":[[0.03954802,0.27868852],[0.03954802,0.17213115],[0.03954802,0.06557377],[0.09039548,0.06557377]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +58b6d4fc-b31d-4909-ba77-0b4c7bb2125a,Standard,7fa87646-f182-4d67-9ffd-850f489fb24a,"{""type"":""LineString"",""coordinates"":[[0.66666667,0.67213115],[0.67231638,0.67213115],[0.6779661,0.67213115]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +8b60a817-a4d6-4051-9410-cab3ab26ce00,Standard,2cbfd089-e602-4f64-8a5b-86a6ecc56d32,"{""type"":""LineString"",""coordinates"":[[0.15819209,0.0942623],[0.15819209,0.07377049],[0.15819209,0.1147541]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +446be4bd-f603-4b51-9387-39cf2aa66b2a,Standard,5763fe56-89a4-4407-ba41-c1a528dd50a0,"{""type"":""LineString"",""coordinates"":[[0.63276836,0.89344262],[0.64971751,0.89344262],[0.65536723,0.89344262]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +6dd7072b-da09-4d47-a7ad-a57389a918f9,Standard,cba98774-b8c6-45f4-84cc-2fde121a77fa,"{""type"":""LineString"",""coordinates"":[[0.14689266,0.06557377],[0.11864407,0.06557377],[0.09039548,0.06557377]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +6e4efd5a-e82f-47e0-bee0-a226c588fd90,Standard,9d1ef0fd-3f8d-4a97-8495-25074243860c,"{""type"":""LineString"",""coordinates"":[[0.75706215,0.77868852],[0.75141243,0.77868852],[0.74576271,0.77868852]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +31f65061-b502-4249-83c0-47d10513255c,Standard,cadd7ca5-2b70-4bcc-83d0-867df8b6d0a3,"{""type"":""LineString"",""coordinates"":[[0.63841808,0.67213115],[0.6440678,0.67213115],[0.63276836,0.67213115]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +bc177fc1-85f8-4475-825d-d875a935cbe1,Standard,84dcef6e-d5b1-436f-8562-369b2489bb10,"{""type"":""LineString"",""coordinates"":[[0.76836158,0.44262295],[0.76271186,0.44262295],[0.7740113,0.44262295]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +9c5637b9-fd74-4119-be7e-5d22b13e2bdc,Standard,5fa6e010-393e-4bd2-a874-56eb784f9741,"{""type"":""LineString"",""coordinates"":[[0.9039548,0.57377049],[0.89265537,0.57377049],[0.89830508,0.57377049]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +5d5ddcff-0cdf-42d6-a9c9-6dcd636d0c28,Standard,597126c9-f364-4968-909c-ccc064959397,"{""type"":""LineString"",""coordinates"":[[0.79096045,0.44262295],[0.79661017,0.44262295],[0.78531073,0.44262295]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +5e94948f-0707-4691-910a-60a217ab9102,Standard,2887fb2b-fe44-4436-b28e-9f100f8288ac,"{""type"":""LineString"",""coordinates"":[[0.31073446,0.57377049],[0.25423729,0.57377049],[0.28248588,0.57377049]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +79edb34f-6eea-4190-a0d4-2664ace2deb8,Standard,8bb29769-404b-4bf6-837e-f9ca1b389bf9,"{""type"":""LineString"",""coordinates"":[[0.17514124,0.06557377],[0.14689266,0.06557377],[0.20338983,0.06557377]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +7e3b0ff3-5e08-407d-b36c-2077c16a8039,Standard,26d976e2-5245-4174-abcc-7e67e03d6352,"{""type"":""LineString"",""coordinates"":[[0.83050847,0.67213115],[0.83615819,0.67213115],[0.82485876,0.67213115]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +cea17966-e3e4-40bf-a765-2e1280d383e6,Standard,7056d4fa-aa01-47d4-af86-5c9717345607,"{""type"":""LineString"",""coordinates"":[[0.79661017,0.44262295],[0.8079096,0.44262295],[0.80225989,0.44262295]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +834e664b-3cff-4fae-8cc1-4cdd7af11516,Standard,ec6f82c5-e834-48d0-84af-a0f070979d65,"{""type"":""LineString"",""coordinates"":[[0.75141243,0.14754098],[0.76271186,0.14754098],[0.75706215,0.14754098]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +4a76fcf6-0353-4b7f-9f53-dbd4f2df9848,Standard,a8bc3d4a-1113-4f62-b01d-e59e6c35ab84,"{""type"":""LineString"",""coordinates"":[[0.02259887,0.20901733],[0.02259887,0.18852459],[0.02259887,0.2295082]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +3635451d-3007-44d6-85c8-67775bfc4e48,Standard,041991a2-c961-44a7-bfec-29cccd9a7831,"{""type"":""LineString"",""coordinates"":[[0.8700565,0.25409836],[0.87570621,0.25409836],[0.86440678,0.25409836]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +8004803f-5af6-4eb8-be81-78bee4d8f302,Standard,be047b0d-9f7c-413e-bd60-f38b45d5ee80,"{""type"":""LineString"",""coordinates"":[[0.83615819,0.89344262],[0.82485876,0.89344262],[0.83050847,0.89344262]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +7f6d06de-5e2f-4e11-9b80-ab156b6ad570,Standard,62c21e1e-f353-4e48-bca6-8a4da341971e,"{""type"":""LineString"",""coordinates"":[[0.66666667,0.89344262],[0.67231638,0.89344262],[0.6779661,0.89344262]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +1d132dc2-af13-46f5-ab50-167e6d59fb0c,Standard,c23b7659-8e54-410a-b0e9-9eccbe2457dc,"{""type"":""LineString"",""coordinates"":[[0.84745763,0.36885246],[0.84180791,0.36885246],[0.85310734,0.36885246]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +580f595f-8a44-4b1c-8833-ff8202075bb4,Standard,364ffff6-7541-4324-bbcf-fe626ba9de1d,"{""type"":""LineString"",""coordinates"":[[0.81355932,0.25409836],[0.81920904,0.25409836],[0.8079096,0.25409836]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +d6a95fd4-e44c-4fb8-951a-6aaf881cfd6a,Standard,f395e127-6036-49bb-b06f-1a3808193dfa,"{""type"":""LineString"",""coordinates"":[[0.8079096,0.04918033],[0.78531073,0.04918033],[0.80225989,0.04918033]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +654af5fb-14d5-4f67-8a21-f5481a814555,Standard,52ccd989-d87b-4f9f-9d5d-a0609391f56e,"{""type"":""LineString"",""coordinates"":[[0.81920904,0.89344262],[0.82485876,0.89344262],[0.81355932,0.89344262]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +38c4a4da-68e5-4702-9efa-70f2a6499346,Standard,1a5bb799-bc03-4de9-a8a1-9a0616ea3add,"{""type"":""LineString"",""coordinates"":[[0.81920904,0.77868852],[0.81355932,0.77868852],[0.82485876,0.77868852]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +badf084a-59db-4de6-bf6d-48f988378609,Standard,14f9eef8-8550-45fa-a3f0-f583624556e7,"{""type"":""LineString"",""coordinates"":[[0.83050847,0.25409836],[0.82485876,0.25409836],[0.81920904,0.25409836]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +25e39498-b841-4c6f-bbac-2365e141f950,Standard,8619b18b-8b32-4013-9b3a-6aab514b73cc,"{""type"":""LineString"",""coordinates"":[[0.93785311,0.04918033],[0.94350282,0.04918033],[0.93220339,0.04918033]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +84c7afaf-51f9-4c19-bf29-c7b79b2f90e2,Standard,1bb0764a-82b8-4f4c-8208-c9c58b8b92c0,"{""type"":""LineString"",""coordinates"":[[0.02259887,0.16803372],[0.02259887,0.18852459],[0.02259887,0.14754098]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +d43ae4c8-5544-4df7-9c24-8d39301cf3a5,Standard,00a3c4ab-e866-42a9-854f-fbf28c7f6a43,"{""type"":""LineString"",""coordinates"":[[0.8079096,0.77868852],[0.81355932,0.77868852],[0.80225989,0.77868852]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +4bb29460-65cf-42ff-baed-c79ec00af1ec,Standard,0d6a5b4a-db92-4772-a91c-4e18ff35c0be,"{""type"":""LineString"",""coordinates"":[[0.74576271,0.44262295],[0.76271186,0.44262295],[0.74011299,0.44262295]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +00af0ca8-e5ba-4bcc-93e2-d876e5fe5f2d,Standard,7cfd5184-c217-42b9-be09-7ed413d7a11e,"{""type"":""LineString"",""coordinates"":[[0.77966102,0.96721311],[0.77966102,0.97540984],[0.77966102,0.98360656]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +7d30150b-f752-417b-bbed-a6f3ecd2f823,Standard,bf6e54ab-1c74-4ce7-8371-b47e9019bd25,"{""type"":""LineString"",""coordinates"":[[0.02259887,0.07377049],[0.02259887,0.04098361],[0.02259887,0.05737705]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +7fdceb5a-d837-4672-a25c-3ef1c4b021f1,Standard,cd994d2f-b62e-4ab9-8f4c-e5357fd04af7,"{""type"":""LineString"",""coordinates"":[[0.71751412,0.14754098],[0.72316384,0.14754098],[0.72881356,0.14754098]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +790513bc-152b-45ac-96c6-9e89f07719c0,Standard,031633ca-bd50-401e-9159-d2258ce6309c,"{""type"":""LineString"",""coordinates"":[[0.9039548,0.04918033],[0.90960452,0.04918033],[0.89830508,0.04918033]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +1d22d39f-e8b0-43b3-ab64-67ea9c72e892,Standard,6f875559-5af0-47a9-9f0e-f1d8332f9230,"{""type"":""LineString"",""coordinates"":[[0.81355932,0.96721311],[0.8079096,0.96721311],[0.80225989,0.96721311]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +9b8ea76d-8054-4d43-afb3-664375202b2f,Standard,2ea48cfa-0a0b-48f0-aa66-b619c35b9929,"{""type"":""LineString"",""coordinates"":[[0.8079096,0.67213115],[0.81355932,0.67213115],[0.80225989,0.67213115]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +7533ebc3-7178-4967-8613-437c2fd4663d,Standard,f59cd3fa-404d-4c42-820b-31346ae47c00,"{""type"":""LineString"",""coordinates"":[[0.88700565,0.25409836],[0.89265537,0.25409836],[0.89830508,0.25409836]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +2b5bb969-f38a-4ac9-914a-413db62ac6f0,Standard,f03440ae-d6d8-4f7b-ad5f-bbd280a9d2a6,"{""type"":""LineString"",""coordinates"":[[0.71751412,0.44262295],[0.72881356,0.44262295],[0.72316384,0.44262295]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +9f0829cb-1a13-482f-b372-ec6dcbbe2cda,Standard,73d786b9-377a-4807-9b70-21c80599a4d8,"{""type"":""LineString"",""coordinates"":[[0.83615819,0.96721311],[0.83615819,0.89344262],[0.83615819,0.93032881]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +74efa478-92b6-442f-9c59-fb15bf064429,Standard,c6d6ca9d-042c-4525-9221-65bfa04477a4,"{""type"":""LineString"",""coordinates"":[[0.79661017,0.36885246],[0.79096045,0.36885246],[0.78531073,0.36885246]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +d377b2a4-317a-4934-8442-33b32bf55c4b,Standard,9af99daa-1e1e-45a8-bbed-c77e47ba4f8a,"{""type"":""LineString"",""coordinates"":[[0.71186441,0.77868852],[0.70621469,0.77868852],[0.70056497,0.77868852]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +21842dba-9c70-45df-b715-87db6ec36a0f,Standard,e311729e-244e-48a6-bc48-0c7d9823c148,"{""type"":""LineString"",""coordinates"":[[0.92090395,0.04918033],[0.40677966,0.10655738],[0.92655367,0.04918033],[0.93220339,0.04918033],[0.41242938,0.10655738]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +fc601178-3ca7-48f9-8a07-e9fb3751d3e0,Standard,9e9550e6-a601-4633-96a1-20220893ce00,"{""type"":""LineString"",""coordinates"":[[0.79096045,0.89344262],[0.78531073,0.89344262],[0.77966102,0.89344262]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" diff --git a/src/test/resources/edu/ie3/datamodel/io/source/csv/_joint_grid/line_input.csv b/src/test/resources/edu/ie3/datamodel/io/source/csv/_joint_grid/line_input.csv index 55f8c079b..a69e6309f 100644 --- a/src/test/resources/edu/ie3/datamodel/io/source/csv/_joint_grid/line_input.csv +++ b/src/test/resources/edu/ie3/datamodel/io/source/csv/_joint_grid/line_input.csv @@ -282,12 +282,11 @@ fe19ff1f-8ea4-4ffe-881b-ad8d57c4561a,"{""type"":""LineString"",""coordinates"":[ 9d2b065a-9098-447d-8dbe-5eb06cc691a2,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}",LTG_NS_NET146_F4_(15)-NS_NET146_F4_(16),0.04800000041723251,576840db-7d3c-417b-b587-28b222e740e1,9f7599de-c488-46c5-b053-1279a511f7b9,"olm:{(0.0,1.0)}",,,,1,803c298b-61c6-412c-9b60-21cabc5bd945 84f3941b-450c-4acb-8150-c788af1e6546,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}",LTG_NS_NET126_F4_(8)-NS_NET126_F4_(9),0.0430000014603138,75f2dfb9-75a0-496d-9c44-79e7df54c1df,119d270a-ff22-4fdb-8214-cb5b336790bf,"olm:{(0.0,1.0)}",,,,1,d3293c00-7bc8-434f-bfc8-b90cc2ff85be 8f9d19a8-8d64-4f62-b6aa-f5f01a12b566,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}",LTG_NS_NET126_F2_(2)-NS_NET126_F2_(3),0.01899999938905239,5981fe65-3c92-4a78-af92-1461904046d0,8f422111-67d7-42f0-9f80-fbd0ec64c4fc,"olm:{(0.0,1.0)}",,,,1,d3293c00-7bc8-434f-bfc8-b90cc2ff85be -f93f5e08-f351-4b2b-8cb0-9ec01203c1b9,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},LTG_NS_NET146_F1_(28)-NS_NET146_F1_(27),0.029999999329447746,012c9eee-86c2-494c-adcc-bbfc481e4a46,9baae5ff-40e3-48cb-9ddf-de6d1c133e13,olm:{(0.00,1.00)},,,,1,d3293c00-7bc8-434f-bfc8-b90cc2ff85be -08d39ce3-e843-49bd-9b46-1fe927a1d4be,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},LTG_NS_NET126_F2_(17)-NS_NET126_F2_(18),0.023000000044703484,c5457e35-ad81-4427-9d3a-99e4c44ccae8,e80aa2db-f32c-410d-96a1-a32e03222568,olm:{(0.00,1.00)},,,,1,803c298b-61c6-412c-9b60-21cabc5bd945 -997840bf-8c94-444f-83f1-e9c991706d7c,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},LTG_HS_NET1_Station_1-HS_NET1_Station_2,24.0,00d03670-7833-47ee-ad52-04d18d1c64fd,dfae9806-9b44-4995-ba27-d66d8e4a43e0,olm:{(0.00,1.00)},,,,1,c940e435-0523-419a-90bc-f3dbf2e463f7 -ddc63e7d-e76a-489b-a05f-97e7dee40794,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},LTG_NS_NET146_F2_(12)-NS_NET146_F2_(13),0.02800000086426735,8254d91b-e5da-4402-bb8f-301eafa09d28,49e14db3-a4bc-464a-b606-653ac8a604dd,olm:{(0.00,1.00)},,,,1,f66fc57d-f2be-41fd-bc60-d1177b091ac6 -fd04cc09-6ff8-48ea-a5eb-453e9d59d6d7,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},LTG_HS_NET1_Station_1-HS_NET1_Station_3,40.0,00d03670-7833-47ee-ad52-04d18d1c64fd,33f29587-f63e-45b7-960b-037bda37a3cb,olm:{(0.00,1.00)},,,,1,d0f81106-444d-4832-ad0b-a293d719206a -a78fbab6-e680-4c45-9731-97c82f2fb3c8,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},LTG_MS3_05-MS3_06,0.4000000059604645,86dfce49-05b2-4208-a6ae-877c3e98e6be,39dbc5ed-d874-48a8-9128-e970436a94b4,olm:{(0.00,1.00)},,,,1,0cf49259-c126-4602-9b8a-764208d67914 -42828cac-b67e-4d5c-b4fa-787c57f16fde,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},LTG_HS_NET1_Station_3-HS_NET1_Station_2,20.0,33f29587-f63e-45b7-960b-037bda37a3cb,dfae9806-9b44-4995-ba27-d66d8e4a43e0,olm:{(0.00,1.00)},,,,1,9ac19e4c-0379-4aaf-a96a-b2e71462abb3 -ebd1f65a-65ae-4620-b1cf-79898683c9e1,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},LTG_MS2_06-MS2_07,6.0,df97c0d1-379b-417a-a473-8e7fe37da99d,14a8dc4c-0906-402f-b073-6d6d4725d0cb,olm:{(0.00,1.00)},,,,1,f265e497-3a6d-4f96-9329-a7644cd8e785 - +f93f5e08-f351-4b2b-8cb0-9ec01203c1b9,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}",LTG_NS_NET146_F1_(28)-NS_NET146_F1_(27),0.029999999329447746,012c9eee-86c2-494c-adcc-bbfc481e4a46,9baae5ff-40e3-48cb-9ddf-de6d1c133e13,"olm:{(0.00,1.00)}",,,,1,d3293c00-7bc8-434f-bfc8-b90cc2ff85be +08d39ce3-e843-49bd-9b46-1fe927a1d4be,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}",LTG_NS_NET126_F2_(17)-NS_NET126_F2_(18),0.023000000044703484,c5457e35-ad81-4427-9d3a-99e4c44ccae8,e80aa2db-f32c-410d-96a1-a32e03222568,"olm:{(0.00,1.00)}",,,,1,803c298b-61c6-412c-9b60-21cabc5bd945 +997840bf-8c94-444f-83f1-e9c991706d7c,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}",LTG_HS_NET1_Station_1-HS_NET1_Station_2,24.0,00d03670-7833-47ee-ad52-04d18d1c64fd,dfae9806-9b44-4995-ba27-d66d8e4a43e0,"olm:{(0.00,1.00)}",,,,1,c940e435-0523-419a-90bc-f3dbf2e463f7 +ddc63e7d-e76a-489b-a05f-97e7dee40794,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}",LTG_NS_NET146_F2_(12)-NS_NET146_F2_(13),0.02800000086426735,8254d91b-e5da-4402-bb8f-301eafa09d28,49e14db3-a4bc-464a-b606-653ac8a604dd,"olm:{(0.00,1.00)}",,,,1,f66fc57d-f2be-41fd-bc60-d1177b091ac6 +fd04cc09-6ff8-48ea-a5eb-453e9d59d6d7,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}",LTG_HS_NET1_Station_1-HS_NET1_Station_3,40.0,00d03670-7833-47ee-ad52-04d18d1c64fd,33f29587-f63e-45b7-960b-037bda37a3cb,"olm:{(0.00,1.00)}",,,,1,d0f81106-444d-4832-ad0b-a293d719206a +a78fbab6-e680-4c45-9731-97c82f2fb3c8,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}",LTG_MS3_05-MS3_06,0.4000000059604645,86dfce49-05b2-4208-a6ae-877c3e98e6be,39dbc5ed-d874-48a8-9128-e970436a94b4,"olm:{(0.00,1.00)}",,,,1,0cf49259-c126-4602-9b8a-764208d67914 +42828cac-b67e-4d5c-b4fa-787c57f16fde,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}",LTG_HS_NET1_Station_3-HS_NET1_Station_2,20.0,33f29587-f63e-45b7-960b-037bda37a3cb,dfae9806-9b44-4995-ba27-d66d8e4a43e0,"olm:{(0.00,1.00)}",,,,1,9ac19e4c-0379-4aaf-a96a-b2e71462abb3 +ebd1f65a-65ae-4620-b1cf-79898683c9e1,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}",LTG_MS2_06-MS2_07,6.0,df97c0d1-379b-417a-a473-8e7fe37da99d,14a8dc4c-0906-402f-b073-6d6d4725d0cb,"olm:{(0.00,1.00)}",,,,1,f265e497-3a6d-4f96-9329-a7644cd8e785 \ No newline at end of file diff --git a/src/test/resources/edu/ie3/datamodel/io/source/csv/_joint_grid/load_input.csv b/src/test/resources/edu/ie3/datamodel/io/source/csv/_joint_grid/load_input.csv index 1b513a955..3d0b9e810 100644 --- a/src/test/resources/edu/ie3/datamodel/io/source/csv/_joint_grid/load_input.csv +++ b/src/test/resources/edu/ie3/datamodel/io/source/csv/_joint_grid/load_input.csv @@ -1,497 +1,497 @@ "uuid","cos_phi_rated","dsm","e_cons_annual","id","node","operates_from","operates_until","operator","q_characteristics","s_rated","load_profile" -c2402412-97fa-4ca4-aa66-e6e04d010001,0.9700000286102295,false,4000.0,NS_NET126_L_F1_(36),ca3391eb-ca94-4945-ac72-e116f396f82c,,,,cosPhiFixed:{(0.00,1.00)},2.0618600845336914,h0 -fa8ef266-5b15-4fdd-a145-71ba95e3463d,0.949999988079071,false,4000.0,NS_NET146_L_F3_(17),0f3ba59d-a9ce-4669-aa12-bebec42238b7,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -4dd0785a-482c-47e3-bb82-e315083684d1,0.9700000286102295,false,4000.0,NS_NET116_L_S3_2(6),550ebca7-1455-44eb-9431-ffbf08e58bd4,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -9b027eb7-abfa-43ef-8eae-b20b47a631e6,0.949999988079071,false,4000.0,NS_NET146_L_F3_(18),85ec9277-c5fd-4e5b-8a34-9627d9599ad7,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -7bbb2c62-36f7-4aab-8802-e3ddf478adf2,0.949999988079071,false,4000.0,NS_NET146_L_F3_(14),3dec12fd-3dc6-481d-be05-8df9df7f0c5d,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -ec035312-7214-4060-a502-71cbe819f32a,0.9700000286102295,false,4000.0,NS_NET136_L_S2_1(1),4e188ac9-e507-46b1-b8e2-376cf7c6ceb1,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -40ddb9cf-46f1-4ee6-8feb-432affbc95bf,0.9700000286102295,false,4000.0,NS_NET116_L_S2_4(1),e05c68b1-11cd-43fd-a4b2-31e4db380c78,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -3b9ae1ad-11e5-4fb5-ba03-9027e39c33b4,0.9700000286102295,false,4000.0,NS_NET116_L_S1_3(8),e4c8b492-965c-4b5a-8d14-e8ff2c027ce9,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -16cd0d9b-bbaa-4d71-ad87-b8e834cf478d,0.9700000286102295,false,4000.0,MS2_Last_01,1a8ba1a5-3cee-4791-b21b-f17b08526873,,,,cosPhiFixed:{(0.00,1.00)},400.0,h0 -c806a93a-5f1c-47ba-9c67-31a86ae2658c,0.9700000286102295,false,4000.0,NS_NET126_L_F1_(39),60173008-809d-4d8f-b06a-3c4a838dd989,,,,cosPhiFixed:{(0.00,1.00)},2.0618600845336914,h0 -5b821f32-64d4-436f-9840-40d04872f20f,0.949999988079071,false,4000.0,NS_NET126_L_F3_(12),eb125953-31d3-4207-adf7-aba3a3790d6f,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -dcaeda6e-2dfc-4b53-9c25-cf51d486bb34,0.949999988079071,false,4000.0,NS_NET126_L_F2_(21),1dee13af-e638-4858-9c69-0069190cd577,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -c78b87bd-855b-4741-9e82-c9d814dc5a7c,0.9700000286102295,false,4000.0,NS_NET116_L_S2_1(7),39112046-8953-4e73-a5d9-6a8183a77436,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -aef6783d-889c-48a2-bdf5-7a9086a73548,0.9700000286102295,false,4000.0,NS_NET116_L_S1_2(7),3e21f3a1-2c9c-4138-bcc9-466b004609ed,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -9cc70cc7-642f-4fb1-9782-20a446368645,0.9700000286102295,false,4000.0,NS_NET136_L_S3_4(1),2a816043-d1d2-44a6-8a9b-f61a4933997b,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -2de16d4b-e4e0-41e0-ae33-105930964fcd,0.9700000286102295,false,4000.0,NS_NET126_L_F1_(31),80d8252b-045f-471a-9638-416ed3f86120,,,,cosPhiFixed:{(0.00,1.00)},2.0618600845336914,h0 -07ac3307-90a9-4d74-9434-b977741a8858,0.949999988079071,false,4000.0,NS_NET126_L_F4_(4),a12b9ded-0c19-48c2-ac19-7a3a9b7e26da,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -590108ac-416d-44fe-b574-4069cea1dbb1,0.9700000286102295,false,4000.0,MS3_Last_04,4dd439ed-7cc3-45b4-a2ca-ae615b97a23c,,,,cosPhiFixed:{(0.00,1.00)},320.0,h0 -df1ebc6d-1252-4496-98bc-50f6ff46a085,0.949999988079071,false,4000.0,NS_NET126_L_F1_(18),2f64bf67-cee9-44bb-8c13-ff96878932af,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -a850c129-beef-48d6-9543-1e217a5349ce,0.9700000286102295,false,4000.0,NS_NET136_L_S1_2(8),032768b4-2426-4abf-806b-83813ac5137a,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -ceec9e98-5303-4df3-99e8-592509c19d74,0.9700000286102295,false,4000.0,NS_NET136_L_S1_5(7),926d6113-933f-49e3-9529-a3035acdc9b2,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -984470e3-f117-4b8c-932f-caeacf10ff2c,0.9700000286102295,false,4000.0,NS_NET116_L_S3_1(2),4a6f6058-e654-464d-9367-2dca7185c6d7,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -94ef12cc-d3bc-42b1-b8b0-6177b93bb25c,0.9700000286102295,false,4000.0,NS_NET116_L_S3_5(4),b9a28095-68f7-44c1-9ccc-6efc5ea84c59,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -e87a4990-0f33-44dc-bb98-ca7dd38e2493,0.949999988079071,false,4000.0,NS_NET146_L_F1_(18),2f921888-36d3-4c88-a8aa-1ecbdc62b9c4,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -5fa8b3e6-ed79-4804-997b-4c6eb2c7727b,0.9700000286102295,false,4000.0,NS_NET136_L_S1_1(5),535b3fa4-ed67-4ab1-9a68-e7db83e05967,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -716dc985-7e6d-4681-b4d8-aa9c039a347e,0.9700000286102295,false,4000.0,MS1_Last_07,7546df1d-8a62-4650-bf2e-d1e441b38d70,,,,cosPhiFixed:{(0.00,1.00)},2400.0,h0 -c9576364-4a47-450d-a25d-864dd12ef7fa,0.9700000286102295,false,4000.0,NS_NET136_L_S1_1(3),535b3fa4-ed67-4ab1-9a68-e7db83e05967,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -a8f50827-29eb-4c27-a60c-fb74c3a5f3fd,0.9700000286102295,false,4000.0,NS_NET136_L_S3_4(2),2a816043-d1d2-44a6-8a9b-f61a4933997b,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -9c4f5e8d-b780-4e31-9bb0-37e975066beb,0.9700000286102295,false,4000.0,NS_NET116_L_S2_5(8),32bd37df-255b-4eb2-9d16-5b711132eee6,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -3d297678-497c-4620-ad5e-1e70cea8119d,0.949999988079071,false,4000.0,NS_NET146_L_F3_(5),ce71377d-63ea-462a-9290-67e51946a098,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -895edb06-282c-4965-acab-36c8b86f8f65,0.9700000286102295,false,4000.0,NS_NET116_L_S2_3(5),df9c3d91-41a0-4e49-bb1f-1cd2a8fd9a2e,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -8d84639d-d746-49c5-bc46-33a2aae666e7,0.949999988079071,false,4000.0,NS_NET126_L_F1_(16),4f78fe6d-3cb2-4d99-8c67-4f14cb626813,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -8cd07c7c-1264-4141-b90e-e2b6f39c44be,0.949999988079071,false,4000.0,NS_NET126_L_F4_(9),119d270a-ff22-4fdb-8214-cb5b336790bf,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -0c5d8e98-e059-4768-be56-73e0e8914092,0.9700000286102295,false,4000.0,NS_NET136_L_S3_1(3),416fa5eb-2f72-46c3-978f-6a0ebb714a40,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -06747e73-c108-40d5-8ce6-6538e38b4ef2,0.949999988079071,false,4000.0,NS_NET126_L_F1_(6),99e26ef8-75e2-46f3-aafc-6287bf5e3905,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -5d09da2a-e37c-4cca-93fd-0bf61918a2b2,0.9700000286102295,false,4000.0,NS_NET136_L_S2_3(4),fd534474-cd65-47aa-8005-dc50d17d6920,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -7ce95168-5af2-4274-943d-601176146ce8,0.9700000286102295,false,4000.0,NS_NET116_L_S1_5(8),92301422-94ae-48ab-89c7-a69eea9450b2,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -188c5841-af7d-48ea-95ac-7178dc7407c9,0.9700000286102295,false,4000.0,NS_NET116_L_S1_1(8),8a50fb37-81cf-47c9-8850-a12b4391e2e7,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -1d96cdde-d9d3-4d47-b3a4-60474b9caa92,0.9700000286102295,false,4000.0,MS2_Last_05,582ed42c-fd18-49ae-bdf5-6aa59353c7e3,,,,cosPhiFixed:{(0.00,1.00)},320.0,h0 -130b7cb2-f379-4d6c-b71d-404d87260133,0.949999988079071,false,4000.0,NS_NET146_L_F2_(19),636dec7c-4242-46e8-b7ae-db7e5a28c39c,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -b4b07036-0d49-4f8f-9194-0181e11d0470,0.9700000286102295,false,4000.0,NS_NET116_L_S2_3(7),df9c3d91-41a0-4e49-bb1f-1cd2a8fd9a2e,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -0442c234-22f8-4022-8daa-2f191e4a6bf3,0.949999988079071,false,4000.0,NS_NET146_L_F1_(24),205fcee1-928c-4374-950c-34575f07fa49,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -29a47779-6c11-490f-a0b2-e33c6c7a06b3,0.949999988079071,false,4000.0,NS_NET126_L_F3_(25),1bf26b4d-03cc-4490-8c33-d3db8597d807,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -2b20b17c-774b-4b41-a1e8-ef9d8f39b0e3,0.9700000286102295,false,4000.0,NS_NET136_L_S2_5(8),c5af5a34-211a-4105-a8e1-f447140073c6,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -70fcdefd-49c1-455f-9ceb-013dcbf26887,0.9700000286102295,false,4000.0,NS_NET116_L_S1_3(1),e4c8b492-965c-4b5a-8d14-e8ff2c027ce9,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -5d842fa6-eb7a-4f88-8dd3-f7eac01afaad,0.9700000286102295,false,4000.0,NS_NET146_L_F1_(29),867c4b4d-0f38-4f28-82ce-135f2cc63808,,,,cosPhiFixed:{(0.00,1.00)},2.0618600845336914,h0 -d7a1b657-6d15-45c7-8d04-d2eef97429b0,0.9700000286102295,false,4000.0,NS_NET116_L_S1_1(6),8a50fb37-81cf-47c9-8850-a12b4391e2e7,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -e17786aa-4cf5-46d6-ad37-96f4d4502b1f,0.949999988079071,false,4000.0,NS_NET146_L_F4_(8),6dd72a1e-2a79-4cde-b2fc-92bc9a83032a,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -c22e9a91-f522-446d-8dc8-ae3e720a5053,0.949999988079071,false,4000.0,NS_NET126_L_F2_(19),52e15712-2572-442a-b22c-add48af95115,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -1ec03866-9e92-43b9-9c13-1501533c8e1e,0.949999988079071,false,4000.0,NS_NET146_L_F1_(26),154e9a99-467b-4f65-9928-8ebb14149baa,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -26bf78c9-48ea-4004-9148-eaee014d6f09,0.9700000286102295,false,4000.0,NS_NET116_L_S3_2(7),550ebca7-1455-44eb-9431-ffbf08e58bd4,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -0a8bf78c-1e57-44f1-baee-0a8d8383875c,0.9700000286102295,false,4000.0,NS_NET136_L_S3_3(1),2c5d4eda-6b33-4ad5-a135-7037baa7d6eb,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -5f58fa15-aff8-4a9b-bfc0-8ef690d6dba3,0.949999988079071,false,4000.0,NS_NET146_L_F2_(27),b179c38b-5af0-4304-84b1-1dc03314fd80,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -a9f8dce4-b664-4bbd-9e52-c2ca6aa669aa,0.949999988079071,false,4000.0,NS_NET146_L_F1_(19),1f040625-ad1d-409f-bd7e-944c4d805e46,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -e3e2d73e-3dfc-42ae-ad50-fadebdf38868,0.949999988079071,false,4000.0,NS_NET126_L_F1_(26),3802b603-d08d-4031-b7d7-e29734bcc122,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -62800519-5f5f-4081-ae89-9b2b0784a714,0.949999988079071,false,4000.0,NS_NET126_L_F2_(6),9d7038e9-5bcc-4676-bead-46c4f1291ba8,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -1100ef62-0d33-46df-8ac7-c949d843217c,0.949999988079071,false,4000.0,NS_NET146_L_F3_(22),616da4e5-e837-44ec-bbbc-0cd12b5da8f7,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -33cd1941-51f2-425a-8f4d-67e00d0b1876,0.9700000286102295,false,4000.0,NS_NET136_L_S3_1(6),416fa5eb-2f72-46c3-978f-6a0ebb714a40,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -9cff3e75-4374-48fc-a20a-27968427dc1a,0.949999988079071,false,4000.0,NS_NET126_L_F3_(5),f6272655-bd7e-4d2d-8bdd-285f3ac0d3e8,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -2485a766-3e5c-4950-b598-0c3b84c747a7,0.949999988079071,false,4000.0,NS_NET146_L_F2_(4),369cffa5-bcee-4489-8193-1d9b10230eca,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -5312d132-f5bc-4c34-98ca-16221a0111e2,0.949999988079071,false,4000.0,NS_NET146_L_F3_(2),0b2a3b46-5e43-4879-973e-d8fb96429d8a,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -8bd4fb73-bc7f-45c9-b1e6-916afd2e7359,0.9700000286102295,false,4000.0,NS_NET136_L_S1_5(4),926d6113-933f-49e3-9529-a3035acdc9b2,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -05124256-80e0-43cf-a3c5-dc565ef38a07,0.949999988079071,false,4000.0,NS_NET146_L_F3_(27),55caf2ec-a21b-4afd-8830-1e4009cce396,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -283a1252-a774-4b04-bfcf-fe8879065982,0.949999988079071,false,4000.0,HS_NET1_L_S4,401f37f8-6f2c-4564-bc78-6736cb9cbf8d,,,,cosPhiFixed:{(0.00,1.00)},42105.30078125,h0 -09fb83df-cd0f-4dca-a5b6-edc18d662e93,0.9700000286102295,false,4000.0,NS_NET136_L_S2_5(7),c5af5a34-211a-4105-a8e1-f447140073c6,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -f4536a0c-33d2-4c57-918c-0ebdf768265a,0.9700000286102295,false,4000.0,NS_NET116_L_S3_3(1),d69efff2-ba8b-4aa6-a4a1-27267964147a,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -27f66b7b-f1ac-46e4-9c11-b9ff0d0f2990,0.949999988079071,false,4000.0,NS_NET146_L_F3_(31),b7a5be0d-2662-41b2-99c6-3b8121a75e9e,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -8df8d6b5-ef51-4901-aaed-bf29c912acd5,0.949999988079071,false,4000.0,NS_NET146_L_F3_(21),a4a44d93-48d6-4b87-8053-87fe0778e75c,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -d75d06ae-7ac0-491c-87ed-e1bb625e349a,0.9700000286102295,false,4000.0,NS_NET136_L_S2_4(3),81cd3f38-867b-4a71-ba22-cb33834e0e58,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -3ac82a59-756c-4ead-b34e-02957fc69ec4,0.949999988079071,false,4000.0,NS_NET126_L_F1_(21),14ae9865-cb9b-4518-9f2a-c0fda3455a42,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -96da3f13-3c72-4e9a-b433-a319a9018b40,0.949999988079071,false,4000.0,NS_NET146_L_F2_(21),bd292f64-65e8-42ec-9b78-b9b9f013750e,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -57d74ff0-f6c4-4932-93c5-9837d101297c,0.9700000286102295,false,4000.0,NS_NET136_L_S2_2(2),cbcfc3b6-ac90-4215-975c-a033f5cf9912,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -a2d372db-d13c-4d3c-a987-ccf4138d43f2,0.9700000286102295,false,4000.0,MS4_Last_07,898d8295-bf35-4079-9374-99b059c2c956,,,,cosPhiFixed:{(0.00,1.00)},2400.0,h0 -182f6157-58ea-4fe2-92a2-90845427fbd0,0.949999988079071,false,4000.0,NS_NET126_L_F3_(13),f29859be-c6e7-4cf9-84d7-239eb98a9e65,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -ae603fbc-a262-47ab-bea7-251fd61f3964,0.9700000286102295,false,4000.0,NS_NET116_L_S2_5(4),32bd37df-255b-4eb2-9d16-5b711132eee6,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -2e7dda3e-4bd4-4bb7-8e15-260f709ab92e,0.9700000286102295,false,4000.0,NS_NET136_L_S3_4(3),2a816043-d1d2-44a6-8a9b-f61a4933997b,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -b5c6af22-2d56-4bd1-8235-74db06106eba,0.949999988079071,false,4000.0,NS_NET146_L_F3_(23),ba0b3e4b-85e1-4b45-8863-fbfe11c9b69c,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -7f642ba6-1492-4bf6-9857-113c60a18709,0.949999988079071,false,4000.0,NS_NET146_L_F3_(11),e2267696-669b-48e8-b43a-37d0db95011d,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -497de722-6c3b-49a5-8f1c-125c76a4a9cd,0.9700000286102295,false,4000.0,NS_NET116_L_S1_5(5),92301422-94ae-48ab-89c7-a69eea9450b2,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -1b64ea94-b338-40aa-92c8-144c7caaa8c2,0.9700000286102295,false,4000.0,MS1_Last_05,c1c3b5c2-c79e-4368-a8ae-28fd0f4e357a,,,,cosPhiFixed:{(0.00,1.00)},320.0,h0 -086208d0-52d4-4198-9f3d-966aa7a5557e,0.9700000286102295,false,4000.0,NS_NET136_L_S3_5(7),3bc8235b-03b5-489b-81a2-58d520fbe28e,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -fc5139da-5e61-44c5-8843-4f76df7c6e33,0.9700000286102295,false,4000.0,NS_NET146_L_F1_(39),904c7476-5f16-4ec2-9138-7d5e32d38a3b,,,,cosPhiFixed:{(0.00,1.00)},2.0618600845336914,h0 -abe6ade3-f1c5-41c0-a850-1292506f3837,0.949999988079071,false,4000.0,NS_NET146_L_F3_(10),4632291f-80d7-4e4a-9dc9-5c0fd0c56312,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -cbb8c279-5b80-4583-bec3-b878ab0c2755,0.9700000286102295,false,4000.0,NS_NET136_L_S1_5(1),926d6113-933f-49e3-9529-a3035acdc9b2,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -b431628f-bc6f-49ca-9f23-19fe41aadb53,0.9700000286102295,false,4000.0,NS_NET116_L_S3_3(2),d69efff2-ba8b-4aa6-a4a1-27267964147a,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -6069eb20-4107-483f-8144-5bd479e32d98,0.949999988079071,false,4000.0,NS_NET126_L_F2_(12),9d02ea80-98d8-4cd0-a635-9104a14a56dd,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -c81fa33a-1c21-4646-b43f-b9a93baf04ad,0.949999988079071,false,4000.0,NS_NET146_L_F2_(5),0228ffcd-f6bc-47c8-b26c-fcc0abacd963,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -660e69f8-cba2-45d0-9d0c-f7d5be09451d,0.9700000286102295,false,4000.0,NS_NET136_L_S2_2(6),cbcfc3b6-ac90-4215-975c-a033f5cf9912,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -ee33524a-6c8e-4c12-8b40-7a116e386dbd,0.9700000286102295,false,4000.0,NS_NET116_L_S2_5(3),32bd37df-255b-4eb2-9d16-5b711132eee6,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -4c6e6e4f-d4cb-4de3-b406-ff3ec1d50280,0.949999988079071,false,4000.0,NS_NET146_L_F2_(3),0170837a-1876-45f9-a613-666f9991964d,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -d85bcbda-20fb-481b-bb8d-aead291aa3c1,0.9700000286102295,false,4000.0,NS_NET136_L_S3_1(7),416fa5eb-2f72-46c3-978f-6a0ebb714a40,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -86754cd3-ba74-49fb-bf3b-5702b4fd5928,0.9700000286102295,false,4000.0,NS_NET146_L_F1_(33),543f7e9f-b9be-486b-b365-2bae79010758,,,,cosPhiFixed:{(0.00,1.00)},2.0618600845336914,h0 -4dcec977-6c98-4bd2-b6f2-dc32d9c61cf2,0.9700000286102295,false,4000.0,NS_NET136_L_S3_3(4),2c5d4eda-6b33-4ad5-a135-7037baa7d6eb,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -1a155e7e-9636-4760-a84d-430e293142cc,0.9700000286102295,false,4000.0,NS_NET116_L_S1_4(4),b3a7431d-89b0-41cb-87a9-5853890796cd,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -e90dfb70-2372-40d3-9577-01d2145eb59d,0.9700000286102295,false,4000.0,NS_NET116_L_S2_5(7),32bd37df-255b-4eb2-9d16-5b711132eee6,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -85bfce37-1c9a-4e5a-84ec-47faf7b13821,0.9700000286102295,false,4000.0,MS4_Last_02,174fb4b2-4f9e-415c-bfee-d850ef751307,,,,cosPhiFixed:{(0.00,1.00)},400.0,h0 -16b0791d-eeff-4b12-b1fe-2961bf0fd4c2,0.949999988079071,false,4000.0,NS_NET126_L_F4_(10),857c264a-7072-4bb7-af56-2f01539b2a2e,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -aa1ce00f-1a17-4172-9040-9ba15b179a15,0.949999988079071,false,4000.0,NS_NET146_L_F4_(16),9f7599de-c488-46c5-b053-1279a511f7b9,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -34671961-b8a8-49f9-a99e-c7b5a33c600e,0.9700000286102295,false,4000.0,NS_NET116_L_S3_4(2),36dccefc-f04c-493f-bb88-11343583bf9f,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -e4f045d6-7f37-4871-b357-621d97b9c2a8,0.9700000286102295,false,4000.0,NS_NET136_L_S3_4(8),2a816043-d1d2-44a6-8a9b-f61a4933997b,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -58cb8168-7a34-41e2-9db6-88a67287c5e9,0.949999988079071,false,4000.0,NS_NET146_L_F2_(8),792b505c-87ab-4665-a31d-b6035c5ece70,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -35555bee-2634-45cb-888b-d850767955a6,0.9700000286102295,false,4000.0,NS_NET116_L_S1_1(3),8a50fb37-81cf-47c9-8850-a12b4391e2e7,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -6322878b-9db6-4481-858b-64dbd00dc091,0.949999988079071,false,4000.0,NS_NET126_L_F3_(26),dc022eec-16b0-4a64-a2f5-498d81aca71e,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -0cf1f5c4-996b-4422-b61b-b4fbc840d004,0.949999988079071,false,4000.0,NS_NET146_L_F3_(24),773aebe4-fc03-46be-8209-0213e2760a8e,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -8ef945c1-4586-4755-98a8-bff3ee581620,0.949999988079071,false,4000.0,NS_NET146_L_F1_(7),67c1746c-3af8-403f-983e-1c7c047383df,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -61c9c21b-38a5-45b3-8a41-60df0bb698ee,0.949999988079071,false,4000.0,NS_NET146_L_F1_(22),1ee9de9a-0095-4b58-beeb-e56fb908844a,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -81e75c16-c8a4-4328-bc97-635049829f57,0.949999988079071,false,4000.0,NS_NET146_L_F2_(24),970cf93c-36c5-4938-a7e4-3f184a7035f0,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -53ae546b-c94f-4619-a613-3291f26fb78b,0.949999988079071,false,4000.0,NS_NET146_L_F3_(4),f66df6fa-3dfa-4515-85d7-54d0f429fde7,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -c73800aa-9f9e-46da-83eb-82a88b2ab502,0.9700000286102295,false,4000.0,NS_NET136_L_S2_5(4),c5af5a34-211a-4105-a8e1-f447140073c6,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -8b9c12d1-5398-4c42-80a6-9604978de820,0.949999988079071,false,4000.0,NS_NET146_L_F4_(3),b5548457-5923-4d52-b3c9-fdb75a1df98e,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -48ae1ea4-e001-4152-b54c-320fc9f35e92,0.949999988079071,false,4000.0,NS_NET126_L_F4_(5),de5ee252-ebb6-42b0-875c-77ae557ffbf6,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -9018c4d9-5b86-4c11-b5b3-2c26e756ad0e,0.949999988079071,false,4000.0,NS_NET126_L_F2_(20),de756ddb-793d-4b2d-959c-59d938a8f61f,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -3a2470e0-1d3f-4f33-990d-20c8b9611ac5,0.9700000286102295,false,4000.0,NS_NET136_L_S1_1(7),535b3fa4-ed67-4ab1-9a68-e7db83e05967,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -1e79cec6-2546-4e64-92fc-c509d4eea216,0.9700000286102295,false,4000.0,NS_NET126_L_F1_(32),49b511fa-8cff-45f4-9a59-54faaaf90abf,,,,cosPhiFixed:{(0.00,1.00)},2.0618600845336914,h0 -a1af0e38-339c-491c-94d8-446cf662d89b,0.9700000286102295,false,4000.0,NS_NET116_L_S3_4(1),36dccefc-f04c-493f-bb88-11343583bf9f,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -91d402b7-e8c7-4919-bdbd-93c1c8492920,0.949999988079071,false,4000.0,NS_NET146_L_F4_(14),f2d03b34-9595-4819-a00b-ff9ddd92eb07,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -521d8738-0393-4519-8b31-52ed06c9ed18,0.9700000286102295,false,4000.0,NS_NET116_L_S3_1(6),4a6f6058-e654-464d-9367-2dca7185c6d7,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -038ee933-439a-4705-b526-0373a4b0b16a,0.9700000286102295,false,4000.0,NS_NET136_L_S3_1(1),416fa5eb-2f72-46c3-978f-6a0ebb714a40,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -a964d9b8-a035-41df-86c0-4c5306af2158,0.9700000286102295,false,4000.0,NS_NET116_L_S2_4(7),e05c68b1-11cd-43fd-a4b2-31e4db380c78,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -c67f5f1a-7adf-4715-a0ee-1bc0156b7bb9,0.9700000286102295,false,4000.0,NS_NET116_L_S3_3(6),d69efff2-ba8b-4aa6-a4a1-27267964147a,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -8decd09e-f82a-4f38-8946-14a9b437303f,0.949999988079071,false,4000.0,NS_NET126_L_F2_(18),e80aa2db-f32c-410d-96a1-a32e03222568,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -8736f13d-fcf4-486a-8225-259bfd9bd206,0.9700000286102295,false,4000.0,NS_NET136_L_S1_3(8),eb95ff15-56db-4463-bb54-0ee131167812,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -0211454c-9be4-470f-9cf5-cef9b87cb640,0.9700000286102295,false,4000.0,NS_NET116_L_S3_2(5),550ebca7-1455-44eb-9431-ffbf08e58bd4,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -9b12597e-619f-4953-86c6-21f8d262bfbd,0.949999988079071,false,4000.0,NS_NET146_L_F4_(6),49dcfc70-76ca-4f6f-83f7-0bc2aab1ae34,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -bedce1e8-d623-469a-b7ff-bb618588bb3e,0.949999988079071,false,4000.0,NS_NET126_L_F2_(2),5981fe65-3c92-4a78-af92-1461904046d0,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -080cbc7e-6acf-434d-ae38-b693f19edc69,0.9700000286102295,false,4000.0,NS_NET116_L_S2_3(4),df9c3d91-41a0-4e49-bb1f-1cd2a8fd9a2e,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -7b187641-d6fa-49f2-afd6-b03125c1acea,0.949999988079071,false,4000.0,NS_NET126_L_F2_(22),177a20fe-83b1-46df-94a3-4faa54348d10,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -4336ad38-37d0-4bba-914e-b2ebec0cc8ab,0.9700000286102295,false,4000.0,NS_NET116_L_S1_5(2),92301422-94ae-48ab-89c7-a69eea9450b2,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -c098f9cd-09c8-4eef-8941-652cb8365992,0.9700000286102295,false,4000.0,NS_NET136_L_S3_1(4),416fa5eb-2f72-46c3-978f-6a0ebb714a40,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -c9acf3dd-2d38-47f1-9449-421104c47171,0.9700000286102295,false,4000.0,NS_NET116_L_S3_1(8),4a6f6058-e654-464d-9367-2dca7185c6d7,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -f855cedf-e3f0-4c0f-addd-c57deb4f9e03,0.9700000286102295,false,4000.0,NS_NET116_L_S3_5(2),b9a28095-68f7-44c1-9ccc-6efc5ea84c59,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -cb0661c0-15fb-4475-9e0b-fbcf734e19c7,0.949999988079071,false,4000.0,NS_NET146_L_F1_(4),dd9d4153-c56f-4457-ad5e-46a48d4486b6,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -75b3f626-a1e0-47d6-9d2f-658500ac7630,0.9700000286102295,false,4000.0,NS_NET146_L_F1_(38),32507a10-1eed-4a3f-820c-bc187f3b052e,,,,cosPhiFixed:{(0.00,1.00)},2.0618600845336914,h0 -d5b04d0c-bdda-450b-b939-aec8af923eea,0.9700000286102295,false,4000.0,NS_NET136_L_S3_2(5),b46d4395-6724-4830-ba55-357e81fc2814,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -040e8122-1873-4622-952d-87ddef148e7e,0.949999988079071,false,4000.0,NS_NET126_L_F2_(1),196fe620-d4a7-45f9-93ad-0579e2bcbb9a,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -8052a8a9-d5a5-481e-a772-87f71ee8fbb9,0.9700000286102295,false,4000.0,NS_NET116_L_S2_3(3),df9c3d91-41a0-4e49-bb1f-1cd2a8fd9a2e,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -d3b5447b-a2ba-4f17-a10c-bd6354ab2338,0.9700000286102295,false,4000.0,NS_NET136_L_S1_2(5),032768b4-2426-4abf-806b-83813ac5137a,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -08a60d08-3a12-4263-a831-274f3b374cbb,0.9700000286102295,false,4000.0,MS3_Last_03,e4502c52-b4d7-4082-a583-b5688d8244e0,,,,cosPhiFixed:{(0.00,1.00)},400.0,h0 -bc54e624-8931-4188-9405-950e8deae723,0.9700000286102295,false,4000.0,NS_NET136_L_S1_3(6),eb95ff15-56db-4463-bb54-0ee131167812,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -62fad34c-a778-4140-a13d-dee5f0af255d,0.9700000286102295,false,4000.0,NS_NET126_L_F1_(33),b425b28e-48a8-4ec4-a15a-387fcfb79895,,,,cosPhiFixed:{(0.00,1.00)},2.0618600845336914,h0 -dc34b951-89f4-4e28-8f04-3e6522bfa0c9,0.9700000286102295,false,4000.0,NS_NET116_L_S1_4(7),b3a7431d-89b0-41cb-87a9-5853890796cd,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -c1049c54-1558-4d61-b47f-004b17e38770,0.949999988079071,false,4000.0,NS_NET126_L_F4_(16),b8fa1f73-223c-4b08-a140-44f12484cce3,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -07ba8eae-b76d-4034-b378-a3ef8134fc2b,0.949999988079071,false,4000.0,NS_NET126_L_F2_(27),daed3552-e382-4153-95be-97f17e2c53e5,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -9413bafe-4537-4247-ae22-8b3d03bf6309,0.949999988079071,false,4000.0,NS_NET146_L_F1_(16),09ac8949-2b79-41d7-b56f-a58f20036df2,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -ec81e030-4dc6-462a-9218-b5c791e82da7,0.949999988079071,false,4000.0,NS_NET146_L_F4_(5),d7023c15-adb7-4d56-9f86-b182611a47ef,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -2c90248b-ce63-492c-a2e1-2bd66a3f3287,0.9700000286102295,false,4000.0,NS_NET136_L_S3_5(8),3bc8235b-03b5-489b-81a2-58d520fbe28e,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -1107328f-3c13-4f0b-bde3-1d9580cf40db,0.949999988079071,false,4000.0,NS_NET146_L_F3_(12),f6eff0d1-af6b-46ce-b430-4d30976ec08f,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -8387b2f1-1e5f-4d85-8ca1-a78a44b09788,0.949999988079071,false,4000.0,NS_NET126_L_F2_(5),c8b1fd67-2f03-4153-8ed3-284e7a721ec5,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -73c923b1-49ef-49b6-863f-8badb0915f70,0.9700000286102295,false,4000.0,NS_NET136_L_S1_5(2),926d6113-933f-49e3-9529-a3035acdc9b2,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -f60efe06-32af-466f-9359-52cc8a59b985,0.949999988079071,false,4000.0,NS_NET126_L_F2_(17),c5457e35-ad81-4427-9d3a-99e4c44ccae8,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -12f5a119-679c-4198-b133-a4596816f6d1,0.949999988079071,false,4000.0,NS_NET146_L_F2_(14),9aaf57c4-cc5c-4a01-8c2c-72bc7e231cc9,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -acc82c39-9615-4a9b-83a5-76c4704cbee0,0.949999988079071,false,4000.0,NS_NET146_L_F3_(13),bdf97a4d-622c-4251-8183-8b1a696f376e,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -66f54dc9-83dc-435d-9c21-3361838e88d6,0.949999988079071,false,4000.0,NS_NET126_L_F3_(14),df8df8d2-3494-4da9-8d1b-f913d15f520f,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -f2f13d1d-3643-4d94-b519-94ea266b8816,0.9700000286102295,false,4000.0,NS_NET116_L_S3_5(3),b9a28095-68f7-44c1-9ccc-6efc5ea84c59,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -180167d5-7277-407f-a269-da5d2f1e30f0,0.9700000286102295,false,4000.0,NS_NET136_L_S2_2(3),cbcfc3b6-ac90-4215-975c-a033f5cf9912,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -99a0a508-d25a-4136-8300-40a676832d35,0.9700000286102295,false,4000.0,NS_NET136_L_S2_3(2),fd534474-cd65-47aa-8005-dc50d17d6920,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -146fba6b-bbbe-4f3b-ba51-2f3a2c31b118,0.949999988079071,false,4000.0,NS_NET126_L_F1_(22),c317a6cd-428b-4c36-8233-91d0c4e2717a,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -96dbdf3b-98cd-45de-92e0-3743c609b08e,0.9700000286102295,false,4000.0,NS_NET136_L_S1_4(2),ed4697fd-016c-40c2-a66b-e793878dadea,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -2c970df7-5644-4665-835a-825b8df8aaf4,0.949999988079071,false,4000.0,NS_NET146_L_F4_(4),00d4a837-f09c-41df-bed1-dfdb78387116,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -d24c0d3d-bfe6-4ae6-b707-eb781d7f7d2a,0.9700000286102295,false,4000.0,NS_NET136_L_S3_1(8),416fa5eb-2f72-46c3-978f-6a0ebb714a40,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -9367b934-d77d-4f3b-b5e6-0692ec6789a3,0.9700000286102295,false,4000.0,NS_NET116_L_S2_2(7),d53ff076-dadd-44f8-85d4-68f48991f7d0,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -397c7198-feee-4f46-9149-1ef9d31d9ba2,0.9700000286102295,false,4000.0,MS3_Last_01,bb59ca46-1f2e-41c9-9723-90b306f043cd,,,,cosPhiFixed:{(0.00,1.00)},400.0,h0 -6993add7-7f94-4f50-b87a-0b77dc41c421,0.9700000286102295,false,4000.0,NS_NET116_L_S1_3(6),e4c8b492-965c-4b5a-8d14-e8ff2c027ce9,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -a9bb2858-c56d-4594-a364-fcfaf448d0e5,0.9700000286102295,false,4000.0,NS_NET116_L_S3_3(7),d69efff2-ba8b-4aa6-a4a1-27267964147a,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -54f64be5-5966-4c66-8cfa-dd688e59e992,0.9700000286102295,false,4000.0,NS_NET116_L_S3_1(4),4a6f6058-e654-464d-9367-2dca7185c6d7,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -bc617ea3-3b85-4ba8-8b12-f243f077d6bb,0.9700000286102295,false,4000.0,NS_NET136_L_S2_4(4),81cd3f38-867b-4a71-ba22-cb33834e0e58,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -513e31ea-560d-4e33-b1ec-c1aca5f63339,0.9700000286102295,false,4000.0,NS_NET116_L_S1_3(5),e4c8b492-965c-4b5a-8d14-e8ff2c027ce9,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -5f825da0-bf7e-4846-9601-9049cac0f958,0.9700000286102295,false,4000.0,NS_NET136_L_S2_1(3),4e188ac9-e507-46b1-b8e2-376cf7c6ceb1,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -cdd0ae9a-c06e-4234-aea3-255f359dbe64,0.949999988079071,false,4000.0,NS_NET146_L_F3_(16),3ec2f2a0-36a3-4d11-88ee-cc4df001e876,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -50c89980-8da2-4e98-8602-e2f0b560e7c4,0.949999988079071,false,4000.0,NS_NET146_L_F1_(8),d5489e1b-0e7e-4ca9-a362-09c23576a622,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -a00956d5-6648-484c-a485-b3491c5181c2,0.949999988079071,false,4000.0,NS_NET126_L_F1_(20),36cda100-86ae-4a20-ac71-20af603ac0cf,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -ab77ac85-7990-4b93-a4e7-6fb812ad345a,0.949999988079071,false,4000.0,NS_NET146_L_F3_(3),8b92ad35-8b0a-49b9-9f66-f42ddfeb9c65,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -6559c5f4-c9ed-4f01-af36-72d18f04ca9a,0.949999988079071,false,4000.0,NS_NET126_L_F1_(15),41c0087f-ce27-4da3-97d2-92d711b639b4,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -bab50a41-657d-454b-91eb-3e64de845098,0.9700000286102295,false,4000.0,NS_NET136_L_S1_3(4),eb95ff15-56db-4463-bb54-0ee131167812,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -4958e21c-cf9d-4bae-ad3f-a1612171c398,0.949999988079071,false,4000.0,NS_NET126_L_F1_(7),fc7821d2-ac64-483e-b520-38d9971f4db0,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -3025fcc5-7a14-4bbe-93a1-0b2533306ea1,0.949999988079071,false,4000.0,NS_NET146_L_F1_(11),666757e2-292e-473c-ac9c-04c0786574bc,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -53347503-af44-482a-8b97-d1b638bb3634,0.949999988079071,false,4000.0,NS_NET146_L_F2_(23),ce513b50-b57a-41e2-b744-4c0fd2ae97d0,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -0de47e33-a4fb-4a86-839d-ec9ad49a8414,0.9700000286102295,false,4000.0,NS_NET136_L_S2_1(6),4e188ac9-e507-46b1-b8e2-376cf7c6ceb1,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -e035cc33-0a53-4dc4-b35d-f3f44764a5aa,0.9700000286102295,false,4000.0,NS_NET136_L_S2_4(1),81cd3f38-867b-4a71-ba22-cb33834e0e58,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -903c6f31-7c78-4d1e-b4ee-bf0dcbb9e938,0.949999988079071,false,4000.0,NS_NET146_L_F1_(10),6c24b464-790a-4aae-bb11-766718f07cd5,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -422a643a-04d2-480b-b107-e8582b36e641,0.9700000286102295,false,4000.0,NS_NET136_L_S2_4(7),81cd3f38-867b-4a71-ba22-cb33834e0e58,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -9993f48a-8ee2-49b7-af31-afbfa3690c45,0.9700000286102295,false,4000.0,MS3_Last_07,40b0f497-96a3-49d9-9503-8fa67a5b532a,,,,cosPhiFixed:{(0.00,1.00)},2400.0,h0 -f870937a-6644-4ef8-9bfd-15835471e775,0.9700000286102295,false,4000.0,NS_NET126_L_F1_(30),519ace7e-fd3f-4797-b14b-36c1694b00cd,,,,cosPhiFixed:{(0.00,1.00)},2.0618600845336914,h0 -ed173f7f-071e-4687-b7fe-b59616148ee3,0.949999988079071,false,4000.0,NS_NET126_L_F4_(17),7125de08-1d28-409a-8b23-023a0294def5,,,,cosPhiFixed:{(0.00,1.00)},0.10000000149011612,h0 -eb8622e3-0dd8-42e4-ab49-23b5cec0eb9c,0.9700000286102295,false,4000.0,NS_NET116_L_S3_4(8),36dccefc-f04c-493f-bb88-11343583bf9f,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -038c506d-59b4-406b-88b0-7f74719c55e7,0.9700000286102295,false,4000.0,NS_NET136_L_S3_5(3),3bc8235b-03b5-489b-81a2-58d520fbe28e,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -25be1a94-a0cc-4de5-acc4-097d9e8639ff,0.9700000286102295,false,4000.0,NS_NET116_L_S3_3(8),d69efff2-ba8b-4aa6-a4a1-27267964147a,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -449eaff2-92ca-4075-ae9f-2d517e7f0642,0.9700000286102295,false,4000.0,NS_NET116_L_S2_3(6),df9c3d91-41a0-4e49-bb1f-1cd2a8fd9a2e,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -d08a8e2d-0ab1-4d89-b111-6a8efe2a76af,0.9700000286102295,false,4000.0,NS_NET136_L_S1_1(1),535b3fa4-ed67-4ab1-9a68-e7db83e05967,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -a1a11124-0e04-4a0c-bab9-eb68c9f20a9e,0.949999988079071,false,4000.0,NS_NET126_L_F3_(28),e0a6c8e9-7d1f-4965-98b9-e543bacb6b83,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -5596dd40-f34f-4ec4-bf80-17fcf122a67b,0.9700000286102295,false,4000.0,NS_NET136_L_S1_5(6),926d6113-933f-49e3-9529-a3035acdc9b2,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -7f6b1274-7b1b-4313-8027-6fc4a31f34e0,0.9700000286102295,false,4000.0,NS_NET116_L_S2_4(4),e05c68b1-11cd-43fd-a4b2-31e4db380c78,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -9abc4242-f58f-474a-99fc-613e083e2589,0.9700000286102295,false,4000.0,NS_NET116_L_S1_3(4),e4c8b492-965c-4b5a-8d14-e8ff2c027ce9,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -e733ea74-1c51-4592-9fb3-cc2d0a007450,0.9700000286102295,false,4000.0,NS_NET116_L_S2_4(3),e05c68b1-11cd-43fd-a4b2-31e4db380c78,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -04063357-c213-4cc9-a870-9cc11ac4ad92,0.9700000286102295,false,4000.0,NS_NET116_L_S1_1(7),8a50fb37-81cf-47c9-8850-a12b4391e2e7,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -f231c4e2-2872-4d83-b486-894d846dc4d7,0.949999988079071,false,4000.0,NS_NET146_L_F2_(10),41414318-73e3-4bdc-8147-570a96b28d37,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -6f97361f-d4e6-45b5-9bf2-d880d42eae25,0.949999988079071,false,4000.0,NS_NET126_L_F3_(17),462ca5a4-7ac1-4dbe-a1cf-0bb6b9b9b717,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -7794309a-7ecd-436d-ae38-51bbdab5df11,0.949999988079071,false,4000.0,NS_NET146_L_F3_(6),01bdd8b2-145f-42b3-80e3-a2366dea1044,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -a6ce4a93-174a-4ca0-92bb-f09abc579d81,0.9700000286102295,false,4000.0,NS_NET136_L_S3_2(1),b46d4395-6724-4830-ba55-357e81fc2814,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -2d758bef-0a8a-4dac-aca6-556ace61ec84,0.949999988079071,false,4000.0,NS_NET126_L_F3_(32),7d44fe44-8c85-4b61-9d5c-0c4304e47ba8,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -beb7a9e2-4394-4808-af58-d984ab871f98,0.9700000286102295,false,4000.0,NS_NET116_L_S2_2(3),d53ff076-dadd-44f8-85d4-68f48991f7d0,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -66f00451-3542-41f2-adcf-24068c870afc,0.9700000286102295,false,4000.0,NS_NET136_L_S2_1(2),4e188ac9-e507-46b1-b8e2-376cf7c6ceb1,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -80d0b6a9-8d08-4262-81a0-83b13beaad45,0.9700000286102295,false,4000.0,MS1_Last_02,32b3bb19-c52a-4a19-890a-94a8918d38a9,,,,cosPhiFixed:{(0.00,1.00)},400.0,h0 -8d1ee87d-73a7-46eb-b174-602683d702d9,0.9700000286102295,false,4000.0,NS_NET146_L_F1_(28),012c9eee-86c2-494c-adcc-bbfc481e4a46,,,,cosPhiFixed:{(0.00,1.00)},2.0618600845336914,h0 -11bc6378-bb54-4ddb-846f-1488baaf1c00,0.9700000286102295,false,4000.0,NS_NET116_L_S3_3(4),d69efff2-ba8b-4aa6-a4a1-27267964147a,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -5ab2e1b6-7c4b-4cba-8528-94bda71c3dcd,0.9700000286102295,false,4000.0,MS1_Last_03,787237ad-b3a8-4f2c-ab70-31c5113d82d7,,,,cosPhiFixed:{(0.00,1.00)},400.0,h0 -2a9149a4-4778-41d8-8865-090499833016,0.9700000286102295,false,4000.0,NS_NET116_L_S2_1(1),39112046-8953-4e73-a5d9-6a8183a77436,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -79a2d93b-3583-4e90-bc40-9e7ff84bf0a2,0.949999988079071,false,4000.0,NS_NET146_L_F2_(15),d82fae59-844a-4c85-997e-326dd876137c,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -95be2f70-bd5a-4785-983c-2aa7eba6546b,0.949999988079071,false,4000.0,NS_NET146_L_F3_(26),bd288184-99d8-4233-bb3d-484f3922200a,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -f3168cab-a847-4314-9bf9-4dbe269c1c3c,0.949999988079071,false,4000.0,NS_NET146_L_F3_(8),6bc0dda8-25f4-48a6-9645-21e1eed5c6ff,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -2eca146b-7c7e-47fa-a0be-807b7fc72fd5,0.949999988079071,false,4000.0,NS_NET126_L_F3_(4),bf7e7268-2fb6-4948-ace6-9037ae148fa3,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -89971afc-919e-4153-92b2-f0a43ad0e535,0.9700000286102295,false,4000.0,NS_NET126_L_F1_(27),c81d6099-66b2-45d8-b8a4-c19ceb862f6e,,,,cosPhiFixed:{(0.00,1.00)},2.0618600845336914,h0 -a8e26f05-54f0-4da7-abfa-228661833e03,0.949999988079071,false,4000.0,NS_NET126_L_F3_(18),9502fd3e-c00f-48fa-8b56-c72d21f80f3c,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -72d00bfa-4967-485a-b5a3-519a6826fa9c,0.9700000286102295,false,4000.0,NS_NET116_L_S1_2(4),3e21f3a1-2c9c-4138-bcc9-466b004609ed,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -de2b452a-9eee-4481-b0f0-72d9ab56a4b5,0.9700000286102295,false,4000.0,NS_NET136_L_S2_3(1),fd534474-cd65-47aa-8005-dc50d17d6920,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -924dbbfa-abb0-42b2-83a9-15897bf5806e,0.9700000286102295,false,4000.0,NS_NET136_L_S3_3(5),2c5d4eda-6b33-4ad5-a135-7037baa7d6eb,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -8d326225-ff42-40ab-b58e-adc0cb32c9ff,0.949999988079071,false,4000.0,NS_NET146_L_F3_(9),6570535c-0d2e-4846-9951-21559902f67a,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -dd893829-b4af-4cf1-9d70-79ae68b91bf0,0.9700000286102295,false,4000.0,NS_NET136_L_S1_4(6),ed4697fd-016c-40c2-a66b-e793878dadea,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -ab476579-7fb3-408f-a065-73f6d2140fb2,0.9700000286102295,false,4000.0,NS_NET136_L_S3_5(5),3bc8235b-03b5-489b-81a2-58d520fbe28e,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -7b8abd75-9967-4505-b919-3accd78908e4,0.949999988079071,false,4000.0,NS_NET146_L_F3_(19),810bebb0-0d5c-4899-b213-3207be661248,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -58b9f934-f7c4-4335-9894-3c80d9e6b852,0.949999988079071,false,4000.0,HS_NET1_L_S3,33f29587-f63e-45b7-960b-037bda37a3cb,,,,cosPhiFixed:{(0.00,1.00)},42105.30078125,h0 -b8ad6547-aa55-4fca-ad0c-b5a0078b2203,0.949999988079071,false,4000.0,NS_NET126_L_F1_(14),b7baa286-cbe2-4143-a08f-4e025af47529,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -7e337720-59f5-4d3f-bf95-71c6228587f3,0.949999988079071,false,4000.0,NS_NET146_L_F1_(17),0d94a5ea-3a13-48ba-a27f-b2903841c334,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -d4d3ea3e-cce2-480b-9a7c-bbdd1a7c96ad,0.949999988079071,false,4000.0,NS_NET126_L_F1_(8),f717b05b-f4e7-43d9-af9e-638e2badee5a,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -3b51a0c6-060f-40ce-b207-6146fde8e724,0.9700000286102295,false,4000.0,NS_NET136_L_S2_1(8),4e188ac9-e507-46b1-b8e2-376cf7c6ceb1,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -89f93344-8dc3-46ea-805b-8c43bffc7577,0.949999988079071,false,4000.0,NS_NET126_L_F4_(15),55b3d03f-2204-4ab3-84cc-a28476868c9d,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -dc65cd27-84a2-49a6-aa22-d9c1968a72b4,0.949999988079071,false,4000.0,NS_NET126_L_F4_(8),75f2dfb9-75a0-496d-9c44-79e7df54c1df,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -ff0b995a-86ff-4f4d-987e-e475a64f2180,0.9700000286102295,false,4000.0,NS_NET116_L_S1_2(1),3e21f3a1-2c9c-4138-bcc9-466b004609ed,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -7c03d124-df4a-46c3-9b74-66bd888f750e,0.9700000286102295,false,4000.0,NS_NET116_L_S3_1(7),4a6f6058-e654-464d-9367-2dca7185c6d7,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -7a17120f-8522-4eca-95aa-f6b5d985103b,0.9700000286102295,false,4000.0,NS_NET116_L_S3_4(7),36dccefc-f04c-493f-bb88-11343583bf9f,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -86cbef43-bde0-41a6-a684-f42fdb4ba527,0.9700000286102295,false,4000.0,NS_NET136_L_S1_4(4),ed4697fd-016c-40c2-a66b-e793878dadea,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -f880a0dd-991c-4646-a0a4-c6c877171870,0.9700000286102295,false,4000.0,MS4_Last_04,890f2162-b4cb-49e7-a16f-4b552c5e245c,,,,cosPhiFixed:{(0.00,1.00)},320.0,h0 -c7a0e7d2-276f-41e7-bfbc-f11fac26a0e1,0.9700000286102295,false,4000.0,MS3_Last_05,86dfce49-05b2-4208-a6ae-877c3e98e6be,,,,cosPhiFixed:{(0.00,1.00)},320.0,h0 -32be027e-1ee2-41bc-9fe5-18daa3613efa,0.949999988079071,false,4000.0,NS_NET126_L_F1_(2),a7ebd30b-b843-405f-9fae-ca6b489601f9,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -5f1b7472-2a01-4203-8318-878b1a4460c5,0.9700000286102295,false,4000.0,NS_NET116_L_S3_4(5),36dccefc-f04c-493f-bb88-11343583bf9f,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -cb65c2bc-fb36-4338-9a13-34bd999f4fa5,0.9700000286102295,false,4000.0,NS_NET116_L_S2_4(8),e05c68b1-11cd-43fd-a4b2-31e4db380c78,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -a12570e4-afeb-4af8-a86c-9e804eea4886,0.9700000286102295,false,4000.0,NS_NET116_L_S3_5(1),b9a28095-68f7-44c1-9ccc-6efc5ea84c59,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -3ce5abcb-0eb1-403f-9fca-90d255619cc5,0.949999988079071,false,4000.0,NS_NET146_L_F2_(13),49e14db3-a4bc-464a-b606-653ac8a604dd,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -1308b834-4b0c-4c91-b5fc-8529368005ea,0.949999988079071,false,4000.0,NS_NET146_L_F2_(25),011e3794-3341-4376-839c-3f5a452e15ab,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -9f0d4b5f-7563-40bc-b20e-bc54a96e9019,0.9700000286102295,false,4000.0,NS_NET146_L_F1_(30),9f95c733-71e2-4bf0-a27a-70144518ea2c,,,,cosPhiFixed:{(0.00,1.00)},2.0618600845336914,h0 -8f0150c7-b217-43ca-85d5-c1e4d2e903d0,0.9700000286102295,false,4000.0,NS_NET136_L_S3_1(2),416fa5eb-2f72-46c3-978f-6a0ebb714a40,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -67379832-1cfb-4015-ac96-0fe499463c42,0.949999988079071,false,4000.0,NS_NET126_L_F4_(3),1cb45ba0-d2c2-45a6-9bb2-5f374e30a6e9,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -12c58b41-2ebb-4bc0-8ca2-a3693d5d5f8b,0.949999988079071,false,4000.0,NS_NET126_L_F3_(1),2fe5100e-d4e8-4bc4-9c7c-bcc0fc56f518,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -0610df61-bdb9-45d1-ab48-a72dca4079c4,0.949999988079071,false,4000.0,NS_NET146_L_F1_(1),4f28e734-5148-4caf-ac64-270231740cbf,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -28a6872b-abf5-412e-b887-b0503addaa7a,0.9700000286102295,false,4000.0,NS_NET116_L_S3_3(5),d69efff2-ba8b-4aa6-a4a1-27267964147a,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -599e7b5f-7a78-4bb4-a3c3-e6f2779bbda2,0.9700000286102295,false,4000.0,NS_NET136_L_S3_5(2),3bc8235b-03b5-489b-81a2-58d520fbe28e,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -0944b3b6-15e3-4704-b50d-fa1e407ade7e,0.9700000286102295,false,4000.0,NS_NET116_L_S1_3(7),e4c8b492-965c-4b5a-8d14-e8ff2c027ce9,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -3a5e7e35-53ad-48da-89b9-98342a9875ac,0.9700000286102295,false,4000.0,NS_NET136_L_S1_3(7),eb95ff15-56db-4463-bb54-0ee131167812,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -c3434742-e4f0-49e5-baa7-c1e3045c732c,0.9700000286102295,false,4000.0,NS_NET116_L_S1_5(1),92301422-94ae-48ab-89c7-a69eea9450b2,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -eed8fa68-08b5-49f3-a6d7-2632fe7b13b9,0.9700000286102295,false,4000.0,NS_NET116_L_S3_1(3),4a6f6058-e654-464d-9367-2dca7185c6d7,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -3e3225f9-2dd9-402d-9a0d-1d8cde60b1f6,0.949999988079071,false,4000.0,NS_NET126_L_F2_(4),cdda8fa5-9a18-4f3e-951d-1ec0009191b4,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -245666cd-881b-44ca-9b47-536c96e15bce,0.9700000286102295,false,4000.0,NS_NET116_L_S2_3(2),df9c3d91-41a0-4e49-bb1f-1cd2a8fd9a2e,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -9b4f4a8b-3aaa-4b77-afdb-049d2b83869b,0.9700000286102295,false,4000.0,NS_NET136_L_S3_4(6),2a816043-d1d2-44a6-8a9b-f61a4933997b,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -d95c7612-af94-4ac4-94a0-a1dca839f33a,0.9700000286102295,false,4000.0,NS_NET116_L_S3_2(4),550ebca7-1455-44eb-9431-ffbf08e58bd4,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -5c3fb165-f374-44fa-802e-e82e5a2538f0,0.9700000286102295,false,4000.0,NS_NET136_L_S2_2(4),cbcfc3b6-ac90-4215-975c-a033f5cf9912,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -550f9346-fe14-46ef-bd54-00980834e0d6,0.9700000286102295,false,4000.0,NS_NET126_L_F1_(34),17f7a477-d9c7-4f58-8ba0-1a2694dcc874,,,,cosPhiFixed:{(0.00,1.00)},2.0618600845336914,h0 -be985e5e-19b6-49c4-bb64-f37a627be13b,0.9700000286102295,false,4000.0,NS_NET126_L_F1_(35),c5f7ffbc-2e23-46d4-9e0c-356008e5ff56,,,,cosPhiFixed:{(0.00,1.00)},2.0618600845336914,h0 -9e5845cb-9ad1-42c6-8630-724375a4e323,0.9700000286102295,false,4000.0,NS_NET136_L_S1_1(8),535b3fa4-ed67-4ab1-9a68-e7db83e05967,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -10963efb-44d7-49bf-b926-c2d29239de60,0.949999988079071,false,4000.0,NS_NET126_L_F2_(3),8f422111-67d7-42f0-9f80-fbd0ec64c4fc,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -11e776fa-ecc1-4332-821f-d7e56758b988,0.9700000286102295,false,4000.0,NS_NET116_L_S2_2(1),d53ff076-dadd-44f8-85d4-68f48991f7d0,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -689527be-31a0-4791-970d-8542e367401c,0.949999988079071,false,4000.0,NS_NET126_L_F2_(23),9b509c7d-4647-40fd-b03e-7ab919215cc6,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -a610a50c-de39-46e6-b53b-95e3868d1072,0.949999988079071,false,4000.0,NS_NET126_L_F2_(11),6678c226-c5d2-4ce3-9728-dc1163be799f,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -3857ce77-a630-4b43-a1a1-6bebc0817e1d,0.9700000286102295,false,4000.0,NS_NET136_L_S2_4(2),81cd3f38-867b-4a71-ba22-cb33834e0e58,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -63fb1af5-91e5-472b-b798-b2846cf701ba,0.949999988079071,false,4000.0,NS_NET146_L_F2_(16),8f2ba96f-a47a-46d3-b5a1-d19de0a32419,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -1a88ba6f-9005-432d-9a8f-54a48c90015a,0.9700000286102295,false,4000.0,MS4_Last_05,ee384ace-040e-4f21-8a8a-d702ab51af55,,,,cosPhiFixed:{(0.00,1.00)},320.0,h0 -6bd61b8c-2b53-4fc8-8e35-b17ed81ba8c9,0.9700000286102295,false,4000.0,NS_NET136_L_S3_4(7),2a816043-d1d2-44a6-8a9b-f61a4933997b,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -d5e593f1-727e-4983-8abe-92a328aa203b,0.9700000286102295,false,4000.0,NS_NET116_L_S2_5(2),32bd37df-255b-4eb2-9d16-5b711132eee6,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -b52b4bea-014e-4aad-8481-2f2761957f69,0.9700000286102295,false,4000.0,NS_NET136_L_S3_4(4),2a816043-d1d2-44a6-8a9b-f61a4933997b,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -ef07774d-107b-4536-8d1d-45c28f755a80,0.9700000286102295,false,4000.0,NS_NET136_L_S3_3(6),2c5d4eda-6b33-4ad5-a135-7037baa7d6eb,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -46644e3e-b00c-4707-ae8d-94fed9f0adcd,0.9700000286102295,false,4000.0,NS_NET126_L_F1_(38),06b7f21a-d6d7-4ec0-94c6-141845f14986,,,,cosPhiFixed:{(0.00,1.00)},2.0618600845336914,h0 -f2284780-6019-4864-bf29-915330717f5b,0.9700000286102295,false,4000.0,NS_NET116_L_S2_5(5),32bd37df-255b-4eb2-9d16-5b711132eee6,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -8c2ea045-0890-4ee5-8d66-0ce5f5eba7d1,0.949999988079071,false,4000.0,NS_NET146_L_F4_(12),f8dd541b-4a4d-417e-89ff-a9650ee3aac2,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -598f0d53-7c8f-435b-b333-95b6f4d359f2,0.949999988079071,false,4000.0,NS_NET126_L_F3_(31),67af7db0-0fd8-4657-bb4f-43a2141b9f73,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -520e2b61-ef52-406a-bc3d-83fd47da2696,0.949999988079071,false,4000.0,NS_NET146_L_F4_(13),b608d71e-3ede-4156-a015-3f6e1d22242a,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -8bad5752-c9c1-4669-802d-b1c4c7bbb909,0.9700000286102295,false,4000.0,NS_NET136_L_S3_1(5),416fa5eb-2f72-46c3-978f-6a0ebb714a40,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -3df803d8-4af6-426e-a51a-4b736ff06d51,0.949999988079071,false,4000.0,NS_NET146_L_F2_(20),2aa2d409-8bb2-477d-ac7a-6439552e136a,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -59f1999e-008d-47f0-b99d-1305fcb8f525,0.9700000286102295,false,4000.0,NS_NET136_L_S1_4(7),ed4697fd-016c-40c2-a66b-e793878dadea,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -deb6456a-d472-4f1e-8698-006e8cd51dfc,0.9700000286102295,false,4000.0,NS_NET136_L_S1_4(5),ed4697fd-016c-40c2-a66b-e793878dadea,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -0290a7de-8c73-44d4-9a06-cf469d20c90c,0.9700000286102295,false,4000.0,NS_NET116_L_S1_4(3),b3a7431d-89b0-41cb-87a9-5853890796cd,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -ea515ef0-c8e1-4e3f-9420-577ba394c7dc,0.9700000286102295,false,4000.0,NS_NET136_L_S3_3(7),2c5d4eda-6b33-4ad5-a135-7037baa7d6eb,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -666ac620-2151-430e-a9a1-624be6c61cb8,0.9700000286102295,false,4000.0,NS_NET116_L_S3_5(5),b9a28095-68f7-44c1-9ccc-6efc5ea84c59,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -2f4df67a-e33a-4a1b-9caa-41bfb4408b8c,0.9700000286102295,false,4000.0,NS_NET116_L_S2_2(8),d53ff076-dadd-44f8-85d4-68f48991f7d0,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -8d50a47b-95ce-4a8e-84a3-80d5781dcc53,0.9700000286102295,false,4000.0,MS4_Last_01,77fc154f-f41c-4e75-bbb1-b7fca68b2f4e,,,,cosPhiFixed:{(0.00,1.00)},400.0,h0 -4cbcffbf-d9c8-463a-8f11-6990fbda235e,0.9700000286102295,false,4000.0,NS_NET116_L_S1_1(2),8a50fb37-81cf-47c9-8850-a12b4391e2e7,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -63374b45-aa28-4e06-85c2-704c00754ba8,0.949999988079071,false,4000.0,NS_NET146_L_F1_(20),7d45f0ab-1e6b-452f-b665-c4846cf046f5,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -16f7000e-1f95-4003-bbbf-8c73cfd02763,0.9700000286102295,false,4000.0,NS_NET116_L_S3_2(2),550ebca7-1455-44eb-9431-ffbf08e58bd4,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -3ad0235e-751b-4682-89a5-b359aef0dd98,0.9700000286102295,false,4000.0,NS_NET136_L_S1_3(2),eb95ff15-56db-4463-bb54-0ee131167812,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -2b02fad4-245d-4ada-ae5f-0252f2aa59f1,0.949999988079071,false,4000.0,NS_NET146_L_F2_(11),f26b5511-3c50-42d5-97c2-be408330eb84,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -62b0b771-b773-4b25-af1d-bbd8a7ad68d4,0.949999988079071,false,4000.0,NS_NET126_L_F2_(8),366a70fb-8d7f-4201-9eca-0fcbc839239d,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -aff03ab3-9595-499f-931c-8730b1350a2c,0.949999988079071,false,4000.0,NS_NET146_L_F2_(12),8254d91b-e5da-4402-bb8f-301eafa09d28,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -81a6ed8d-f29e-4478-bbf3-ccb6514922f2,0.949999988079071,false,4000.0,NS_NET146_L_F4_(7),bea7ca63-3ae4-4280-8127-fe2c7fd5ea2d,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -a7de4997-eddc-4306-b1ac-982c1872863b,0.949999988079071,false,4000.0,NS_NET146_L_F1_(6),e3c3c6a3-c383-4dbb-9b3f-a14125615386,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -4642d648-b0dd-4597-a3bd-2cc1fce74f27,0.9700000286102295,false,4000.0,NS_NET116_L_S3_1(1),4a6f6058-e654-464d-9367-2dca7185c6d7,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -1fb9be59-d27c-4748-a090-db5a58063d82,0.949999988079071,false,4000.0,NS_NET126_L_F4_(6),e3a40690-d085-4796-9fcb-48d776e58594,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -d957a9c6-500e-457d-918b-7f6c4e560bbc,0.949999988079071,false,4000.0,NS_NET146_L_F1_(15),00bbc353-d47e-4865-a696-fe5d29b9e6a2,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -5aeaccc2-f9cd-4292-9b9a-2e05d5c63fe4,0.9700000286102295,false,4000.0,NS_NET116_L_S1_2(6),3e21f3a1-2c9c-4138-bcc9-466b004609ed,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -209cebb3-6706-49d0-af2c-b2ae23ca3873,0.9700000286102295,false,4000.0,MS4_Last_03,85ea3976-1779-4d46-bd6f-dfd36427ebdf,,,,cosPhiFixed:{(0.00,1.00)},400.0,h0 -17a02ab8-32b2-436d-8aab-04fbd3809c87,0.949999988079071,false,4000.0,NS_NET146_L_F3_(25),c6c177b0-5004-4db0-8cde-6293330a4757,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -1fbefcb1-57ec-4b86-8b7e-c892f0e6b179,0.9700000286102295,false,4000.0,NS_NET116_L_S3_4(6),36dccefc-f04c-493f-bb88-11343583bf9f,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -fd2e19b6-d5e3-4776-9456-8787a2160d9d,0.9700000286102295,false,4000.0,NS_NET116_L_S1_4(1),b3a7431d-89b0-41cb-87a9-5853890796cd,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -2ab66e57-dd5f-4295-a6f5-f017fb4db8b1,0.9700000286102295,false,4000.0,NS_NET136_L_S3_3(8),2c5d4eda-6b33-4ad5-a135-7037baa7d6eb,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -c7834ac4-2f72-483e-8ecf-1d0ce715716b,0.9700000286102295,false,4000.0,NS_NET116_L_S2_1(6),39112046-8953-4e73-a5d9-6a8183a77436,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -b89b8560-b729-46d5-8aa1-3c678dd30be4,0.9700000286102295,false,4000.0,NS_NET136_L_S2_4(5),81cd3f38-867b-4a71-ba22-cb33834e0e58,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -3b63c80f-a5c6-439b-97be-4e1efda58ccd,0.949999988079071,false,4000.0,NS_NET146_L_F2_(22),5862f526-783a-4218-a463-3cbf5de8dade,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -5f2d65fc-7e92-497e-8c51-ead1985d66fa,0.949999988079071,false,4000.0,NS_NET126_L_F2_(24),625bdd2c-a75f-46ef-850c-ca4704d56e55,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -c27ac6bb-5227-42d4-832f-985d69bc9c4e,0.949999988079071,false,4000.0,NS_NET146_L_F3_(1),22e58399-428f-4633-9ee4-e5fa0db68d6d,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -f1804def-a6f6-4603-bfd3-52968a2de732,0.9700000286102295,false,4000.0,MS2_Last_07,14a8dc4c-0906-402f-b073-6d6d4725d0cb,,,,cosPhiFixed:{(0.00,1.00)},2400.0,h0 -bcb5abf4-7b31-4860-af53-78ec457f21a2,0.949999988079071,false,4000.0,NS_NET146_L_F3_(30),7cff7ac7-2d18-4c4c-8e1b-893bb050c1ed,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -c58dc7e4-f6c5-47e1-a914-e566b8aa6385,0.9700000286102295,false,4000.0,NS_NET136_L_S2_2(1),cbcfc3b6-ac90-4215-975c-a033f5cf9912,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -ee726dbd-8a70-4d50-8cc3-cdda596166c7,0.9700000286102295,false,4000.0,NS_NET136_L_S3_3(3),2c5d4eda-6b33-4ad5-a135-7037baa7d6eb,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -c9689bd8-6717-49d5-90d9-a6245b5116e6,0.9700000286102295,false,4000.0,NS_NET116_L_S1_5(3),92301422-94ae-48ab-89c7-a69eea9450b2,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -c3df03ac-0dff-4304-b327-3e88d023f692,0.949999988079071,false,4000.0,NS_NET126_L_F1_(25),3a2f199c-2966-4b9a-939b-3a6c9924341c,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -72e4504c-0362-4fe0-a6be-43870f627f7f,0.9700000286102295,false,4000.0,NS_NET136_L_S1_5(8),926d6113-933f-49e3-9529-a3035acdc9b2,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -b3ce3d49-d4d5-4b76-a589-02d0c7faf5a5,0.9700000286102295,false,4000.0,NS_NET136_L_S2_5(6),c5af5a34-211a-4105-a8e1-f447140073c6,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -de3eef0c-2f09-4f57-a04b-dae5011fac7a,0.949999988079071,false,4000.0,NS_NET126_L_F4_(12),6a4547a8-630b-46e4-8144-9cd649e67c07,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -ab0d8c5c-fc68-4ae0-87a9-8edfa3b25339,0.949999988079071,false,4000.0,NS_NET126_L_F1_(4),ff947647-b551-41ae-bcfd-6af228250c96,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -7b040b43-011a-4402-a176-9b9b41ce0c37,0.9700000286102295,false,4000.0,NS_NET116_L_S2_3(1),df9c3d91-41a0-4e49-bb1f-1cd2a8fd9a2e,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -b47f1063-12e8-4b1f-a015-6c5be821a24e,0.949999988079071,false,4000.0,NS_NET126_L_F3_(22),61ee5ff6-eb38-4b27-a3f6-cb574d1f8b41,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -af4c1bfe-4e4c-437d-9eff-42060aaf4027,0.9700000286102295,false,4000.0,NS_NET136_L_S2_1(7),4e188ac9-e507-46b1-b8e2-376cf7c6ceb1,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -4c7ee262-a021-408a-aada-27677feeeec9,0.949999988079071,false,4000.0,NS_NET126_L_F1_(17),5fe9c522-37d0-48f8-b3b8-e91b956e39f6,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -3c9a2f9a-8cd0-42f2-9d16-f6314c741aa3,0.9700000286102295,false,4000.0,NS_NET136_L_S2_1(4),4e188ac9-e507-46b1-b8e2-376cf7c6ceb1,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -93128545-6977-41fa-8e20-5d7a930d80c9,0.9700000286102295,false,4000.0,NS_NET136_L_S1_2(3),032768b4-2426-4abf-806b-83813ac5137a,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -759ff1e6-5ad6-4701-bbe1-059c08a1781d,0.949999988079071,false,4000.0,NS_NET146_L_F4_(15),576840db-7d3c-417b-b587-28b222e740e1,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -b16bea09-e042-4bd1-837e-78125b0085dc,0.949999988079071,false,4000.0,NS_NET126_L_F1_(13),847fd5fc-b515-4a9d-8a6f-66df1e71ded2,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -7cee8d98-be5b-400c-9655-409e1eae9f6d,0.9700000286102295,false,4000.0,NS_NET136_L_S3_2(6),b46d4395-6724-4830-ba55-357e81fc2814,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -0c62dc7f-45a7-44e3-9240-f9ff9d62e4a0,0.949999988079071,false,4000.0,NS_NET126_L_F4_(13),da79c960-d35a-4193-9b06-2d4d57051706,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -bee4283a-0d36-4f98-a837-23d0667a6675,0.949999988079071,false,4000.0,NS_NET126_L_F3_(9),bbd210a5-eb85-4616-bdd0-72bbd3ed7ef9,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -a82e1da2-1af2-40d8-b8f9-b4027118d029,0.9700000286102295,false,4000.0,NS_NET116_L_S2_4(5),e05c68b1-11cd-43fd-a4b2-31e4db380c78,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -ef6f6592-1b85-4204-82e1-c33a6ed3d582,0.9700000286102295,false,4000.0,NS_NET136_L_S1_2(1),032768b4-2426-4abf-806b-83813ac5137a,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -66f30a61-7722-48a7-a527-99ff55e12754,0.9700000286102295,false,4000.0,NS_NET136_L_S1_4(8),ed4697fd-016c-40c2-a66b-e793878dadea,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -3f37f3bc-f9cf-4a55-96e4-ee4be9f22a63,0.9700000286102295,false,4000.0,NS_NET116_L_S2_4(2),e05c68b1-11cd-43fd-a4b2-31e4db380c78,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -388ecdb9-b7e1-429e-990b-b5124fac12cf,0.949999988079071,false,4000.0,NS_NET146_L_F2_(6),5071dd8c-bbc1-4c8d-a180-4492f80e183d,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -5012a529-b7d2-4f9e-a2d4-90641470cba2,0.9700000286102295,false,4000.0,NS_NET136_L_S3_2(8),b46d4395-6724-4830-ba55-357e81fc2814,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -3f903ef1-047f-4f28-9d9f-c35b2c440315,0.9700000286102295,false,4000.0,NS_NET116_L_S1_4(8),b3a7431d-89b0-41cb-87a9-5853890796cd,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -5f56df23-f5b3-42d0-9896-85015f7b1274,0.949999988079071,false,4000.0,NS_NET126_L_F2_(28),5d1cce49-e000-4a33-a0ea-f3685f8cc5a3,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -a265d035-d8ea-41e0-ad10-04e064b9a968,0.9700000286102295,false,4000.0,NS_NET136_L_S3_4(5),2a816043-d1d2-44a6-8a9b-f61a4933997b,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -95a1e026-be40-4209-9752-fbab3a626b87,0.949999988079071,false,4000.0,NS_NET146_L_F1_(2),ab3645a7-af26-480d-b1bd-5b0fa00dc83f,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -e9660cc3-b2b6-4b8d-8673-dd3bcb6305fe,0.9700000286102295,false,4000.0,NS_NET116_L_S2_1(2),39112046-8953-4e73-a5d9-6a8183a77436,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -fd17352b-b2ad-4e77-92cf-08b48a1ba757,0.9700000286102295,false,4000.0,NS_NET116_L_S1_2(2),3e21f3a1-2c9c-4138-bcc9-466b004609ed,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -080e6ab5-8021-43c0-bf9f-2424ec0a1de8,0.949999988079071,false,4000.0,NS_NET126_L_F3_(30),443c1513-fdeb-4e29-ae89-5ea47c0b1d3f,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -0ccf950e-a9bf-4de8-ac3f-5ca04a3f0b60,0.9700000286102295,false,4000.0,NS_NET136_L_S3_5(6),3bc8235b-03b5-489b-81a2-58d520fbe28e,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -62a4a30c-7bf2-4813-a00e-7002b8c56832,0.9700000286102295,false,4000.0,NS_NET136_L_S1_3(3),eb95ff15-56db-4463-bb54-0ee131167812,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -3feb112d-8a47-49eb-b719-d7226b6fe7a0,0.949999988079071,false,4000.0,NS_NET146_L_F2_(18),21359dd1-7a23-4932-b656-c196fbffe751,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -94203400-1579-4cc0-9395-ac67f94c6c01,0.9700000286102295,false,4000.0,NS_NET136_L_S1_4(3),ed4697fd-016c-40c2-a66b-e793878dadea,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -7b6cd13c-8f54-421e-b2e9-5888f181737b,0.9700000286102295,false,4000.0,NS_NET146_L_F1_(27),9baae5ff-40e3-48cb-9ddf-de6d1c133e13,,,,cosPhiFixed:{(0.00,1.00)},2.0618600845336914,h0 -3f47dbb5-8254-43d1-83a8-21385cb666dd,0.949999988079071,false,4000.0,NS_NET126_L_F2_(25),1dcddd06-f41a-405b-9686-7f7942852196,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -4dca3b1d-5d24-444a-b4df-f4fa23b9ef1b,0.949999988079071,false,4000.0,HS_NET1_L_S1,00d03670-7833-47ee-ad52-04d18d1c64fd,,,,cosPhiFixed:{(0.00,1.00)},42105.30078125,h0 -12c85bfd-a5a1-4812-b168-86b94f624f18,0.9700000286102295,false,4000.0,NS_NET116_L_S2_3(8),df9c3d91-41a0-4e49-bb1f-1cd2a8fd9a2e,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -3c309ec9-42a4-441d-8c0e-e29cefa6bf18,0.949999988079071,false,4000.0,NS_NET126_L_F1_(5),eb21d716-1b54-4dba-bdc2-d1f6752aef85,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -8bee3a68-8990-46eb-9230-067111caceb5,0.9700000286102295,false,4000.0,NS_NET136_L_S2_3(3),fd534474-cd65-47aa-8005-dc50d17d6920,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -b9fb3d41-bb0e-4c4c-bff5-1b50d40efc33,0.949999988079071,false,4000.0,NS_NET126_L_F1_(3),04f29760-9e52-4943-8563-62e1fbd5ed52,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -36d59a0a-17a5-4955-996b-e3aafb86f4f1,0.949999988079071,false,4000.0,NS_NET126_L_F3_(23),33f346bd-7dc5-4140-8ed0-7d7db4cc0f6f,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -9b0cca4d-f27f-4190-b35f-a84fa09ac157,0.949999988079071,false,4000.0,NS_NET146_L_F1_(14),b73208dd-f4a8-4e90-bf2d-7ea67a89525a,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -ea51cb96-068f-4359-b1d0-27438ce87b49,0.9700000286102295,false,4000.0,NS_NET146_L_F1_(31),5e213f42-d93e-45c5-a295-adbe09105746,,,,cosPhiFixed:{(0.00,1.00)},2.0618600845336914,h0 -7513eb4a-3244-40fb-b500-0132947a02e0,0.9700000286102295,false,4000.0,MS3_Last_02,b6b1b9fc-e7d8-492d-8601-84c1e756bd83,,,,cosPhiFixed:{(0.00,1.00)},400.0,h0 -8a5a7de2-d61c-4172-b917-7404a2aba038,0.9700000286102295,false,4000.0,NS_NET116_L_S3_4(3),36dccefc-f04c-493f-bb88-11343583bf9f,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -0cdea42f-57da-4a8a-bd83-c4252b7868bf,0.9700000286102295,false,4000.0,NS_NET136_L_S2_3(8),fd534474-cd65-47aa-8005-dc50d17d6920,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -9d2c5b78-ad86-4055-b74b-e5b24f89a75b,0.9700000286102295,false,4000.0,NS_NET116_L_S2_1(4),39112046-8953-4e73-a5d9-6a8183a77436,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -2efedcfd-4972-4d13-9d62-180f1b9a76ad,0.9700000286102295,false,4000.0,NS_NET116_L_S2_5(1),32bd37df-255b-4eb2-9d16-5b711132eee6,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -5d4b96bf-a6ad-4026-b97a-4e6d77896480,0.9700000286102295,false,4000.0,NS_NET116_L_S2_2(4),d53ff076-dadd-44f8-85d4-68f48991f7d0,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -aaa0a903-46f7-4109-adb3-9f43398fc932,0.949999988079071,false,4000.0,NS_NET126_L_F4_(11),95ced3b5-69fd-4171-9c34-f18802064e22,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -04c0cbcf-4e9d-4608-bb92-6ab97e59ece7,0.9700000286102295,false,4000.0,NS_NET116_L_S3_4(4),36dccefc-f04c-493f-bb88-11343583bf9f,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -1a2d5842-96f6-452f-aa82-6064618d5f49,0.949999988079071,false,4000.0,NS_NET126_L_F3_(29),f0f8f187-5dbf-46ab-8a43-d6169ab5042d,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -5d930bf2-0b63-4821-bd6c-02383e3b4220,0.9700000286102295,false,4000.0,MS1_Last_04,1396cb4c-cee7-4116-97c9-290f98785719,,,,cosPhiFixed:{(0.00,1.00)},320.0,h0 -24de669f-4786-4388-ae36-aaef1ce40ffa,0.949999988079071,false,4000.0,NS_NET126_L_F3_(27),d5b861a6-2a5b-4dec-a66e-adbfc6d62873,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -860a37f7-7add-4613-bef4-326ee5ea328b,0.949999988079071,false,4000.0,NS_NET146_L_F1_(25),2287c2a8-c2d0-4c63-80b5-6b66a1288df8,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -00a6de01-2304-484b-90f2-5abb044167a3,0.9700000286102295,false,4000.0,NS_NET116_L_S2_2(2),d53ff076-dadd-44f8-85d4-68f48991f7d0,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -8e9debcb-ce25-450c-b016-170bb7622008,0.9700000286102295,false,4000.0,NS_NET136_L_S3_2(4),b46d4395-6724-4830-ba55-357e81fc2814,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -2550ae33-6540-4602-b59a-a46c49747c97,0.949999988079071,false,4000.0,NS_NET146_L_F4_(9),9b889b73-c108-4b38-b6eb-3377841e0c83,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -692728c7-5ecf-4c0a-8ead-ae19fc029ba4,0.9700000286102295,false,4000.0,NS_NET116_L_S2_5(6),32bd37df-255b-4eb2-9d16-5b711132eee6,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -09a47013-bac7-4879-9b8a-9dd854ea9786,0.949999988079071,false,4000.0,NS_NET126_L_F1_(23),94713e6c-c47e-422c-8ab3-2a2903b7dcd2,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -c3d643d1-1b2d-4f9f-838d-5b1ce270fc33,0.949999988079071,false,4000.0,NS_NET126_L_F2_(9),a286f73a-20ee-4056-8129-c7963b34ecd9,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -099f4cde-75ca-4928-904d-37717b5b1b02,0.9700000286102295,false,4000.0,NS_NET116_L_S2_1(3),39112046-8953-4e73-a5d9-6a8183a77436,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -9ae56e43-54fc-4ab7-8989-abbc14596fd3,0.949999988079071,false,4000.0,NS_NET146_L_F3_(20),0ebf0088-f596-4cd1-9ae0-5da02dc40335,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -1469946c-101e-42e9-9e48-28801e9610af,0.9700000286102295,false,4000.0,NS_NET126_L_F1_(28),0c266541-6235-4d01-8258-e763c58af6c7,,,,cosPhiFixed:{(0.00,1.00)},2.0618600845336914,h0 -02e0c339-6dfd-4cbc-bebf-56b850053a7c,0.949999988079071,false,4000.0,NS_NET146_L_F1_(3),b237dd88-bcba-4a7c-aee6-c0c3e151e14e,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -a0147111-39c4-465a-8a10-48d1de1d349c,0.949999988079071,false,4000.0,NS_NET126_L_F3_(19),922a6375-b97c-412e-a6c9-b0ea55a23f76,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -b03db97b-06ef-406c-a5b3-7e9ca9f7bf66,0.949999988079071,false,4000.0,NS_NET146_L_F4_(17),155bb2dc-0121-413e-ab42-67c2ed5ce6ea,,,,cosPhiFixed:{(0.00,1.00)},0.10000000149011612,h0 -000e54d4-cf92-4cdb-9777-3d40d320d2b6,0.9700000286102295,false,4000.0,NS_NET116_L_S1_4(6),b3a7431d-89b0-41cb-87a9-5853890796cd,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -6c4c7e65-4598-4855-b057-25773ffdf5f2,0.9700000286102295,false,4000.0,NS_NET116_L_S1_5(6),92301422-94ae-48ab-89c7-a69eea9450b2,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -9d19bae7-6fa1-4620-8ec2-38cae5596b9e,0.9700000286102295,false,4000.0,NS_NET116_L_S1_5(7),92301422-94ae-48ab-89c7-a69eea9450b2,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -076b9055-3329-4e88-a1a0-93ad904e72a2,0.9700000286102295,false,4000.0,NS_NET116_L_S3_2(8),550ebca7-1455-44eb-9431-ffbf08e58bd4,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -3fed7598-a77e-4929-9bb3-687e51346cfd,0.9700000286102295,false,4000.0,NS_NET116_L_S3_2(3),550ebca7-1455-44eb-9431-ffbf08e58bd4,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -ef94c79c-ade7-4215-ba16-0bb14d558aab,0.949999988079071,false,4000.0,NS_NET146_L_F1_(13),f1e55c8b-357f-45a7-9d57-e299f9b207f3,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -ff5bf65c-e880-4a49-a286-fd51ce1f48b7,0.9700000286102295,false,4000.0,MS2_Last_03,69f7846e-d979-4c77-8a3b-e2ec2e1f6e76,,,,cosPhiFixed:{(0.00,1.00)},400.0,h0 -5cffadab-94f6-4d98-a804-9d74189982cc,0.9700000286102295,false,4000.0,NS_NET116_L_S3_5(7),b9a28095-68f7-44c1-9ccc-6efc5ea84c59,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -a08a45bb-552f-435d-b614-aed657073527,0.949999988079071,false,4000.0,NS_NET126_L_F2_(15),2645e336-b0df-4d1e-a0ea-375444488f06,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -2dcdb711-8872-4e51-ab4c-ef23c685674d,0.9700000286102295,false,4000.0,NS_NET146_L_F1_(35),f5ae3279-fe21-4bb7-849a-eaacb0546b0e,,,,cosPhiFixed:{(0.00,1.00)},2.0618600845336914,h0 -d4004ab6-3b00-4eeb-b62a-4ec28dc9cec6,0.949999988079071,false,4000.0,NS_NET126_L_F2_(14),9ce9d92c-5583-4b16-bec6-9f67834663cb,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -61314082-488b-4045-8c90-dad4629be04c,0.949999988079071,false,4000.0,NS_NET126_L_F2_(10),3d81adf5-73d1-4708-b03b-3afc7db017f4,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -573a3f21-49d8-4e2b-bca0-d546d77bb143,0.9700000286102295,false,4000.0,NS_NET116_L_S1_2(3),3e21f3a1-2c9c-4138-bcc9-466b004609ed,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -c2446989-6050-49f9-ab98-d8cfb8058709,0.949999988079071,false,4000.0,NS_NET126_L_F2_(26),5545d21b-bdc8-495f-bd28-d22ffcc0fafc,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -d12ce59d-2cf8-4186-9174-46a8b7f7c9cf,0.949999988079071,false,4000.0,NS_NET146_L_F4_(10),ffcaf979-d707-4d25-8f46-f436f9792d7f,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -35414e99-525f-455a-b4ef-137b6e48ff87,0.9700000286102295,false,4000.0,NS_NET136_L_S2_2(8),cbcfc3b6-ac90-4215-975c-a033f5cf9912,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -cdf650f2-8200-482a-b5b4-6f96e7f9e0f9,0.949999988079071,false,4000.0,NS_NET126_L_F1_(10),f6a31362-8b0d-4926-b0d0-10bb61db20df,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -1a08b0a0-ae75-4ff8-b28b-643ca2dbca1a,0.9700000286102295,false,4000.0,NS_NET136_L_S2_1(5),4e188ac9-e507-46b1-b8e2-376cf7c6ceb1,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -1f901bde-3ada-4e30-8a4c-a264df5b2f38,0.9700000286102295,false,4000.0,NS_NET136_L_S2_2(5),cbcfc3b6-ac90-4215-975c-a033f5cf9912,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -e65cd082-dd8f-45d6-895c-e14357e76ac8,0.9700000286102295,false,4000.0,NS_NET136_L_S1_2(2),032768b4-2426-4abf-806b-83813ac5137a,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -3a278137-bf5c-4e2d-96c5-4779bcf947c0,0.9700000286102295,false,4000.0,NS_NET136_L_S3_2(2),b46d4395-6724-4830-ba55-357e81fc2814,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -ca863e7f-1e42-4716-a214-e79fa91b3222,0.9700000286102295,false,4000.0,NS_NET116_L_S3_5(8),b9a28095-68f7-44c1-9ccc-6efc5ea84c59,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -742de2f0-f057-47d0-83a3-9f57f84eb314,0.949999988079071,false,4000.0,NS_NET126_L_F4_(1),3f63be7c-7f1a-4e7e-87ee-90ada222f64a,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -f971674c-7f11-4e9d-b701-1736b2effb65,0.9700000286102295,false,4000.0,NS_NET136_L_S1_2(4),032768b4-2426-4abf-806b-83813ac5137a,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -0045a53f-8f38-4239-8109-073a768cc593,0.949999988079071,false,4000.0,NS_NET146_L_F4_(1),ead38a50-b8f7-4bbb-b65d-f54350825e8e,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -3e94ff28-fd2e-4028-a188-58ce85136fdf,0.9700000286102295,false,4000.0,NS_NET116_L_S2_2(5),d53ff076-dadd-44f8-85d4-68f48991f7d0,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -98c1a2ab-bd09-4c77-a389-d088aed894b1,0.9700000286102295,false,4000.0,NS_NET116_L_S3_2(1),550ebca7-1455-44eb-9431-ffbf08e58bd4,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -916670c1-1575-4fe8-acb0-1dcf1c218386,0.9700000286102295,false,4000.0,NS_NET116_L_S2_2(6),d53ff076-dadd-44f8-85d4-68f48991f7d0,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -b2789995-79a1-4859-8d1c-70107b83c18b,0.9700000286102295,false,4000.0,NS_NET136_L_S3_3(2),2c5d4eda-6b33-4ad5-a135-7037baa7d6eb,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -be63473d-a375-4ce7-9970-80358e5c54bd,0.9700000286102295,false,4000.0,NS_NET136_L_S3_2(3),b46d4395-6724-4830-ba55-357e81fc2814,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -4384a56f-5b34-430c-89d8-354f367fa7ff,0.949999988079071,false,4000.0,NS_NET146_L_F3_(29),15345698-c319-461f-b969-37d50fb84220,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -89aeade0-ac58-4120-a743-577afdb72b5b,0.949999988079071,false,4000.0,NS_NET146_L_F3_(7),f1e88392-3b2a-4ce8-a31f-c963f08f8043,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -0d983289-2ff2-4f2c-b38a-bab3ec967c76,0.9700000286102295,false,4000.0,NS_NET136_L_S1_1(4),535b3fa4-ed67-4ab1-9a68-e7db83e05967,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -f630b338-5685-424d-bfbe-338bf94a0e01,0.949999988079071,false,4000.0,NS_NET126_L_F3_(6),e018b95e-fca5-40f7-8550-b05a619169dc,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -d7f49aa5-ab62-4148-911b-086e8a848af4,0.949999988079071,false,4000.0,NS_NET146_L_F3_(15),d07dc1b0-e29a-452a-84c5-7df7b0bb3141,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -10b5f3d3-60c9-45b9-a70e-fa75140e9a9d,0.9700000286102295,false,4000.0,NS_NET136_L_S1_5(3),926d6113-933f-49e3-9529-a3035acdc9b2,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -dd53cc4e-93a6-47f1-afa0-a46f82e3b371,0.949999988079071,false,4000.0,NS_NET146_L_F4_(11),8b3e3802-5213-46d0-a498-15eb6e5852b5,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -3f5718ca-fc58-4b00-b634-1aa6307c6cfa,0.949999988079071,false,4000.0,NS_NET146_L_F2_(1),2c520ab6-507e-4dcf-ab05-8f238e9b9385,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -b47d3f0a-f480-49ef-ba7e-7979c81b0f70,0.9700000286102295,false,4000.0,NS_NET146_L_F1_(32),033d0230-4aee-47cf-91f9-81f5f40e60b0,,,,cosPhiFixed:{(0.00,1.00)},2.0618600845336914,h0 -1aeeacdc-e61b-4d44-ac76-699c7b459325,0.9700000286102295,false,4000.0,NS_NET116_L_S1_3(2),e4c8b492-965c-4b5a-8d14-e8ff2c027ce9,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -a34932f7-012c-4a27-aa5f-4dd043028d5e,0.9700000286102295,false,4000.0,NS_NET116_L_S2_1(8),39112046-8953-4e73-a5d9-6a8183a77436,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -35408c17-cd77-4115-8357-9fb0e8f76532,0.949999988079071,false,4000.0,NS_NET146_L_F2_(9),a5c73608-5a85-495d-bea0-df77b6ce66ea,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -7194cc61-5445-43a9-9039-ddde7ab2be55,0.949999988079071,false,4000.0,NS_NET126_L_F3_(11),4258f215-5b22-446f-a260-e8cdaa7c95d1,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -9985e8e1-d8fa-4fdc-86aa-70f5b0ab70fc,0.949999988079071,false,4000.0,NS_NET126_L_F1_(11),270c7266-45dc-4e45-829f-c04f6b631cad,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -f8a76852-55d7-4a20-99a7-cf1fb5a5b1b0,0.949999988079071,false,4000.0,NS_NET146_L_F2_(17),40537c84-c812-4231-bd23-0ba81922e937,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -3052ef96-e3f1-4469-a64e-059f09306044,0.9700000286102295,false,4000.0,NS_NET136_L_S2_5(2),c5af5a34-211a-4105-a8e1-f447140073c6,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -a94ba026-b4fc-40d2-a20f-c8201996d717,0.9700000286102295,false,4000.0,MS2_Last_04,5f1c776c-6935-40f7-ba9e-60646e08992b,,,,cosPhiFixed:{(0.00,1.00)},320.0,h0 -99a1fb27-fa7c-440b-9f25-74237b4e0279,0.949999988079071,false,4000.0,NS_NET126_L_F3_(24),97ae0aa4-bf05-4b88-8020-83cbda415d22,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -fe429426-1884-4ad7-8d50-69237e4a6a1b,0.9700000286102295,false,4000.0,NS_NET146_L_F1_(34),fd4f6232-c28d-4fc3-81dd-03b84aad695e,,,,cosPhiFixed:{(0.00,1.00)},2.0618600845336914,h0 -7388e938-85cb-495b-bb00-30a050b18327,0.9700000286102295,false,4000.0,MS1_Last_01,f5839ade-5968-4879-a824-90b5fb3552cd,,,,cosPhiFixed:{(0.00,1.00)},400.0,h0 -8221a6b1-eff3-48fe-88ab-0685a9f59cce,0.9700000286102295,false,4000.0,NS_NET116_L_S1_2(8),3e21f3a1-2c9c-4138-bcc9-466b004609ed,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -a3bcf5fc-5937-4182-8a54-180f9810d21d,0.949999988079071,false,4000.0,NS_NET126_L_F1_(1),4303784e-7193-454a-9be4-3591400b4eeb,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -9219bda4-01ce-4067-92b1-595b86e9bbdf,0.9700000286102295,false,4000.0,NS_NET116_L_S1_1(5),8a50fb37-81cf-47c9-8850-a12b4391e2e7,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -2596f43d-e805-46b6-a79a-adf9f21fee96,0.949999988079071,false,4000.0,NS_NET126_L_F3_(2),285a4caa-2da8-4bd2-8a60-7d04f168f378,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -40550e1d-7453-4f20-a5e5-8839d17c2fdf,0.9700000286102295,false,4000.0,NS_NET136_L_S2_3(7),fd534474-cd65-47aa-8005-dc50d17d6920,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -bd4fa1dc-a73a-4aa4-ac9f-d263a45a6cce,0.9700000286102295,false,4000.0,NS_NET116_L_S2_4(6),e05c68b1-11cd-43fd-a4b2-31e4db380c78,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -7e875803-7e9d-4808-8d8c-a722d46fb6af,0.949999988079071,false,4000.0,NS_NET126_L_F3_(20),732f83b0-b9c5-4b8e-86fe-753c26f40e78,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -33dfa920-da94-44b2-8be9-85a0eeafa626,0.9700000286102295,false,4000.0,NS_NET136_L_S2_5(1),c5af5a34-211a-4105-a8e1-f447140073c6,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -e2795c9b-dddb-4012-b56c-e24c3d1c3cdf,0.9700000286102295,false,4000.0,NS_NET136_L_S1_1(6),535b3fa4-ed67-4ab1-9a68-e7db83e05967,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -fd1a8de9-722a-4304-8799-e1e976d9979c,0.9700000286102295,false,4000.0,NS_NET116_L_S1_1(1),8a50fb37-81cf-47c9-8850-a12b4391e2e7,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -a4145b3e-7143-4618-99f1-16b43aec3c9e,0.9700000286102295,false,4000.0,NS_NET136_L_S2_3(5),fd534474-cd65-47aa-8005-dc50d17d6920,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -8a535e63-ff09-4236-ac68-fb6a21bb0516,0.9700000286102295,false,4000.0,NS_NET116_L_S1_2(5),3e21f3a1-2c9c-4138-bcc9-466b004609ed,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -47878ba6-7b08-4af8-a7ab-c859d0ac3415,0.9700000286102295,false,4000.0,NS_NET136_L_S1_3(5),eb95ff15-56db-4463-bb54-0ee131167812,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -d5a1a95f-e2b8-402c-86e6-617489ca865d,0.9700000286102295,false,4000.0,NS_NET116_L_S3_3(3),d69efff2-ba8b-4aa6-a4a1-27267964147a,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -cd65e476-ba5b-46be-b87d-a689b79269eb,0.949999988079071,false,4000.0,NS_NET126_L_F3_(3),69aeb4a6-1c4b-4953-bad9-54fc0c7e495b,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -5535881c-50ec-4a74-a67e-5b963aec5b38,0.949999988079071,false,4000.0,NS_NET146_L_F1_(5),bd8c7d3d-e830-4a46-bf78-0086ce24909f,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -4924a294-0f71-4f0d-a058-447a1a74de6c,0.9700000286102295,false,4000.0,NS_NET136_L_S2_4(8),81cd3f38-867b-4a71-ba22-cb33834e0e58,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -4d3af2ae-7637-46bc-a492-1bca70d3bc56,0.9700000286102295,false,4000.0,NS_NET146_L_F1_(37),450426ac-a560-4d17-b1fc-9e169530a655,,,,cosPhiFixed:{(0.00,1.00)},2.0618600845336914,h0 -ae21cb77-4f17-4996-89f3-b2172f479bcc,0.949999988079071,false,4000.0,NS_NET126_L_F2_(16),d8c35123-b389-4199-84f9-d417d24bb78d,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -2ba29ae5-8b0a-4fee-be31-c6d0cc83f97e,0.9700000286102295,false,4000.0,NS_NET136_L_S2_4(6),81cd3f38-867b-4a71-ba22-cb33834e0e58,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -4cf4c2ac-3c96-456e-858b-5000f183230c,0.949999988079071,false,4000.0,NS_NET126_L_F2_(7),4db634e5-3eb8-4c17-bc44-eb224667580c,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -cc08fc6e-1932-4daa-af04-f0376c8be6e2,0.949999988079071,false,4000.0,NS_NET126_L_F3_(7),50164699-2018-4b17-b3f1-74b082f27403,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -3e0d4895-f0c4-4b4d-8eeb-8c8e24e3e610,0.9700000286102295,false,4000.0,NS_NET136_L_S2_2(7),cbcfc3b6-ac90-4215-975c-a033f5cf9912,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -cad1c678-6e76-430f-bf7c-db12c6f06239,0.949999988079071,false,4000.0,NS_NET126_L_F4_(7),98072ded-726f-4f0b-8bbc-4fb6d5086a7b,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -cc470184-d4ce-468a-b7ef-ed2cb84debfd,0.9700000286102295,false,4000.0,NS_NET116_L_S1_1(4),8a50fb37-81cf-47c9-8850-a12b4391e2e7,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -db87c6cf-7673-4e25-b510-50086de5d4b8,0.949999988079071,false,4000.0,NS_NET126_L_F1_(24),4f2402e8-664a-40f2-970a-abc098a2a0d1,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -e25c3969-7e44-48f5-860c-03ff67a65284,0.9700000286102295,false,4000.0,NS_NET126_L_F1_(29),27d9e46d-5a9a-44f9-b17e-cd6cffb5e769,,,,cosPhiFixed:{(0.00,1.00)},2.0618600845336914,h0 -6a4d97c2-3c6b-4fb8-91a6-2c9a2f9523b1,0.949999988079071,false,4000.0,NS_NET126_L_F3_(21),5af425fa-6ed7-43e1-8898-7af1315128c5,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -fe02ae6f-bb61-4ab9-83db-43a41f32b0c8,0.9700000286102295,false,4000.0,MS2_Last_02,535843a3-cf93-412f-b4d7-585337791ba8,,,,cosPhiFixed:{(0.00,1.00)},400.0,h0 -cec8879b-a90b-4e15-b664-a7ed0739ae0a,0.9700000286102295,false,4000.0,NS_NET136_L_S1_2(6),032768b4-2426-4abf-806b-83813ac5137a,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -791307b1-d235-4df9-9400-e6c2af8b3825,0.9700000286102295,false,4000.0,NS_NET136_L_S1_1(2),535b3fa4-ed67-4ab1-9a68-e7db83e05967,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -996313f2-93af-477c-92dc-2011a43afd7c,0.9700000286102295,false,4000.0,NS_NET136_L_S1_5(5),926d6113-933f-49e3-9529-a3035acdc9b2,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -87fb203a-6cbb-4598-8172-8cdef6b04a63,0.949999988079071,false,4000.0,NS_NET146_L_F2_(26),86af5351-87ef-49c6-bd17-673dceecee5b,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -6e260432-2b25-444f-8e37-5300eee5a89e,0.949999988079071,false,4000.0,NS_NET146_L_F2_(2),69efeb2d-9845-49ac-8500-5e017a7a64ef,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -6ad26a2b-9139-4008-bd91-ba2c8918e1e3,0.949999988079071,false,4000.0,NS_NET126_L_F3_(10),e25387d0-ab9a-406d-bcb4-555414b88b1b,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -32d607eb-c3a1-4906-af14-9e7bf12e5a20,0.9700000286102295,false,4000.0,NS_NET146_L_F1_(36),8f80e777-ccbd-4630-b10e-238e824113fd,,,,cosPhiFixed:{(0.00,1.00)},2.0618600845336914,h0 -b334c8b6-0f65-4891-a761-5208a39aa9d0,0.949999988079071,false,4000.0,NS_NET126_L_F3_(8),6dcdc87b-a719-416f-9da1-21a701048f3a,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -cde58a33-fc7e-4fc6-8843-e0c372234be0,0.9700000286102295,false,4000.0,NS_NET136_L_S1_4(1),ed4697fd-016c-40c2-a66b-e793878dadea,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -8c9dbef2-bf3d-4f5b-bc9f-6c867f016c89,0.9700000286102295,false,4000.0,NS_NET136_L_S3_5(1),3bc8235b-03b5-489b-81a2-58d520fbe28e,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -08bb3387-aaf3-4005-894b-c195849fcad0,0.949999988079071,false,4000.0,NS_NET146_L_F1_(12),3b879239-20c8-4adf-bd51-92924327ee71,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -d3c547e1-cf64-4993-9b55-5ae1b1d4601c,0.9700000286102295,false,4000.0,NS_NET136_L_S3_2(7),b46d4395-6724-4830-ba55-357e81fc2814,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -3cec8f8c-5a69-4813-a788-11cfbd48f718,0.9700000286102295,false,4000.0,NS_NET126_L_F1_(37),3e4cce4a-6e85-4ec2-b3ea-08673a0ada15,,,,cosPhiFixed:{(0.00,1.00)},2.0618600845336914,h0 -7ebc343e-c3a4-4f6c-a1f8-e81d2ee35d08,0.9700000286102295,false,4000.0,NS_NET136_L_S2_5(3),c5af5a34-211a-4105-a8e1-f447140073c6,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -ae80f9a2-151c-4f24-99bf-928032df3383,0.9700000286102295,false,4000.0,NS_NET116_L_S3_5(6),b9a28095-68f7-44c1-9ccc-6efc5ea84c59,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -1610169b-0870-40d0-bc26-259e443b30db,0.9700000286102295,false,4000.0,NS_NET136_L_S3_5(4),3bc8235b-03b5-489b-81a2-58d520fbe28e,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -528616f2-81a9-44ad-b103-e36cf5c585d9,0.949999988079071,false,4000.0,NS_NET146_L_F2_(28),ca438ab9-3abc-4416-91d1-df01d1c5fa5a,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -d28f1e85-c5ff-41c9-93b7-ba4ea62eb56d,0.949999988079071,false,4000.0,NS_NET126_L_F4_(14),d40a1a85-40f2-4ad3-ba58-720d5ba02268,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -60492496-1ab3-4b51-b2c4-245f44a4ce45,0.9700000286102295,false,4000.0,NS_NET136_L_S2_5(5),c5af5a34-211a-4105-a8e1-f447140073c6,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -d7a977d9-d95f-46f1-b993-2ba120bcd366,0.949999988079071,false,4000.0,NS_NET146_L_F1_(23),1a1e63f7-6196-4856-9f4e-876a44bdf2f8,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -0d6b1569-0276-4f4b-9831-9a99821ff240,0.9700000286102295,false,4000.0,NS_NET116_L_S3_1(5),4a6f6058-e654-464d-9367-2dca7185c6d7,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -e8443260-ac5c-4210-9f84-4f40cec0b63b,0.949999988079071,false,4000.0,NS_NET126_L_F2_(13),b32c5f5e-b6b8-41ed-a192-078e1aed05ac,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -c79513d2-7d86-45be-ab44-3bd13f502a5b,0.9700000286102295,false,4000.0,NS_NET136_L_S1_3(1),eb95ff15-56db-4463-bb54-0ee131167812,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -fae24064-659b-4f3b-80f9-c3ecf337cb25,0.949999988079071,false,4000.0,NS_NET146_L_F2_(7),f1cef042-1fc4-4bd8-b17f-dfbded4f2aaa,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -9a751f29-69b8-4ca0-b019-3001e50922d3,0.9700000286102295,false,4000.0,NS_NET116_L_S1_4(2),b3a7431d-89b0-41cb-87a9-5853890796cd,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -e81df4d7-0935-40d7-be0b-5b696b24d220,0.949999988079071,false,4000.0,NS_NET146_L_F1_(21),92cb5065-2e57-4099-8e29-75cbc0c80370,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -571ee907-5b24-46df-872d-560c5f119800,0.9700000286102295,false,4000.0,NS_NET116_L_S1_4(5),b3a7431d-89b0-41cb-87a9-5853890796cd,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -bfb7a7c2-6426-4392-9070-85dd5210a5cf,0.9700000286102295,false,4000.0,NS_NET116_L_S1_5(4),92301422-94ae-48ab-89c7-a69eea9450b2,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -20f3da7f-110c-48d6-b6f0-9df6f6dfecbc,0.9700000286102295,false,4000.0,NS_NET116_L_S1_3(3),e4c8b492-965c-4b5a-8d14-e8ff2c027ce9,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -2848033f-54ed-4507-8d9c-59ec3eb5c3a9,0.949999988079071,false,4000.0,NS_NET126_L_F1_(19),d2aff632-fc26-4595-931c-92e266247ac8,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -a194f9a2-1380-412b-8285-80ca7ba3a538,0.949999988079071,false,4000.0,NS_NET126_L_F3_(15),ae234bc5-b751-41f2-95ee-b78de124c583,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -b925ad8d-edb2-4f59-a302-9b33d21d900c,0.949999988079071,false,4000.0,NS_NET126_L_F3_(16),6232b760-b2e0-485e-9c61-f9721a366a81,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -9c5991bc-24df-496b-b4ce-5ec27657454c,0.949999988079071,false,4000.0,HS_NET1_L_S2,dfae9806-9b44-4995-ba27-d66d8e4a43e0,,,,cosPhiFixed:{(0.00,1.00)},42105.30078125,h0 -68ca017a-8327-4a88-a2ab-0c7c20383a3e,0.9700000286102295,false,4000.0,NS_NET136_L_S1_2(7),032768b4-2426-4abf-806b-83813ac5137a,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -3eac1fa7-99ba-4f3e-bc50-c7b88a022734,0.949999988079071,false,4000.0,NS_NET126_L_F1_(12),9d10a92f-576d-4777-99ff-59d145924fea,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -477fdcdc-1983-4190-8f83-3f32ce95d1df,0.949999988079071,false,4000.0,NS_NET146_L_F3_(28),c72a08bc-4685-49b1-b8ef-803aebc8c388,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 -f817f48f-b565-44a8-9cf9-6824c9bbd012,0.9700000286102295,false,4000.0,NS_NET136_L_S2_3(6),fd534474-cd65-47aa-8005-dc50d17d6920,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -8f6178ef-fc51-431e-a91a-1b1802a7373c,0.9700000286102295,false,4000.0,NS_NET116_L_S2_1(5),39112046-8953-4e73-a5d9-6a8183a77436,,,,cosPhiFixed:{(0.00,1.00)},4.1237101554870605,h0 -7063fecf-8601-4a03-8dfe-410b2419133b,0.949999988079071,false,4000.0,NS_NET146_L_F3_(32),fd3b7bb8-3976-4441-9211-745243afd80f,,,,cosPhiFixed:{(0.00,1.00)},2.3157899379730225,h0 +c2402412-97fa-4ca4-aa66-e6e04d010001,0.9700000286102295,false,4000.0,NS_NET126_L_F1_(36),ca3391eb-ca94-4945-ac72-e116f396f82c,,,,"cosPhiFixed:{(0.00,1.00)}",2.0618600845336914,h0 +fa8ef266-5b15-4fdd-a145-71ba95e3463d,0.949999988079071,false,4000.0,NS_NET146_L_F3_(17),0f3ba59d-a9ce-4669-aa12-bebec42238b7,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +4dd0785a-482c-47e3-bb82-e315083684d1,0.9700000286102295,false,4000.0,NS_NET116_L_S3_2(6),550ebca7-1455-44eb-9431-ffbf08e58bd4,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +9b027eb7-abfa-43ef-8eae-b20b47a631e6,0.949999988079071,false,4000.0,NS_NET146_L_F3_(18),85ec9277-c5fd-4e5b-8a34-9627d9599ad7,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +7bbb2c62-36f7-4aab-8802-e3ddf478adf2,0.949999988079071,false,4000.0,NS_NET146_L_F3_(14),3dec12fd-3dc6-481d-be05-8df9df7f0c5d,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +ec035312-7214-4060-a502-71cbe819f32a,0.9700000286102295,false,4000.0,NS_NET136_L_S2_1(1),4e188ac9-e507-46b1-b8e2-376cf7c6ceb1,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +40ddb9cf-46f1-4ee6-8feb-432affbc95bf,0.9700000286102295,false,4000.0,NS_NET116_L_S2_4(1),e05c68b1-11cd-43fd-a4b2-31e4db380c78,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +3b9ae1ad-11e5-4fb5-ba03-9027e39c33b4,0.9700000286102295,false,4000.0,NS_NET116_L_S1_3(8),e4c8b492-965c-4b5a-8d14-e8ff2c027ce9,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +16cd0d9b-bbaa-4d71-ad87-b8e834cf478d,0.9700000286102295,false,4000.0,MS2_Last_01,1a8ba1a5-3cee-4791-b21b-f17b08526873,,,,"cosPhiFixed:{(0.00,1.00)}",400.0,h0 +c806a93a-5f1c-47ba-9c67-31a86ae2658c,0.9700000286102295,false,4000.0,NS_NET126_L_F1_(39),60173008-809d-4d8f-b06a-3c4a838dd989,,,,"cosPhiFixed:{(0.00,1.00)}",2.0618600845336914,h0 +5b821f32-64d4-436f-9840-40d04872f20f,0.949999988079071,false,4000.0,NS_NET126_L_F3_(12),eb125953-31d3-4207-adf7-aba3a3790d6f,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +dcaeda6e-2dfc-4b53-9c25-cf51d486bb34,0.949999988079071,false,4000.0,NS_NET126_L_F2_(21),1dee13af-e638-4858-9c69-0069190cd577,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +c78b87bd-855b-4741-9e82-c9d814dc5a7c,0.9700000286102295,false,4000.0,NS_NET116_L_S2_1(7),39112046-8953-4e73-a5d9-6a8183a77436,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +aef6783d-889c-48a2-bdf5-7a9086a73548,0.9700000286102295,false,4000.0,NS_NET116_L_S1_2(7),3e21f3a1-2c9c-4138-bcc9-466b004609ed,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +9cc70cc7-642f-4fb1-9782-20a446368645,0.9700000286102295,false,4000.0,NS_NET136_L_S3_4(1),2a816043-d1d2-44a6-8a9b-f61a4933997b,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +2de16d4b-e4e0-41e0-ae33-105930964fcd,0.9700000286102295,false,4000.0,NS_NET126_L_F1_(31),80d8252b-045f-471a-9638-416ed3f86120,,,,"cosPhiFixed:{(0.00,1.00)}",2.0618600845336914,h0 +07ac3307-90a9-4d74-9434-b977741a8858,0.949999988079071,false,4000.0,NS_NET126_L_F4_(4),a12b9ded-0c19-48c2-ac19-7a3a9b7e26da,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +590108ac-416d-44fe-b574-4069cea1dbb1,0.9700000286102295,false,4000.0,MS3_Last_04,4dd439ed-7cc3-45b4-a2ca-ae615b97a23c,,,,"cosPhiFixed:{(0.00,1.00)}",320.0,h0 +df1ebc6d-1252-4496-98bc-50f6ff46a085,0.949999988079071,false,4000.0,NS_NET126_L_F1_(18),2f64bf67-cee9-44bb-8c13-ff96878932af,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +a850c129-beef-48d6-9543-1e217a5349ce,0.9700000286102295,false,4000.0,NS_NET136_L_S1_2(8),032768b4-2426-4abf-806b-83813ac5137a,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +ceec9e98-5303-4df3-99e8-592509c19d74,0.9700000286102295,false,4000.0,NS_NET136_L_S1_5(7),926d6113-933f-49e3-9529-a3035acdc9b2,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +984470e3-f117-4b8c-932f-caeacf10ff2c,0.9700000286102295,false,4000.0,NS_NET116_L_S3_1(2),4a6f6058-e654-464d-9367-2dca7185c6d7,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +94ef12cc-d3bc-42b1-b8b0-6177b93bb25c,0.9700000286102295,false,4000.0,NS_NET116_L_S3_5(4),b9a28095-68f7-44c1-9ccc-6efc5ea84c59,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +e87a4990-0f33-44dc-bb98-ca7dd38e2493,0.949999988079071,false,4000.0,NS_NET146_L_F1_(18),2f921888-36d3-4c88-a8aa-1ecbdc62b9c4,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +5fa8b3e6-ed79-4804-997b-4c6eb2c7727b,0.9700000286102295,false,4000.0,NS_NET136_L_S1_1(5),535b3fa4-ed67-4ab1-9a68-e7db83e05967,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +716dc985-7e6d-4681-b4d8-aa9c039a347e,0.9700000286102295,false,4000.0,MS1_Last_07,7546df1d-8a62-4650-bf2e-d1e441b38d70,,,,"cosPhiFixed:{(0.00,1.00)}",2400.0,h0 +c9576364-4a47-450d-a25d-864dd12ef7fa,0.9700000286102295,false,4000.0,NS_NET136_L_S1_1(3),535b3fa4-ed67-4ab1-9a68-e7db83e05967,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +a8f50827-29eb-4c27-a60c-fb74c3a5f3fd,0.9700000286102295,false,4000.0,NS_NET136_L_S3_4(2),2a816043-d1d2-44a6-8a9b-f61a4933997b,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +9c4f5e8d-b780-4e31-9bb0-37e975066beb,0.9700000286102295,false,4000.0,NS_NET116_L_S2_5(8),32bd37df-255b-4eb2-9d16-5b711132eee6,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +3d297678-497c-4620-ad5e-1e70cea8119d,0.949999988079071,false,4000.0,NS_NET146_L_F3_(5),ce71377d-63ea-462a-9290-67e51946a098,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +895edb06-282c-4965-acab-36c8b86f8f65,0.9700000286102295,false,4000.0,NS_NET116_L_S2_3(5),df9c3d91-41a0-4e49-bb1f-1cd2a8fd9a2e,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +8d84639d-d746-49c5-bc46-33a2aae666e7,0.949999988079071,false,4000.0,NS_NET126_L_F1_(16),4f78fe6d-3cb2-4d99-8c67-4f14cb626813,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +8cd07c7c-1264-4141-b90e-e2b6f39c44be,0.949999988079071,false,4000.0,NS_NET126_L_F4_(9),119d270a-ff22-4fdb-8214-cb5b336790bf,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +0c5d8e98-e059-4768-be56-73e0e8914092,0.9700000286102295,false,4000.0,NS_NET136_L_S3_1(3),416fa5eb-2f72-46c3-978f-6a0ebb714a40,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +06747e73-c108-40d5-8ce6-6538e38b4ef2,0.949999988079071,false,4000.0,NS_NET126_L_F1_(6),99e26ef8-75e2-46f3-aafc-6287bf5e3905,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +5d09da2a-e37c-4cca-93fd-0bf61918a2b2,0.9700000286102295,false,4000.0,NS_NET136_L_S2_3(4),fd534474-cd65-47aa-8005-dc50d17d6920,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +7ce95168-5af2-4274-943d-601176146ce8,0.9700000286102295,false,4000.0,NS_NET116_L_S1_5(8),92301422-94ae-48ab-89c7-a69eea9450b2,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +188c5841-af7d-48ea-95ac-7178dc7407c9,0.9700000286102295,false,4000.0,NS_NET116_L_S1_1(8),8a50fb37-81cf-47c9-8850-a12b4391e2e7,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +1d96cdde-d9d3-4d47-b3a4-60474b9caa92,0.9700000286102295,false,4000.0,MS2_Last_05,582ed42c-fd18-49ae-bdf5-6aa59353c7e3,,,,"cosPhiFixed:{(0.00,1.00)}",320.0,h0 +130b7cb2-f379-4d6c-b71d-404d87260133,0.949999988079071,false,4000.0,NS_NET146_L_F2_(19),636dec7c-4242-46e8-b7ae-db7e5a28c39c,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +b4b07036-0d49-4f8f-9194-0181e11d0470,0.9700000286102295,false,4000.0,NS_NET116_L_S2_3(7),df9c3d91-41a0-4e49-bb1f-1cd2a8fd9a2e,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +0442c234-22f8-4022-8daa-2f191e4a6bf3,0.949999988079071,false,4000.0,NS_NET146_L_F1_(24),205fcee1-928c-4374-950c-34575f07fa49,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +29a47779-6c11-490f-a0b2-e33c6c7a06b3,0.949999988079071,false,4000.0,NS_NET126_L_F3_(25),1bf26b4d-03cc-4490-8c33-d3db8597d807,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +2b20b17c-774b-4b41-a1e8-ef9d8f39b0e3,0.9700000286102295,false,4000.0,NS_NET136_L_S2_5(8),c5af5a34-211a-4105-a8e1-f447140073c6,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +70fcdefd-49c1-455f-9ceb-013dcbf26887,0.9700000286102295,false,4000.0,NS_NET116_L_S1_3(1),e4c8b492-965c-4b5a-8d14-e8ff2c027ce9,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +5d842fa6-eb7a-4f88-8dd3-f7eac01afaad,0.9700000286102295,false,4000.0,NS_NET146_L_F1_(29),867c4b4d-0f38-4f28-82ce-135f2cc63808,,,,"cosPhiFixed:{(0.00,1.00)}",2.0618600845336914,h0 +d7a1b657-6d15-45c7-8d04-d2eef97429b0,0.9700000286102295,false,4000.0,NS_NET116_L_S1_1(6),8a50fb37-81cf-47c9-8850-a12b4391e2e7,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +e17786aa-4cf5-46d6-ad37-96f4d4502b1f,0.949999988079071,false,4000.0,NS_NET146_L_F4_(8),6dd72a1e-2a79-4cde-b2fc-92bc9a83032a,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +c22e9a91-f522-446d-8dc8-ae3e720a5053,0.949999988079071,false,4000.0,NS_NET126_L_F2_(19),52e15712-2572-442a-b22c-add48af95115,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +1ec03866-9e92-43b9-9c13-1501533c8e1e,0.949999988079071,false,4000.0,NS_NET146_L_F1_(26),154e9a99-467b-4f65-9928-8ebb14149baa,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +26bf78c9-48ea-4004-9148-eaee014d6f09,0.9700000286102295,false,4000.0,NS_NET116_L_S3_2(7),550ebca7-1455-44eb-9431-ffbf08e58bd4,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +0a8bf78c-1e57-44f1-baee-0a8d8383875c,0.9700000286102295,false,4000.0,NS_NET136_L_S3_3(1),2c5d4eda-6b33-4ad5-a135-7037baa7d6eb,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +5f58fa15-aff8-4a9b-bfc0-8ef690d6dba3,0.949999988079071,false,4000.0,NS_NET146_L_F2_(27),b179c38b-5af0-4304-84b1-1dc03314fd80,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +a9f8dce4-b664-4bbd-9e52-c2ca6aa669aa,0.949999988079071,false,4000.0,NS_NET146_L_F1_(19),1f040625-ad1d-409f-bd7e-944c4d805e46,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +e3e2d73e-3dfc-42ae-ad50-fadebdf38868,0.949999988079071,false,4000.0,NS_NET126_L_F1_(26),3802b603-d08d-4031-b7d7-e29734bcc122,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +62800519-5f5f-4081-ae89-9b2b0784a714,0.949999988079071,false,4000.0,NS_NET126_L_F2_(6),9d7038e9-5bcc-4676-bead-46c4f1291ba8,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +1100ef62-0d33-46df-8ac7-c949d843217c,0.949999988079071,false,4000.0,NS_NET146_L_F3_(22),616da4e5-e837-44ec-bbbc-0cd12b5da8f7,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +33cd1941-51f2-425a-8f4d-67e00d0b1876,0.9700000286102295,false,4000.0,NS_NET136_L_S3_1(6),416fa5eb-2f72-46c3-978f-6a0ebb714a40,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +9cff3e75-4374-48fc-a20a-27968427dc1a,0.949999988079071,false,4000.0,NS_NET126_L_F3_(5),f6272655-bd7e-4d2d-8bdd-285f3ac0d3e8,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +2485a766-3e5c-4950-b598-0c3b84c747a7,0.949999988079071,false,4000.0,NS_NET146_L_F2_(4),369cffa5-bcee-4489-8193-1d9b10230eca,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +5312d132-f5bc-4c34-98ca-16221a0111e2,0.949999988079071,false,4000.0,NS_NET146_L_F3_(2),0b2a3b46-5e43-4879-973e-d8fb96429d8a,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +8bd4fb73-bc7f-45c9-b1e6-916afd2e7359,0.9700000286102295,false,4000.0,NS_NET136_L_S1_5(4),926d6113-933f-49e3-9529-a3035acdc9b2,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +05124256-80e0-43cf-a3c5-dc565ef38a07,0.949999988079071,false,4000.0,NS_NET146_L_F3_(27),55caf2ec-a21b-4afd-8830-1e4009cce396,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +283a1252-a774-4b04-bfcf-fe8879065982,0.949999988079071,false,4000.0,HS_NET1_L_S4,401f37f8-6f2c-4564-bc78-6736cb9cbf8d,,,,"cosPhiFixed:{(0.00,1.00)}",42105.30078125,h0 +09fb83df-cd0f-4dca-a5b6-edc18d662e93,0.9700000286102295,false,4000.0,NS_NET136_L_S2_5(7),c5af5a34-211a-4105-a8e1-f447140073c6,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +f4536a0c-33d2-4c57-918c-0ebdf768265a,0.9700000286102295,false,4000.0,NS_NET116_L_S3_3(1),d69efff2-ba8b-4aa6-a4a1-27267964147a,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +27f66b7b-f1ac-46e4-9c11-b9ff0d0f2990,0.949999988079071,false,4000.0,NS_NET146_L_F3_(31),b7a5be0d-2662-41b2-99c6-3b8121a75e9e,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +8df8d6b5-ef51-4901-aaed-bf29c912acd5,0.949999988079071,false,4000.0,NS_NET146_L_F3_(21),a4a44d93-48d6-4b87-8053-87fe0778e75c,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +d75d06ae-7ac0-491c-87ed-e1bb625e349a,0.9700000286102295,false,4000.0,NS_NET136_L_S2_4(3),81cd3f38-867b-4a71-ba22-cb33834e0e58,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +3ac82a59-756c-4ead-b34e-02957fc69ec4,0.949999988079071,false,4000.0,NS_NET126_L_F1_(21),14ae9865-cb9b-4518-9f2a-c0fda3455a42,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +96da3f13-3c72-4e9a-b433-a319a9018b40,0.949999988079071,false,4000.0,NS_NET146_L_F2_(21),bd292f64-65e8-42ec-9b78-b9b9f013750e,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +57d74ff0-f6c4-4932-93c5-9837d101297c,0.9700000286102295,false,4000.0,NS_NET136_L_S2_2(2),cbcfc3b6-ac90-4215-975c-a033f5cf9912,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +a2d372db-d13c-4d3c-a987-ccf4138d43f2,0.9700000286102295,false,4000.0,MS4_Last_07,898d8295-bf35-4079-9374-99b059c2c956,,,,"cosPhiFixed:{(0.00,1.00)}",2400.0,h0 +182f6157-58ea-4fe2-92a2-90845427fbd0,0.949999988079071,false,4000.0,NS_NET126_L_F3_(13),f29859be-c6e7-4cf9-84d7-239eb98a9e65,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +ae603fbc-a262-47ab-bea7-251fd61f3964,0.9700000286102295,false,4000.0,NS_NET116_L_S2_5(4),32bd37df-255b-4eb2-9d16-5b711132eee6,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +2e7dda3e-4bd4-4bb7-8e15-260f709ab92e,0.9700000286102295,false,4000.0,NS_NET136_L_S3_4(3),2a816043-d1d2-44a6-8a9b-f61a4933997b,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +b5c6af22-2d56-4bd1-8235-74db06106eba,0.949999988079071,false,4000.0,NS_NET146_L_F3_(23),ba0b3e4b-85e1-4b45-8863-fbfe11c9b69c,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +7f642ba6-1492-4bf6-9857-113c60a18709,0.949999988079071,false,4000.0,NS_NET146_L_F3_(11),e2267696-669b-48e8-b43a-37d0db95011d,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +497de722-6c3b-49a5-8f1c-125c76a4a9cd,0.9700000286102295,false,4000.0,NS_NET116_L_S1_5(5),92301422-94ae-48ab-89c7-a69eea9450b2,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +1b64ea94-b338-40aa-92c8-144c7caaa8c2,0.9700000286102295,false,4000.0,MS1_Last_05,c1c3b5c2-c79e-4368-a8ae-28fd0f4e357a,,,,"cosPhiFixed:{(0.00,1.00)}",320.0,h0 +086208d0-52d4-4198-9f3d-966aa7a5557e,0.9700000286102295,false,4000.0,NS_NET136_L_S3_5(7),3bc8235b-03b5-489b-81a2-58d520fbe28e,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +fc5139da-5e61-44c5-8843-4f76df7c6e33,0.9700000286102295,false,4000.0,NS_NET146_L_F1_(39),904c7476-5f16-4ec2-9138-7d5e32d38a3b,,,,"cosPhiFixed:{(0.00,1.00)}",2.0618600845336914,h0 +abe6ade3-f1c5-41c0-a850-1292506f3837,0.949999988079071,false,4000.0,NS_NET146_L_F3_(10),4632291f-80d7-4e4a-9dc9-5c0fd0c56312,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +cbb8c279-5b80-4583-bec3-b878ab0c2755,0.9700000286102295,false,4000.0,NS_NET136_L_S1_5(1),926d6113-933f-49e3-9529-a3035acdc9b2,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +b431628f-bc6f-49ca-9f23-19fe41aadb53,0.9700000286102295,false,4000.0,NS_NET116_L_S3_3(2),d69efff2-ba8b-4aa6-a4a1-27267964147a,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +6069eb20-4107-483f-8144-5bd479e32d98,0.949999988079071,false,4000.0,NS_NET126_L_F2_(12),9d02ea80-98d8-4cd0-a635-9104a14a56dd,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +c81fa33a-1c21-4646-b43f-b9a93baf04ad,0.949999988079071,false,4000.0,NS_NET146_L_F2_(5),0228ffcd-f6bc-47c8-b26c-fcc0abacd963,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +660e69f8-cba2-45d0-9d0c-f7d5be09451d,0.9700000286102295,false,4000.0,NS_NET136_L_S2_2(6),cbcfc3b6-ac90-4215-975c-a033f5cf9912,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +ee33524a-6c8e-4c12-8b40-7a116e386dbd,0.9700000286102295,false,4000.0,NS_NET116_L_S2_5(3),32bd37df-255b-4eb2-9d16-5b711132eee6,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +4c6e6e4f-d4cb-4de3-b406-ff3ec1d50280,0.949999988079071,false,4000.0,NS_NET146_L_F2_(3),0170837a-1876-45f9-a613-666f9991964d,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +d85bcbda-20fb-481b-bb8d-aead291aa3c1,0.9700000286102295,false,4000.0,NS_NET136_L_S3_1(7),416fa5eb-2f72-46c3-978f-6a0ebb714a40,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +86754cd3-ba74-49fb-bf3b-5702b4fd5928,0.9700000286102295,false,4000.0,NS_NET146_L_F1_(33),543f7e9f-b9be-486b-b365-2bae79010758,,,,"cosPhiFixed:{(0.00,1.00)}",2.0618600845336914,h0 +4dcec977-6c98-4bd2-b6f2-dc32d9c61cf2,0.9700000286102295,false,4000.0,NS_NET136_L_S3_3(4),2c5d4eda-6b33-4ad5-a135-7037baa7d6eb,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +1a155e7e-9636-4760-a84d-430e293142cc,0.9700000286102295,false,4000.0,NS_NET116_L_S1_4(4),b3a7431d-89b0-41cb-87a9-5853890796cd,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +e90dfb70-2372-40d3-9577-01d2145eb59d,0.9700000286102295,false,4000.0,NS_NET116_L_S2_5(7),32bd37df-255b-4eb2-9d16-5b711132eee6,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +85bfce37-1c9a-4e5a-84ec-47faf7b13821,0.9700000286102295,false,4000.0,MS4_Last_02,174fb4b2-4f9e-415c-bfee-d850ef751307,,,,"cosPhiFixed:{(0.00,1.00)}",400.0,h0 +16b0791d-eeff-4b12-b1fe-2961bf0fd4c2,0.949999988079071,false,4000.0,NS_NET126_L_F4_(10),857c264a-7072-4bb7-af56-2f01539b2a2e,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +aa1ce00f-1a17-4172-9040-9ba15b179a15,0.949999988079071,false,4000.0,NS_NET146_L_F4_(16),9f7599de-c488-46c5-b053-1279a511f7b9,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +34671961-b8a8-49f9-a99e-c7b5a33c600e,0.9700000286102295,false,4000.0,NS_NET116_L_S3_4(2),36dccefc-f04c-493f-bb88-11343583bf9f,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +e4f045d6-7f37-4871-b357-621d97b9c2a8,0.9700000286102295,false,4000.0,NS_NET136_L_S3_4(8),2a816043-d1d2-44a6-8a9b-f61a4933997b,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +58cb8168-7a34-41e2-9db6-88a67287c5e9,0.949999988079071,false,4000.0,NS_NET146_L_F2_(8),792b505c-87ab-4665-a31d-b6035c5ece70,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +35555bee-2634-45cb-888b-d850767955a6,0.9700000286102295,false,4000.0,NS_NET116_L_S1_1(3),8a50fb37-81cf-47c9-8850-a12b4391e2e7,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +6322878b-9db6-4481-858b-64dbd00dc091,0.949999988079071,false,4000.0,NS_NET126_L_F3_(26),dc022eec-16b0-4a64-a2f5-498d81aca71e,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +0cf1f5c4-996b-4422-b61b-b4fbc840d004,0.949999988079071,false,4000.0,NS_NET146_L_F3_(24),773aebe4-fc03-46be-8209-0213e2760a8e,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +8ef945c1-4586-4755-98a8-bff3ee581620,0.949999988079071,false,4000.0,NS_NET146_L_F1_(7),67c1746c-3af8-403f-983e-1c7c047383df,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +61c9c21b-38a5-45b3-8a41-60df0bb698ee,0.949999988079071,false,4000.0,NS_NET146_L_F1_(22),1ee9de9a-0095-4b58-beeb-e56fb908844a,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +81e75c16-c8a4-4328-bc97-635049829f57,0.949999988079071,false,4000.0,NS_NET146_L_F2_(24),970cf93c-36c5-4938-a7e4-3f184a7035f0,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +53ae546b-c94f-4619-a613-3291f26fb78b,0.949999988079071,false,4000.0,NS_NET146_L_F3_(4),f66df6fa-3dfa-4515-85d7-54d0f429fde7,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +c73800aa-9f9e-46da-83eb-82a88b2ab502,0.9700000286102295,false,4000.0,NS_NET136_L_S2_5(4),c5af5a34-211a-4105-a8e1-f447140073c6,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +8b9c12d1-5398-4c42-80a6-9604978de820,0.949999988079071,false,4000.0,NS_NET146_L_F4_(3),b5548457-5923-4d52-b3c9-fdb75a1df98e,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +48ae1ea4-e001-4152-b54c-320fc9f35e92,0.949999988079071,false,4000.0,NS_NET126_L_F4_(5),de5ee252-ebb6-42b0-875c-77ae557ffbf6,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +9018c4d9-5b86-4c11-b5b3-2c26e756ad0e,0.949999988079071,false,4000.0,NS_NET126_L_F2_(20),de756ddb-793d-4b2d-959c-59d938a8f61f,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +3a2470e0-1d3f-4f33-990d-20c8b9611ac5,0.9700000286102295,false,4000.0,NS_NET136_L_S1_1(7),535b3fa4-ed67-4ab1-9a68-e7db83e05967,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +1e79cec6-2546-4e64-92fc-c509d4eea216,0.9700000286102295,false,4000.0,NS_NET126_L_F1_(32),49b511fa-8cff-45f4-9a59-54faaaf90abf,,,,"cosPhiFixed:{(0.00,1.00)}",2.0618600845336914,h0 +a1af0e38-339c-491c-94d8-446cf662d89b,0.9700000286102295,false,4000.0,NS_NET116_L_S3_4(1),36dccefc-f04c-493f-bb88-11343583bf9f,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +91d402b7-e8c7-4919-bdbd-93c1c8492920,0.949999988079071,false,4000.0,NS_NET146_L_F4_(14),f2d03b34-9595-4819-a00b-ff9ddd92eb07,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +521d8738-0393-4519-8b31-52ed06c9ed18,0.9700000286102295,false,4000.0,NS_NET116_L_S3_1(6),4a6f6058-e654-464d-9367-2dca7185c6d7,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +038ee933-439a-4705-b526-0373a4b0b16a,0.9700000286102295,false,4000.0,NS_NET136_L_S3_1(1),416fa5eb-2f72-46c3-978f-6a0ebb714a40,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +a964d9b8-a035-41df-86c0-4c5306af2158,0.9700000286102295,false,4000.0,NS_NET116_L_S2_4(7),e05c68b1-11cd-43fd-a4b2-31e4db380c78,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +c67f5f1a-7adf-4715-a0ee-1bc0156b7bb9,0.9700000286102295,false,4000.0,NS_NET116_L_S3_3(6),d69efff2-ba8b-4aa6-a4a1-27267964147a,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +8decd09e-f82a-4f38-8946-14a9b437303f,0.949999988079071,false,4000.0,NS_NET126_L_F2_(18),e80aa2db-f32c-410d-96a1-a32e03222568,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +8736f13d-fcf4-486a-8225-259bfd9bd206,0.9700000286102295,false,4000.0,NS_NET136_L_S1_3(8),eb95ff15-56db-4463-bb54-0ee131167812,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +0211454c-9be4-470f-9cf5-cef9b87cb640,0.9700000286102295,false,4000.0,NS_NET116_L_S3_2(5),550ebca7-1455-44eb-9431-ffbf08e58bd4,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +9b12597e-619f-4953-86c6-21f8d262bfbd,0.949999988079071,false,4000.0,NS_NET146_L_F4_(6),49dcfc70-76ca-4f6f-83f7-0bc2aab1ae34,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +bedce1e8-d623-469a-b7ff-bb618588bb3e,0.949999988079071,false,4000.0,NS_NET126_L_F2_(2),5981fe65-3c92-4a78-af92-1461904046d0,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +080cbc7e-6acf-434d-ae38-b693f19edc69,0.9700000286102295,false,4000.0,NS_NET116_L_S2_3(4),df9c3d91-41a0-4e49-bb1f-1cd2a8fd9a2e,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +7b187641-d6fa-49f2-afd6-b03125c1acea,0.949999988079071,false,4000.0,NS_NET126_L_F2_(22),177a20fe-83b1-46df-94a3-4faa54348d10,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +4336ad38-37d0-4bba-914e-b2ebec0cc8ab,0.9700000286102295,false,4000.0,NS_NET116_L_S1_5(2),92301422-94ae-48ab-89c7-a69eea9450b2,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +c098f9cd-09c8-4eef-8941-652cb8365992,0.9700000286102295,false,4000.0,NS_NET136_L_S3_1(4),416fa5eb-2f72-46c3-978f-6a0ebb714a40,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +c9acf3dd-2d38-47f1-9449-421104c47171,0.9700000286102295,false,4000.0,NS_NET116_L_S3_1(8),4a6f6058-e654-464d-9367-2dca7185c6d7,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +f855cedf-e3f0-4c0f-addd-c57deb4f9e03,0.9700000286102295,false,4000.0,NS_NET116_L_S3_5(2),b9a28095-68f7-44c1-9ccc-6efc5ea84c59,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +cb0661c0-15fb-4475-9e0b-fbcf734e19c7,0.949999988079071,false,4000.0,NS_NET146_L_F1_(4),dd9d4153-c56f-4457-ad5e-46a48d4486b6,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +75b3f626-a1e0-47d6-9d2f-658500ac7630,0.9700000286102295,false,4000.0,NS_NET146_L_F1_(38),32507a10-1eed-4a3f-820c-bc187f3b052e,,,,"cosPhiFixed:{(0.00,1.00)}",2.0618600845336914,h0 +d5b04d0c-bdda-450b-b939-aec8af923eea,0.9700000286102295,false,4000.0,NS_NET136_L_S3_2(5),b46d4395-6724-4830-ba55-357e81fc2814,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +040e8122-1873-4622-952d-87ddef148e7e,0.949999988079071,false,4000.0,NS_NET126_L_F2_(1),196fe620-d4a7-45f9-93ad-0579e2bcbb9a,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +8052a8a9-d5a5-481e-a772-87f71ee8fbb9,0.9700000286102295,false,4000.0,NS_NET116_L_S2_3(3),df9c3d91-41a0-4e49-bb1f-1cd2a8fd9a2e,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +d3b5447b-a2ba-4f17-a10c-bd6354ab2338,0.9700000286102295,false,4000.0,NS_NET136_L_S1_2(5),032768b4-2426-4abf-806b-83813ac5137a,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +08a60d08-3a12-4263-a831-274f3b374cbb,0.9700000286102295,false,4000.0,MS3_Last_03,e4502c52-b4d7-4082-a583-b5688d8244e0,,,,"cosPhiFixed:{(0.00,1.00)}",400.0,h0 +bc54e624-8931-4188-9405-950e8deae723,0.9700000286102295,false,4000.0,NS_NET136_L_S1_3(6),eb95ff15-56db-4463-bb54-0ee131167812,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +62fad34c-a778-4140-a13d-dee5f0af255d,0.9700000286102295,false,4000.0,NS_NET126_L_F1_(33),b425b28e-48a8-4ec4-a15a-387fcfb79895,,,,"cosPhiFixed:{(0.00,1.00)}",2.0618600845336914,h0 +dc34b951-89f4-4e28-8f04-3e6522bfa0c9,0.9700000286102295,false,4000.0,NS_NET116_L_S1_4(7),b3a7431d-89b0-41cb-87a9-5853890796cd,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +c1049c54-1558-4d61-b47f-004b17e38770,0.949999988079071,false,4000.0,NS_NET126_L_F4_(16),b8fa1f73-223c-4b08-a140-44f12484cce3,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +07ba8eae-b76d-4034-b378-a3ef8134fc2b,0.949999988079071,false,4000.0,NS_NET126_L_F2_(27),daed3552-e382-4153-95be-97f17e2c53e5,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +9413bafe-4537-4247-ae22-8b3d03bf6309,0.949999988079071,false,4000.0,NS_NET146_L_F1_(16),09ac8949-2b79-41d7-b56f-a58f20036df2,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +ec81e030-4dc6-462a-9218-b5c791e82da7,0.949999988079071,false,4000.0,NS_NET146_L_F4_(5),d7023c15-adb7-4d56-9f86-b182611a47ef,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +2c90248b-ce63-492c-a2e1-2bd66a3f3287,0.9700000286102295,false,4000.0,NS_NET136_L_S3_5(8),3bc8235b-03b5-489b-81a2-58d520fbe28e,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +1107328f-3c13-4f0b-bde3-1d9580cf40db,0.949999988079071,false,4000.0,NS_NET146_L_F3_(12),f6eff0d1-af6b-46ce-b430-4d30976ec08f,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +8387b2f1-1e5f-4d85-8ca1-a78a44b09788,0.949999988079071,false,4000.0,NS_NET126_L_F2_(5),c8b1fd67-2f03-4153-8ed3-284e7a721ec5,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +73c923b1-49ef-49b6-863f-8badb0915f70,0.9700000286102295,false,4000.0,NS_NET136_L_S1_5(2),926d6113-933f-49e3-9529-a3035acdc9b2,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +f60efe06-32af-466f-9359-52cc8a59b985,0.949999988079071,false,4000.0,NS_NET126_L_F2_(17),c5457e35-ad81-4427-9d3a-99e4c44ccae8,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +12f5a119-679c-4198-b133-a4596816f6d1,0.949999988079071,false,4000.0,NS_NET146_L_F2_(14),9aaf57c4-cc5c-4a01-8c2c-72bc7e231cc9,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +acc82c39-9615-4a9b-83a5-76c4704cbee0,0.949999988079071,false,4000.0,NS_NET146_L_F3_(13),bdf97a4d-622c-4251-8183-8b1a696f376e,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +66f54dc9-83dc-435d-9c21-3361838e88d6,0.949999988079071,false,4000.0,NS_NET126_L_F3_(14),df8df8d2-3494-4da9-8d1b-f913d15f520f,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +f2f13d1d-3643-4d94-b519-94ea266b8816,0.9700000286102295,false,4000.0,NS_NET116_L_S3_5(3),b9a28095-68f7-44c1-9ccc-6efc5ea84c59,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +180167d5-7277-407f-a269-da5d2f1e30f0,0.9700000286102295,false,4000.0,NS_NET136_L_S2_2(3),cbcfc3b6-ac90-4215-975c-a033f5cf9912,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +99a0a508-d25a-4136-8300-40a676832d35,0.9700000286102295,false,4000.0,NS_NET136_L_S2_3(2),fd534474-cd65-47aa-8005-dc50d17d6920,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +146fba6b-bbbe-4f3b-ba51-2f3a2c31b118,0.949999988079071,false,4000.0,NS_NET126_L_F1_(22),c317a6cd-428b-4c36-8233-91d0c4e2717a,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +96dbdf3b-98cd-45de-92e0-3743c609b08e,0.9700000286102295,false,4000.0,NS_NET136_L_S1_4(2),ed4697fd-016c-40c2-a66b-e793878dadea,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +2c970df7-5644-4665-835a-825b8df8aaf4,0.949999988079071,false,4000.0,NS_NET146_L_F4_(4),00d4a837-f09c-41df-bed1-dfdb78387116,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +d24c0d3d-bfe6-4ae6-b707-eb781d7f7d2a,0.9700000286102295,false,4000.0,NS_NET136_L_S3_1(8),416fa5eb-2f72-46c3-978f-6a0ebb714a40,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +9367b934-d77d-4f3b-b5e6-0692ec6789a3,0.9700000286102295,false,4000.0,NS_NET116_L_S2_2(7),d53ff076-dadd-44f8-85d4-68f48991f7d0,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +397c7198-feee-4f46-9149-1ef9d31d9ba2,0.9700000286102295,false,4000.0,MS3_Last_01,bb59ca46-1f2e-41c9-9723-90b306f043cd,,,,"cosPhiFixed:{(0.00,1.00)}",400.0,h0 +6993add7-7f94-4f50-b87a-0b77dc41c421,0.9700000286102295,false,4000.0,NS_NET116_L_S1_3(6),e4c8b492-965c-4b5a-8d14-e8ff2c027ce9,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +a9bb2858-c56d-4594-a364-fcfaf448d0e5,0.9700000286102295,false,4000.0,NS_NET116_L_S3_3(7),d69efff2-ba8b-4aa6-a4a1-27267964147a,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +54f64be5-5966-4c66-8cfa-dd688e59e992,0.9700000286102295,false,4000.0,NS_NET116_L_S3_1(4),4a6f6058-e654-464d-9367-2dca7185c6d7,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +bc617ea3-3b85-4ba8-8b12-f243f077d6bb,0.9700000286102295,false,4000.0,NS_NET136_L_S2_4(4),81cd3f38-867b-4a71-ba22-cb33834e0e58,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +513e31ea-560d-4e33-b1ec-c1aca5f63339,0.9700000286102295,false,4000.0,NS_NET116_L_S1_3(5),e4c8b492-965c-4b5a-8d14-e8ff2c027ce9,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +5f825da0-bf7e-4846-9601-9049cac0f958,0.9700000286102295,false,4000.0,NS_NET136_L_S2_1(3),4e188ac9-e507-46b1-b8e2-376cf7c6ceb1,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +cdd0ae9a-c06e-4234-aea3-255f359dbe64,0.949999988079071,false,4000.0,NS_NET146_L_F3_(16),3ec2f2a0-36a3-4d11-88ee-cc4df001e876,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +50c89980-8da2-4e98-8602-e2f0b560e7c4,0.949999988079071,false,4000.0,NS_NET146_L_F1_(8),d5489e1b-0e7e-4ca9-a362-09c23576a622,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +a00956d5-6648-484c-a485-b3491c5181c2,0.949999988079071,false,4000.0,NS_NET126_L_F1_(20),36cda100-86ae-4a20-ac71-20af603ac0cf,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +ab77ac85-7990-4b93-a4e7-6fb812ad345a,0.949999988079071,false,4000.0,NS_NET146_L_F3_(3),8b92ad35-8b0a-49b9-9f66-f42ddfeb9c65,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +6559c5f4-c9ed-4f01-af36-72d18f04ca9a,0.949999988079071,false,4000.0,NS_NET126_L_F1_(15),41c0087f-ce27-4da3-97d2-92d711b639b4,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +bab50a41-657d-454b-91eb-3e64de845098,0.9700000286102295,false,4000.0,NS_NET136_L_S1_3(4),eb95ff15-56db-4463-bb54-0ee131167812,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +4958e21c-cf9d-4bae-ad3f-a1612171c398,0.949999988079071,false,4000.0,NS_NET126_L_F1_(7),fc7821d2-ac64-483e-b520-38d9971f4db0,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +3025fcc5-7a14-4bbe-93a1-0b2533306ea1,0.949999988079071,false,4000.0,NS_NET146_L_F1_(11),666757e2-292e-473c-ac9c-04c0786574bc,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +53347503-af44-482a-8b97-d1b638bb3634,0.949999988079071,false,4000.0,NS_NET146_L_F2_(23),ce513b50-b57a-41e2-b744-4c0fd2ae97d0,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +0de47e33-a4fb-4a86-839d-ec9ad49a8414,0.9700000286102295,false,4000.0,NS_NET136_L_S2_1(6),4e188ac9-e507-46b1-b8e2-376cf7c6ceb1,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +e035cc33-0a53-4dc4-b35d-f3f44764a5aa,0.9700000286102295,false,4000.0,NS_NET136_L_S2_4(1),81cd3f38-867b-4a71-ba22-cb33834e0e58,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +903c6f31-7c78-4d1e-b4ee-bf0dcbb9e938,0.949999988079071,false,4000.0,NS_NET146_L_F1_(10),6c24b464-790a-4aae-bb11-766718f07cd5,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +422a643a-04d2-480b-b107-e8582b36e641,0.9700000286102295,false,4000.0,NS_NET136_L_S2_4(7),81cd3f38-867b-4a71-ba22-cb33834e0e58,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +9993f48a-8ee2-49b7-af31-afbfa3690c45,0.9700000286102295,false,4000.0,MS3_Last_07,40b0f497-96a3-49d9-9503-8fa67a5b532a,,,,"cosPhiFixed:{(0.00,1.00)}",2400.0,h0 +f870937a-6644-4ef8-9bfd-15835471e775,0.9700000286102295,false,4000.0,NS_NET126_L_F1_(30),519ace7e-fd3f-4797-b14b-36c1694b00cd,,,,"cosPhiFixed:{(0.00,1.00)}",2.0618600845336914,h0 +ed173f7f-071e-4687-b7fe-b59616148ee3,0.949999988079071,false,4000.0,NS_NET126_L_F4_(17),7125de08-1d28-409a-8b23-023a0294def5,,,,"cosPhiFixed:{(0.00,1.00)}",0.10000000149011612,h0 +eb8622e3-0dd8-42e4-ab49-23b5cec0eb9c,0.9700000286102295,false,4000.0,NS_NET116_L_S3_4(8),36dccefc-f04c-493f-bb88-11343583bf9f,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +038c506d-59b4-406b-88b0-7f74719c55e7,0.9700000286102295,false,4000.0,NS_NET136_L_S3_5(3),3bc8235b-03b5-489b-81a2-58d520fbe28e,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +25be1a94-a0cc-4de5-acc4-097d9e8639ff,0.9700000286102295,false,4000.0,NS_NET116_L_S3_3(8),d69efff2-ba8b-4aa6-a4a1-27267964147a,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +449eaff2-92ca-4075-ae9f-2d517e7f0642,0.9700000286102295,false,4000.0,NS_NET116_L_S2_3(6),df9c3d91-41a0-4e49-bb1f-1cd2a8fd9a2e,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +d08a8e2d-0ab1-4d89-b111-6a8efe2a76af,0.9700000286102295,false,4000.0,NS_NET136_L_S1_1(1),535b3fa4-ed67-4ab1-9a68-e7db83e05967,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +a1a11124-0e04-4a0c-bab9-eb68c9f20a9e,0.949999988079071,false,4000.0,NS_NET126_L_F3_(28),e0a6c8e9-7d1f-4965-98b9-e543bacb6b83,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +5596dd40-f34f-4ec4-bf80-17fcf122a67b,0.9700000286102295,false,4000.0,NS_NET136_L_S1_5(6),926d6113-933f-49e3-9529-a3035acdc9b2,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +7f6b1274-7b1b-4313-8027-6fc4a31f34e0,0.9700000286102295,false,4000.0,NS_NET116_L_S2_4(4),e05c68b1-11cd-43fd-a4b2-31e4db380c78,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +9abc4242-f58f-474a-99fc-613e083e2589,0.9700000286102295,false,4000.0,NS_NET116_L_S1_3(4),e4c8b492-965c-4b5a-8d14-e8ff2c027ce9,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +e733ea74-1c51-4592-9fb3-cc2d0a007450,0.9700000286102295,false,4000.0,NS_NET116_L_S2_4(3),e05c68b1-11cd-43fd-a4b2-31e4db380c78,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +04063357-c213-4cc9-a870-9cc11ac4ad92,0.9700000286102295,false,4000.0,NS_NET116_L_S1_1(7),8a50fb37-81cf-47c9-8850-a12b4391e2e7,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +f231c4e2-2872-4d83-b486-894d846dc4d7,0.949999988079071,false,4000.0,NS_NET146_L_F2_(10),41414318-73e3-4bdc-8147-570a96b28d37,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +6f97361f-d4e6-45b5-9bf2-d880d42eae25,0.949999988079071,false,4000.0,NS_NET126_L_F3_(17),462ca5a4-7ac1-4dbe-a1cf-0bb6b9b9b717,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +7794309a-7ecd-436d-ae38-51bbdab5df11,0.949999988079071,false,4000.0,NS_NET146_L_F3_(6),01bdd8b2-145f-42b3-80e3-a2366dea1044,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +a6ce4a93-174a-4ca0-92bb-f09abc579d81,0.9700000286102295,false,4000.0,NS_NET136_L_S3_2(1),b46d4395-6724-4830-ba55-357e81fc2814,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +2d758bef-0a8a-4dac-aca6-556ace61ec84,0.949999988079071,false,4000.0,NS_NET126_L_F3_(32),7d44fe44-8c85-4b61-9d5c-0c4304e47ba8,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +beb7a9e2-4394-4808-af58-d984ab871f98,0.9700000286102295,false,4000.0,NS_NET116_L_S2_2(3),d53ff076-dadd-44f8-85d4-68f48991f7d0,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +66f00451-3542-41f2-adcf-24068c870afc,0.9700000286102295,false,4000.0,NS_NET136_L_S2_1(2),4e188ac9-e507-46b1-b8e2-376cf7c6ceb1,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +80d0b6a9-8d08-4262-81a0-83b13beaad45,0.9700000286102295,false,4000.0,MS1_Last_02,32b3bb19-c52a-4a19-890a-94a8918d38a9,,,,"cosPhiFixed:{(0.00,1.00)}",400.0,h0 +8d1ee87d-73a7-46eb-b174-602683d702d9,0.9700000286102295,false,4000.0,NS_NET146_L_F1_(28),012c9eee-86c2-494c-adcc-bbfc481e4a46,,,,"cosPhiFixed:{(0.00,1.00)}",2.0618600845336914,h0 +11bc6378-bb54-4ddb-846f-1488baaf1c00,0.9700000286102295,false,4000.0,NS_NET116_L_S3_3(4),d69efff2-ba8b-4aa6-a4a1-27267964147a,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +5ab2e1b6-7c4b-4cba-8528-94bda71c3dcd,0.9700000286102295,false,4000.0,MS1_Last_03,787237ad-b3a8-4f2c-ab70-31c5113d82d7,,,,"cosPhiFixed:{(0.00,1.00)}",400.0,h0 +2a9149a4-4778-41d8-8865-090499833016,0.9700000286102295,false,4000.0,NS_NET116_L_S2_1(1),39112046-8953-4e73-a5d9-6a8183a77436,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +79a2d93b-3583-4e90-bc40-9e7ff84bf0a2,0.949999988079071,false,4000.0,NS_NET146_L_F2_(15),d82fae59-844a-4c85-997e-326dd876137c,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +95be2f70-bd5a-4785-983c-2aa7eba6546b,0.949999988079071,false,4000.0,NS_NET146_L_F3_(26),bd288184-99d8-4233-bb3d-484f3922200a,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +f3168cab-a847-4314-9bf9-4dbe269c1c3c,0.949999988079071,false,4000.0,NS_NET146_L_F3_(8),6bc0dda8-25f4-48a6-9645-21e1eed5c6ff,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +2eca146b-7c7e-47fa-a0be-807b7fc72fd5,0.949999988079071,false,4000.0,NS_NET126_L_F3_(4),bf7e7268-2fb6-4948-ace6-9037ae148fa3,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +89971afc-919e-4153-92b2-f0a43ad0e535,0.9700000286102295,false,4000.0,NS_NET126_L_F1_(27),c81d6099-66b2-45d8-b8a4-c19ceb862f6e,,,,"cosPhiFixed:{(0.00,1.00)}",2.0618600845336914,h0 +a8e26f05-54f0-4da7-abfa-228661833e03,0.949999988079071,false,4000.0,NS_NET126_L_F3_(18),9502fd3e-c00f-48fa-8b56-c72d21f80f3c,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +72d00bfa-4967-485a-b5a3-519a6826fa9c,0.9700000286102295,false,4000.0,NS_NET116_L_S1_2(4),3e21f3a1-2c9c-4138-bcc9-466b004609ed,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +de2b452a-9eee-4481-b0f0-72d9ab56a4b5,0.9700000286102295,false,4000.0,NS_NET136_L_S2_3(1),fd534474-cd65-47aa-8005-dc50d17d6920,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +924dbbfa-abb0-42b2-83a9-15897bf5806e,0.9700000286102295,false,4000.0,NS_NET136_L_S3_3(5),2c5d4eda-6b33-4ad5-a135-7037baa7d6eb,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +8d326225-ff42-40ab-b58e-adc0cb32c9ff,0.949999988079071,false,4000.0,NS_NET146_L_F3_(9),6570535c-0d2e-4846-9951-21559902f67a,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +dd893829-b4af-4cf1-9d70-79ae68b91bf0,0.9700000286102295,false,4000.0,NS_NET136_L_S1_4(6),ed4697fd-016c-40c2-a66b-e793878dadea,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +ab476579-7fb3-408f-a065-73f6d2140fb2,0.9700000286102295,false,4000.0,NS_NET136_L_S3_5(5),3bc8235b-03b5-489b-81a2-58d520fbe28e,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +7b8abd75-9967-4505-b919-3accd78908e4,0.949999988079071,false,4000.0,NS_NET146_L_F3_(19),810bebb0-0d5c-4899-b213-3207be661248,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +58b9f934-f7c4-4335-9894-3c80d9e6b852,0.949999988079071,false,4000.0,HS_NET1_L_S3,33f29587-f63e-45b7-960b-037bda37a3cb,,,,"cosPhiFixed:{(0.00,1.00)}",42105.30078125,h0 +b8ad6547-aa55-4fca-ad0c-b5a0078b2203,0.949999988079071,false,4000.0,NS_NET126_L_F1_(14),b7baa286-cbe2-4143-a08f-4e025af47529,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +7e337720-59f5-4d3f-bf95-71c6228587f3,0.949999988079071,false,4000.0,NS_NET146_L_F1_(17),0d94a5ea-3a13-48ba-a27f-b2903841c334,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +d4d3ea3e-cce2-480b-9a7c-bbdd1a7c96ad,0.949999988079071,false,4000.0,NS_NET126_L_F1_(8),f717b05b-f4e7-43d9-af9e-638e2badee5a,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +3b51a0c6-060f-40ce-b207-6146fde8e724,0.9700000286102295,false,4000.0,NS_NET136_L_S2_1(8),4e188ac9-e507-46b1-b8e2-376cf7c6ceb1,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +89f93344-8dc3-46ea-805b-8c43bffc7577,0.949999988079071,false,4000.0,NS_NET126_L_F4_(15),55b3d03f-2204-4ab3-84cc-a28476868c9d,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +dc65cd27-84a2-49a6-aa22-d9c1968a72b4,0.949999988079071,false,4000.0,NS_NET126_L_F4_(8),75f2dfb9-75a0-496d-9c44-79e7df54c1df,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +ff0b995a-86ff-4f4d-987e-e475a64f2180,0.9700000286102295,false,4000.0,NS_NET116_L_S1_2(1),3e21f3a1-2c9c-4138-bcc9-466b004609ed,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +7c03d124-df4a-46c3-9b74-66bd888f750e,0.9700000286102295,false,4000.0,NS_NET116_L_S3_1(7),4a6f6058-e654-464d-9367-2dca7185c6d7,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +7a17120f-8522-4eca-95aa-f6b5d985103b,0.9700000286102295,false,4000.0,NS_NET116_L_S3_4(7),36dccefc-f04c-493f-bb88-11343583bf9f,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +86cbef43-bde0-41a6-a684-f42fdb4ba527,0.9700000286102295,false,4000.0,NS_NET136_L_S1_4(4),ed4697fd-016c-40c2-a66b-e793878dadea,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +f880a0dd-991c-4646-a0a4-c6c877171870,0.9700000286102295,false,4000.0,MS4_Last_04,890f2162-b4cb-49e7-a16f-4b552c5e245c,,,,"cosPhiFixed:{(0.00,1.00)}",320.0,h0 +c7a0e7d2-276f-41e7-bfbc-f11fac26a0e1,0.9700000286102295,false,4000.0,MS3_Last_05,86dfce49-05b2-4208-a6ae-877c3e98e6be,,,,"cosPhiFixed:{(0.00,1.00)}",320.0,h0 +32be027e-1ee2-41bc-9fe5-18daa3613efa,0.949999988079071,false,4000.0,NS_NET126_L_F1_(2),a7ebd30b-b843-405f-9fae-ca6b489601f9,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +5f1b7472-2a01-4203-8318-878b1a4460c5,0.9700000286102295,false,4000.0,NS_NET116_L_S3_4(5),36dccefc-f04c-493f-bb88-11343583bf9f,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +cb65c2bc-fb36-4338-9a13-34bd999f4fa5,0.9700000286102295,false,4000.0,NS_NET116_L_S2_4(8),e05c68b1-11cd-43fd-a4b2-31e4db380c78,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +a12570e4-afeb-4af8-a86c-9e804eea4886,0.9700000286102295,false,4000.0,NS_NET116_L_S3_5(1),b9a28095-68f7-44c1-9ccc-6efc5ea84c59,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +3ce5abcb-0eb1-403f-9fca-90d255619cc5,0.949999988079071,false,4000.0,NS_NET146_L_F2_(13),49e14db3-a4bc-464a-b606-653ac8a604dd,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +1308b834-4b0c-4c91-b5fc-8529368005ea,0.949999988079071,false,4000.0,NS_NET146_L_F2_(25),011e3794-3341-4376-839c-3f5a452e15ab,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +9f0d4b5f-7563-40bc-b20e-bc54a96e9019,0.9700000286102295,false,4000.0,NS_NET146_L_F1_(30),9f95c733-71e2-4bf0-a27a-70144518ea2c,,,,"cosPhiFixed:{(0.00,1.00)}",2.0618600845336914,h0 +8f0150c7-b217-43ca-85d5-c1e4d2e903d0,0.9700000286102295,false,4000.0,NS_NET136_L_S3_1(2),416fa5eb-2f72-46c3-978f-6a0ebb714a40,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +67379832-1cfb-4015-ac96-0fe499463c42,0.949999988079071,false,4000.0,NS_NET126_L_F4_(3),1cb45ba0-d2c2-45a6-9bb2-5f374e30a6e9,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +12c58b41-2ebb-4bc0-8ca2-a3693d5d5f8b,0.949999988079071,false,4000.0,NS_NET126_L_F3_(1),2fe5100e-d4e8-4bc4-9c7c-bcc0fc56f518,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +0610df61-bdb9-45d1-ab48-a72dca4079c4,0.949999988079071,false,4000.0,NS_NET146_L_F1_(1),4f28e734-5148-4caf-ac64-270231740cbf,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +28a6872b-abf5-412e-b887-b0503addaa7a,0.9700000286102295,false,4000.0,NS_NET116_L_S3_3(5),d69efff2-ba8b-4aa6-a4a1-27267964147a,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +599e7b5f-7a78-4bb4-a3c3-e6f2779bbda2,0.9700000286102295,false,4000.0,NS_NET136_L_S3_5(2),3bc8235b-03b5-489b-81a2-58d520fbe28e,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +0944b3b6-15e3-4704-b50d-fa1e407ade7e,0.9700000286102295,false,4000.0,NS_NET116_L_S1_3(7),e4c8b492-965c-4b5a-8d14-e8ff2c027ce9,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +3a5e7e35-53ad-48da-89b9-98342a9875ac,0.9700000286102295,false,4000.0,NS_NET136_L_S1_3(7),eb95ff15-56db-4463-bb54-0ee131167812,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +c3434742-e4f0-49e5-baa7-c1e3045c732c,0.9700000286102295,false,4000.0,NS_NET116_L_S1_5(1),92301422-94ae-48ab-89c7-a69eea9450b2,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +eed8fa68-08b5-49f3-a6d7-2632fe7b13b9,0.9700000286102295,false,4000.0,NS_NET116_L_S3_1(3),4a6f6058-e654-464d-9367-2dca7185c6d7,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +3e3225f9-2dd9-402d-9a0d-1d8cde60b1f6,0.949999988079071,false,4000.0,NS_NET126_L_F2_(4),cdda8fa5-9a18-4f3e-951d-1ec0009191b4,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +245666cd-881b-44ca-9b47-536c96e15bce,0.9700000286102295,false,4000.0,NS_NET116_L_S2_3(2),df9c3d91-41a0-4e49-bb1f-1cd2a8fd9a2e,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +9b4f4a8b-3aaa-4b77-afdb-049d2b83869b,0.9700000286102295,false,4000.0,NS_NET136_L_S3_4(6),2a816043-d1d2-44a6-8a9b-f61a4933997b,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +d95c7612-af94-4ac4-94a0-a1dca839f33a,0.9700000286102295,false,4000.0,NS_NET116_L_S3_2(4),550ebca7-1455-44eb-9431-ffbf08e58bd4,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +5c3fb165-f374-44fa-802e-e82e5a2538f0,0.9700000286102295,false,4000.0,NS_NET136_L_S2_2(4),cbcfc3b6-ac90-4215-975c-a033f5cf9912,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +550f9346-fe14-46ef-bd54-00980834e0d6,0.9700000286102295,false,4000.0,NS_NET126_L_F1_(34),17f7a477-d9c7-4f58-8ba0-1a2694dcc874,,,,"cosPhiFixed:{(0.00,1.00)}",2.0618600845336914,h0 +be985e5e-19b6-49c4-bb64-f37a627be13b,0.9700000286102295,false,4000.0,NS_NET126_L_F1_(35),c5f7ffbc-2e23-46d4-9e0c-356008e5ff56,,,,"cosPhiFixed:{(0.00,1.00)}",2.0618600845336914,h0 +9e5845cb-9ad1-42c6-8630-724375a4e323,0.9700000286102295,false,4000.0,NS_NET136_L_S1_1(8),535b3fa4-ed67-4ab1-9a68-e7db83e05967,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +10963efb-44d7-49bf-b926-c2d29239de60,0.949999988079071,false,4000.0,NS_NET126_L_F2_(3),8f422111-67d7-42f0-9f80-fbd0ec64c4fc,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +11e776fa-ecc1-4332-821f-d7e56758b988,0.9700000286102295,false,4000.0,NS_NET116_L_S2_2(1),d53ff076-dadd-44f8-85d4-68f48991f7d0,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +689527be-31a0-4791-970d-8542e367401c,0.949999988079071,false,4000.0,NS_NET126_L_F2_(23),9b509c7d-4647-40fd-b03e-7ab919215cc6,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +a610a50c-de39-46e6-b53b-95e3868d1072,0.949999988079071,false,4000.0,NS_NET126_L_F2_(11),6678c226-c5d2-4ce3-9728-dc1163be799f,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +3857ce77-a630-4b43-a1a1-6bebc0817e1d,0.9700000286102295,false,4000.0,NS_NET136_L_S2_4(2),81cd3f38-867b-4a71-ba22-cb33834e0e58,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +63fb1af5-91e5-472b-b798-b2846cf701ba,0.949999988079071,false,4000.0,NS_NET146_L_F2_(16),8f2ba96f-a47a-46d3-b5a1-d19de0a32419,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +1a88ba6f-9005-432d-9a8f-54a48c90015a,0.9700000286102295,false,4000.0,MS4_Last_05,ee384ace-040e-4f21-8a8a-d702ab51af55,,,,"cosPhiFixed:{(0.00,1.00)}",320.0,h0 +6bd61b8c-2b53-4fc8-8e35-b17ed81ba8c9,0.9700000286102295,false,4000.0,NS_NET136_L_S3_4(7),2a816043-d1d2-44a6-8a9b-f61a4933997b,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +d5e593f1-727e-4983-8abe-92a328aa203b,0.9700000286102295,false,4000.0,NS_NET116_L_S2_5(2),32bd37df-255b-4eb2-9d16-5b711132eee6,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +b52b4bea-014e-4aad-8481-2f2761957f69,0.9700000286102295,false,4000.0,NS_NET136_L_S3_4(4),2a816043-d1d2-44a6-8a9b-f61a4933997b,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +ef07774d-107b-4536-8d1d-45c28f755a80,0.9700000286102295,false,4000.0,NS_NET136_L_S3_3(6),2c5d4eda-6b33-4ad5-a135-7037baa7d6eb,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +46644e3e-b00c-4707-ae8d-94fed9f0adcd,0.9700000286102295,false,4000.0,NS_NET126_L_F1_(38),06b7f21a-d6d7-4ec0-94c6-141845f14986,,,,"cosPhiFixed:{(0.00,1.00)}",2.0618600845336914,h0 +f2284780-6019-4864-bf29-915330717f5b,0.9700000286102295,false,4000.0,NS_NET116_L_S2_5(5),32bd37df-255b-4eb2-9d16-5b711132eee6,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +8c2ea045-0890-4ee5-8d66-0ce5f5eba7d1,0.949999988079071,false,4000.0,NS_NET146_L_F4_(12),f8dd541b-4a4d-417e-89ff-a9650ee3aac2,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +598f0d53-7c8f-435b-b333-95b6f4d359f2,0.949999988079071,false,4000.0,NS_NET126_L_F3_(31),67af7db0-0fd8-4657-bb4f-43a2141b9f73,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +520e2b61-ef52-406a-bc3d-83fd47da2696,0.949999988079071,false,4000.0,NS_NET146_L_F4_(13),b608d71e-3ede-4156-a015-3f6e1d22242a,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +8bad5752-c9c1-4669-802d-b1c4c7bbb909,0.9700000286102295,false,4000.0,NS_NET136_L_S3_1(5),416fa5eb-2f72-46c3-978f-6a0ebb714a40,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +3df803d8-4af6-426e-a51a-4b736ff06d51,0.949999988079071,false,4000.0,NS_NET146_L_F2_(20),2aa2d409-8bb2-477d-ac7a-6439552e136a,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +59f1999e-008d-47f0-b99d-1305fcb8f525,0.9700000286102295,false,4000.0,NS_NET136_L_S1_4(7),ed4697fd-016c-40c2-a66b-e793878dadea,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +deb6456a-d472-4f1e-8698-006e8cd51dfc,0.9700000286102295,false,4000.0,NS_NET136_L_S1_4(5),ed4697fd-016c-40c2-a66b-e793878dadea,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +0290a7de-8c73-44d4-9a06-cf469d20c90c,0.9700000286102295,false,4000.0,NS_NET116_L_S1_4(3),b3a7431d-89b0-41cb-87a9-5853890796cd,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +ea515ef0-c8e1-4e3f-9420-577ba394c7dc,0.9700000286102295,false,4000.0,NS_NET136_L_S3_3(7),2c5d4eda-6b33-4ad5-a135-7037baa7d6eb,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +666ac620-2151-430e-a9a1-624be6c61cb8,0.9700000286102295,false,4000.0,NS_NET116_L_S3_5(5),b9a28095-68f7-44c1-9ccc-6efc5ea84c59,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +2f4df67a-e33a-4a1b-9caa-41bfb4408b8c,0.9700000286102295,false,4000.0,NS_NET116_L_S2_2(8),d53ff076-dadd-44f8-85d4-68f48991f7d0,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +8d50a47b-95ce-4a8e-84a3-80d5781dcc53,0.9700000286102295,false,4000.0,MS4_Last_01,77fc154f-f41c-4e75-bbb1-b7fca68b2f4e,,,,"cosPhiFixed:{(0.00,1.00)}",400.0,h0 +4cbcffbf-d9c8-463a-8f11-6990fbda235e,0.9700000286102295,false,4000.0,NS_NET116_L_S1_1(2),8a50fb37-81cf-47c9-8850-a12b4391e2e7,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +63374b45-aa28-4e06-85c2-704c00754ba8,0.949999988079071,false,4000.0,NS_NET146_L_F1_(20),7d45f0ab-1e6b-452f-b665-c4846cf046f5,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +16f7000e-1f95-4003-bbbf-8c73cfd02763,0.9700000286102295,false,4000.0,NS_NET116_L_S3_2(2),550ebca7-1455-44eb-9431-ffbf08e58bd4,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +3ad0235e-751b-4682-89a5-b359aef0dd98,0.9700000286102295,false,4000.0,NS_NET136_L_S1_3(2),eb95ff15-56db-4463-bb54-0ee131167812,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +2b02fad4-245d-4ada-ae5f-0252f2aa59f1,0.949999988079071,false,4000.0,NS_NET146_L_F2_(11),f26b5511-3c50-42d5-97c2-be408330eb84,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +62b0b771-b773-4b25-af1d-bbd8a7ad68d4,0.949999988079071,false,4000.0,NS_NET126_L_F2_(8),366a70fb-8d7f-4201-9eca-0fcbc839239d,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +aff03ab3-9595-499f-931c-8730b1350a2c,0.949999988079071,false,4000.0,NS_NET146_L_F2_(12),8254d91b-e5da-4402-bb8f-301eafa09d28,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +81a6ed8d-f29e-4478-bbf3-ccb6514922f2,0.949999988079071,false,4000.0,NS_NET146_L_F4_(7),bea7ca63-3ae4-4280-8127-fe2c7fd5ea2d,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +a7de4997-eddc-4306-b1ac-982c1872863b,0.949999988079071,false,4000.0,NS_NET146_L_F1_(6),e3c3c6a3-c383-4dbb-9b3f-a14125615386,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +4642d648-b0dd-4597-a3bd-2cc1fce74f27,0.9700000286102295,false,4000.0,NS_NET116_L_S3_1(1),4a6f6058-e654-464d-9367-2dca7185c6d7,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +1fb9be59-d27c-4748-a090-db5a58063d82,0.949999988079071,false,4000.0,NS_NET126_L_F4_(6),e3a40690-d085-4796-9fcb-48d776e58594,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +d957a9c6-500e-457d-918b-7f6c4e560bbc,0.949999988079071,false,4000.0,NS_NET146_L_F1_(15),00bbc353-d47e-4865-a696-fe5d29b9e6a2,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +5aeaccc2-f9cd-4292-9b9a-2e05d5c63fe4,0.9700000286102295,false,4000.0,NS_NET116_L_S1_2(6),3e21f3a1-2c9c-4138-bcc9-466b004609ed,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +209cebb3-6706-49d0-af2c-b2ae23ca3873,0.9700000286102295,false,4000.0,MS4_Last_03,85ea3976-1779-4d46-bd6f-dfd36427ebdf,,,,"cosPhiFixed:{(0.00,1.00)}",400.0,h0 +17a02ab8-32b2-436d-8aab-04fbd3809c87,0.949999988079071,false,4000.0,NS_NET146_L_F3_(25),c6c177b0-5004-4db0-8cde-6293330a4757,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +1fbefcb1-57ec-4b86-8b7e-c892f0e6b179,0.9700000286102295,false,4000.0,NS_NET116_L_S3_4(6),36dccefc-f04c-493f-bb88-11343583bf9f,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +fd2e19b6-d5e3-4776-9456-8787a2160d9d,0.9700000286102295,false,4000.0,NS_NET116_L_S1_4(1),b3a7431d-89b0-41cb-87a9-5853890796cd,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +2ab66e57-dd5f-4295-a6f5-f017fb4db8b1,0.9700000286102295,false,4000.0,NS_NET136_L_S3_3(8),2c5d4eda-6b33-4ad5-a135-7037baa7d6eb,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +c7834ac4-2f72-483e-8ecf-1d0ce715716b,0.9700000286102295,false,4000.0,NS_NET116_L_S2_1(6),39112046-8953-4e73-a5d9-6a8183a77436,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +b89b8560-b729-46d5-8aa1-3c678dd30be4,0.9700000286102295,false,4000.0,NS_NET136_L_S2_4(5),81cd3f38-867b-4a71-ba22-cb33834e0e58,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +3b63c80f-a5c6-439b-97be-4e1efda58ccd,0.949999988079071,false,4000.0,NS_NET146_L_F2_(22),5862f526-783a-4218-a463-3cbf5de8dade,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +5f2d65fc-7e92-497e-8c51-ead1985d66fa,0.949999988079071,false,4000.0,NS_NET126_L_F2_(24),625bdd2c-a75f-46ef-850c-ca4704d56e55,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +c27ac6bb-5227-42d4-832f-985d69bc9c4e,0.949999988079071,false,4000.0,NS_NET146_L_F3_(1),22e58399-428f-4633-9ee4-e5fa0db68d6d,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +f1804def-a6f6-4603-bfd3-52968a2de732,0.9700000286102295,false,4000.0,MS2_Last_07,14a8dc4c-0906-402f-b073-6d6d4725d0cb,,,,"cosPhiFixed:{(0.00,1.00)}",2400.0,h0 +bcb5abf4-7b31-4860-af53-78ec457f21a2,0.949999988079071,false,4000.0,NS_NET146_L_F3_(30),7cff7ac7-2d18-4c4c-8e1b-893bb050c1ed,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +c58dc7e4-f6c5-47e1-a914-e566b8aa6385,0.9700000286102295,false,4000.0,NS_NET136_L_S2_2(1),cbcfc3b6-ac90-4215-975c-a033f5cf9912,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +ee726dbd-8a70-4d50-8cc3-cdda596166c7,0.9700000286102295,false,4000.0,NS_NET136_L_S3_3(3),2c5d4eda-6b33-4ad5-a135-7037baa7d6eb,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +c9689bd8-6717-49d5-90d9-a6245b5116e6,0.9700000286102295,false,4000.0,NS_NET116_L_S1_5(3),92301422-94ae-48ab-89c7-a69eea9450b2,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +c3df03ac-0dff-4304-b327-3e88d023f692,0.949999988079071,false,4000.0,NS_NET126_L_F1_(25),3a2f199c-2966-4b9a-939b-3a6c9924341c,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +72e4504c-0362-4fe0-a6be-43870f627f7f,0.9700000286102295,false,4000.0,NS_NET136_L_S1_5(8),926d6113-933f-49e3-9529-a3035acdc9b2,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +b3ce3d49-d4d5-4b76-a589-02d0c7faf5a5,0.9700000286102295,false,4000.0,NS_NET136_L_S2_5(6),c5af5a34-211a-4105-a8e1-f447140073c6,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +de3eef0c-2f09-4f57-a04b-dae5011fac7a,0.949999988079071,false,4000.0,NS_NET126_L_F4_(12),6a4547a8-630b-46e4-8144-9cd649e67c07,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +ab0d8c5c-fc68-4ae0-87a9-8edfa3b25339,0.949999988079071,false,4000.0,NS_NET126_L_F1_(4),ff947647-b551-41ae-bcfd-6af228250c96,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +7b040b43-011a-4402-a176-9b9b41ce0c37,0.9700000286102295,false,4000.0,NS_NET116_L_S2_3(1),df9c3d91-41a0-4e49-bb1f-1cd2a8fd9a2e,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +b47f1063-12e8-4b1f-a015-6c5be821a24e,0.949999988079071,false,4000.0,NS_NET126_L_F3_(22),61ee5ff6-eb38-4b27-a3f6-cb574d1f8b41,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +af4c1bfe-4e4c-437d-9eff-42060aaf4027,0.9700000286102295,false,4000.0,NS_NET136_L_S2_1(7),4e188ac9-e507-46b1-b8e2-376cf7c6ceb1,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +4c7ee262-a021-408a-aada-27677feeeec9,0.949999988079071,false,4000.0,NS_NET126_L_F1_(17),5fe9c522-37d0-48f8-b3b8-e91b956e39f6,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +3c9a2f9a-8cd0-42f2-9d16-f6314c741aa3,0.9700000286102295,false,4000.0,NS_NET136_L_S2_1(4),4e188ac9-e507-46b1-b8e2-376cf7c6ceb1,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +93128545-6977-41fa-8e20-5d7a930d80c9,0.9700000286102295,false,4000.0,NS_NET136_L_S1_2(3),032768b4-2426-4abf-806b-83813ac5137a,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +759ff1e6-5ad6-4701-bbe1-059c08a1781d,0.949999988079071,false,4000.0,NS_NET146_L_F4_(15),576840db-7d3c-417b-b587-28b222e740e1,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +b16bea09-e042-4bd1-837e-78125b0085dc,0.949999988079071,false,4000.0,NS_NET126_L_F1_(13),847fd5fc-b515-4a9d-8a6f-66df1e71ded2,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +7cee8d98-be5b-400c-9655-409e1eae9f6d,0.9700000286102295,false,4000.0,NS_NET136_L_S3_2(6),b46d4395-6724-4830-ba55-357e81fc2814,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +0c62dc7f-45a7-44e3-9240-f9ff9d62e4a0,0.949999988079071,false,4000.0,NS_NET126_L_F4_(13),da79c960-d35a-4193-9b06-2d4d57051706,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +bee4283a-0d36-4f98-a837-23d0667a6675,0.949999988079071,false,4000.0,NS_NET126_L_F3_(9),bbd210a5-eb85-4616-bdd0-72bbd3ed7ef9,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +a82e1da2-1af2-40d8-b8f9-b4027118d029,0.9700000286102295,false,4000.0,NS_NET116_L_S2_4(5),e05c68b1-11cd-43fd-a4b2-31e4db380c78,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +ef6f6592-1b85-4204-82e1-c33a6ed3d582,0.9700000286102295,false,4000.0,NS_NET136_L_S1_2(1),032768b4-2426-4abf-806b-83813ac5137a,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +66f30a61-7722-48a7-a527-99ff55e12754,0.9700000286102295,false,4000.0,NS_NET136_L_S1_4(8),ed4697fd-016c-40c2-a66b-e793878dadea,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +3f37f3bc-f9cf-4a55-96e4-ee4be9f22a63,0.9700000286102295,false,4000.0,NS_NET116_L_S2_4(2),e05c68b1-11cd-43fd-a4b2-31e4db380c78,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +388ecdb9-b7e1-429e-990b-b5124fac12cf,0.949999988079071,false,4000.0,NS_NET146_L_F2_(6),5071dd8c-bbc1-4c8d-a180-4492f80e183d,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +5012a529-b7d2-4f9e-a2d4-90641470cba2,0.9700000286102295,false,4000.0,NS_NET136_L_S3_2(8),b46d4395-6724-4830-ba55-357e81fc2814,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +3f903ef1-047f-4f28-9d9f-c35b2c440315,0.9700000286102295,false,4000.0,NS_NET116_L_S1_4(8),b3a7431d-89b0-41cb-87a9-5853890796cd,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +5f56df23-f5b3-42d0-9896-85015f7b1274,0.949999988079071,false,4000.0,NS_NET126_L_F2_(28),5d1cce49-e000-4a33-a0ea-f3685f8cc5a3,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +a265d035-d8ea-41e0-ad10-04e064b9a968,0.9700000286102295,false,4000.0,NS_NET136_L_S3_4(5),2a816043-d1d2-44a6-8a9b-f61a4933997b,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +95a1e026-be40-4209-9752-fbab3a626b87,0.949999988079071,false,4000.0,NS_NET146_L_F1_(2),ab3645a7-af26-480d-b1bd-5b0fa00dc83f,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +e9660cc3-b2b6-4b8d-8673-dd3bcb6305fe,0.9700000286102295,false,4000.0,NS_NET116_L_S2_1(2),39112046-8953-4e73-a5d9-6a8183a77436,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +fd17352b-b2ad-4e77-92cf-08b48a1ba757,0.9700000286102295,false,4000.0,NS_NET116_L_S1_2(2),3e21f3a1-2c9c-4138-bcc9-466b004609ed,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +080e6ab5-8021-43c0-bf9f-2424ec0a1de8,0.949999988079071,false,4000.0,NS_NET126_L_F3_(30),443c1513-fdeb-4e29-ae89-5ea47c0b1d3f,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +0ccf950e-a9bf-4de8-ac3f-5ca04a3f0b60,0.9700000286102295,false,4000.0,NS_NET136_L_S3_5(6),3bc8235b-03b5-489b-81a2-58d520fbe28e,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +62a4a30c-7bf2-4813-a00e-7002b8c56832,0.9700000286102295,false,4000.0,NS_NET136_L_S1_3(3),eb95ff15-56db-4463-bb54-0ee131167812,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +3feb112d-8a47-49eb-b719-d7226b6fe7a0,0.949999988079071,false,4000.0,NS_NET146_L_F2_(18),21359dd1-7a23-4932-b656-c196fbffe751,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +94203400-1579-4cc0-9395-ac67f94c6c01,0.9700000286102295,false,4000.0,NS_NET136_L_S1_4(3),ed4697fd-016c-40c2-a66b-e793878dadea,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +7b6cd13c-8f54-421e-b2e9-5888f181737b,0.9700000286102295,false,4000.0,NS_NET146_L_F1_(27),9baae5ff-40e3-48cb-9ddf-de6d1c133e13,,,,"cosPhiFixed:{(0.00,1.00)}",2.0618600845336914,h0 +3f47dbb5-8254-43d1-83a8-21385cb666dd,0.949999988079071,false,4000.0,NS_NET126_L_F2_(25),1dcddd06-f41a-405b-9686-7f7942852196,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +4dca3b1d-5d24-444a-b4df-f4fa23b9ef1b,0.949999988079071,false,4000.0,HS_NET1_L_S1,00d03670-7833-47ee-ad52-04d18d1c64fd,,,,"cosPhiFixed:{(0.00,1.00)}",42105.30078125,h0 +12c85bfd-a5a1-4812-b168-86b94f624f18,0.9700000286102295,false,4000.0,NS_NET116_L_S2_3(8),df9c3d91-41a0-4e49-bb1f-1cd2a8fd9a2e,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +3c309ec9-42a4-441d-8c0e-e29cefa6bf18,0.949999988079071,false,4000.0,NS_NET126_L_F1_(5),eb21d716-1b54-4dba-bdc2-d1f6752aef85,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +8bee3a68-8990-46eb-9230-067111caceb5,0.9700000286102295,false,4000.0,NS_NET136_L_S2_3(3),fd534474-cd65-47aa-8005-dc50d17d6920,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +b9fb3d41-bb0e-4c4c-bff5-1b50d40efc33,0.949999988079071,false,4000.0,NS_NET126_L_F1_(3),04f29760-9e52-4943-8563-62e1fbd5ed52,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +36d59a0a-17a5-4955-996b-e3aafb86f4f1,0.949999988079071,false,4000.0,NS_NET126_L_F3_(23),33f346bd-7dc5-4140-8ed0-7d7db4cc0f6f,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +9b0cca4d-f27f-4190-b35f-a84fa09ac157,0.949999988079071,false,4000.0,NS_NET146_L_F1_(14),b73208dd-f4a8-4e90-bf2d-7ea67a89525a,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +ea51cb96-068f-4359-b1d0-27438ce87b49,0.9700000286102295,false,4000.0,NS_NET146_L_F1_(31),5e213f42-d93e-45c5-a295-adbe09105746,,,,"cosPhiFixed:{(0.00,1.00)}",2.0618600845336914,h0 +7513eb4a-3244-40fb-b500-0132947a02e0,0.9700000286102295,false,4000.0,MS3_Last_02,b6b1b9fc-e7d8-492d-8601-84c1e756bd83,,,,"cosPhiFixed:{(0.00,1.00)}",400.0,h0 +8a5a7de2-d61c-4172-b917-7404a2aba038,0.9700000286102295,false,4000.0,NS_NET116_L_S3_4(3),36dccefc-f04c-493f-bb88-11343583bf9f,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +0cdea42f-57da-4a8a-bd83-c4252b7868bf,0.9700000286102295,false,4000.0,NS_NET136_L_S2_3(8),fd534474-cd65-47aa-8005-dc50d17d6920,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +9d2c5b78-ad86-4055-b74b-e5b24f89a75b,0.9700000286102295,false,4000.0,NS_NET116_L_S2_1(4),39112046-8953-4e73-a5d9-6a8183a77436,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +2efedcfd-4972-4d13-9d62-180f1b9a76ad,0.9700000286102295,false,4000.0,NS_NET116_L_S2_5(1),32bd37df-255b-4eb2-9d16-5b711132eee6,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +5d4b96bf-a6ad-4026-b97a-4e6d77896480,0.9700000286102295,false,4000.0,NS_NET116_L_S2_2(4),d53ff076-dadd-44f8-85d4-68f48991f7d0,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +aaa0a903-46f7-4109-adb3-9f43398fc932,0.949999988079071,false,4000.0,NS_NET126_L_F4_(11),95ced3b5-69fd-4171-9c34-f18802064e22,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +04c0cbcf-4e9d-4608-bb92-6ab97e59ece7,0.9700000286102295,false,4000.0,NS_NET116_L_S3_4(4),36dccefc-f04c-493f-bb88-11343583bf9f,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +1a2d5842-96f6-452f-aa82-6064618d5f49,0.949999988079071,false,4000.0,NS_NET126_L_F3_(29),f0f8f187-5dbf-46ab-8a43-d6169ab5042d,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +5d930bf2-0b63-4821-bd6c-02383e3b4220,0.9700000286102295,false,4000.0,MS1_Last_04,1396cb4c-cee7-4116-97c9-290f98785719,,,,"cosPhiFixed:{(0.00,1.00)}",320.0,h0 +24de669f-4786-4388-ae36-aaef1ce40ffa,0.949999988079071,false,4000.0,NS_NET126_L_F3_(27),d5b861a6-2a5b-4dec-a66e-adbfc6d62873,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +860a37f7-7add-4613-bef4-326ee5ea328b,0.949999988079071,false,4000.0,NS_NET146_L_F1_(25),2287c2a8-c2d0-4c63-80b5-6b66a1288df8,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +00a6de01-2304-484b-90f2-5abb044167a3,0.9700000286102295,false,4000.0,NS_NET116_L_S2_2(2),d53ff076-dadd-44f8-85d4-68f48991f7d0,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +8e9debcb-ce25-450c-b016-170bb7622008,0.9700000286102295,false,4000.0,NS_NET136_L_S3_2(4),b46d4395-6724-4830-ba55-357e81fc2814,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +2550ae33-6540-4602-b59a-a46c49747c97,0.949999988079071,false,4000.0,NS_NET146_L_F4_(9),9b889b73-c108-4b38-b6eb-3377841e0c83,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +692728c7-5ecf-4c0a-8ead-ae19fc029ba4,0.9700000286102295,false,4000.0,NS_NET116_L_S2_5(6),32bd37df-255b-4eb2-9d16-5b711132eee6,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +09a47013-bac7-4879-9b8a-9dd854ea9786,0.949999988079071,false,4000.0,NS_NET126_L_F1_(23),94713e6c-c47e-422c-8ab3-2a2903b7dcd2,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +c3d643d1-1b2d-4f9f-838d-5b1ce270fc33,0.949999988079071,false,4000.0,NS_NET126_L_F2_(9),a286f73a-20ee-4056-8129-c7963b34ecd9,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +099f4cde-75ca-4928-904d-37717b5b1b02,0.9700000286102295,false,4000.0,NS_NET116_L_S2_1(3),39112046-8953-4e73-a5d9-6a8183a77436,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +9ae56e43-54fc-4ab7-8989-abbc14596fd3,0.949999988079071,false,4000.0,NS_NET146_L_F3_(20),0ebf0088-f596-4cd1-9ae0-5da02dc40335,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +1469946c-101e-42e9-9e48-28801e9610af,0.9700000286102295,false,4000.0,NS_NET126_L_F1_(28),0c266541-6235-4d01-8258-e763c58af6c7,,,,"cosPhiFixed:{(0.00,1.00)}",2.0618600845336914,h0 +02e0c339-6dfd-4cbc-bebf-56b850053a7c,0.949999988079071,false,4000.0,NS_NET146_L_F1_(3),b237dd88-bcba-4a7c-aee6-c0c3e151e14e,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +a0147111-39c4-465a-8a10-48d1de1d349c,0.949999988079071,false,4000.0,NS_NET126_L_F3_(19),922a6375-b97c-412e-a6c9-b0ea55a23f76,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +b03db97b-06ef-406c-a5b3-7e9ca9f7bf66,0.949999988079071,false,4000.0,NS_NET146_L_F4_(17),155bb2dc-0121-413e-ab42-67c2ed5ce6ea,,,,"cosPhiFixed:{(0.00,1.00)}",0.10000000149011612,h0 +000e54d4-cf92-4cdb-9777-3d40d320d2b6,0.9700000286102295,false,4000.0,NS_NET116_L_S1_4(6),b3a7431d-89b0-41cb-87a9-5853890796cd,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +6c4c7e65-4598-4855-b057-25773ffdf5f2,0.9700000286102295,false,4000.0,NS_NET116_L_S1_5(6),92301422-94ae-48ab-89c7-a69eea9450b2,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +9d19bae7-6fa1-4620-8ec2-38cae5596b9e,0.9700000286102295,false,4000.0,NS_NET116_L_S1_5(7),92301422-94ae-48ab-89c7-a69eea9450b2,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +076b9055-3329-4e88-a1a0-93ad904e72a2,0.9700000286102295,false,4000.0,NS_NET116_L_S3_2(8),550ebca7-1455-44eb-9431-ffbf08e58bd4,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +3fed7598-a77e-4929-9bb3-687e51346cfd,0.9700000286102295,false,4000.0,NS_NET116_L_S3_2(3),550ebca7-1455-44eb-9431-ffbf08e58bd4,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +ef94c79c-ade7-4215-ba16-0bb14d558aab,0.949999988079071,false,4000.0,NS_NET146_L_F1_(13),f1e55c8b-357f-45a7-9d57-e299f9b207f3,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +ff5bf65c-e880-4a49-a286-fd51ce1f48b7,0.9700000286102295,false,4000.0,MS2_Last_03,69f7846e-d979-4c77-8a3b-e2ec2e1f6e76,,,,"cosPhiFixed:{(0.00,1.00)}",400.0,h0 +5cffadab-94f6-4d98-a804-9d74189982cc,0.9700000286102295,false,4000.0,NS_NET116_L_S3_5(7),b9a28095-68f7-44c1-9ccc-6efc5ea84c59,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +a08a45bb-552f-435d-b614-aed657073527,0.949999988079071,false,4000.0,NS_NET126_L_F2_(15),2645e336-b0df-4d1e-a0ea-375444488f06,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +2dcdb711-8872-4e51-ab4c-ef23c685674d,0.9700000286102295,false,4000.0,NS_NET146_L_F1_(35),f5ae3279-fe21-4bb7-849a-eaacb0546b0e,,,,"cosPhiFixed:{(0.00,1.00)}",2.0618600845336914,h0 +d4004ab6-3b00-4eeb-b62a-4ec28dc9cec6,0.949999988079071,false,4000.0,NS_NET126_L_F2_(14),9ce9d92c-5583-4b16-bec6-9f67834663cb,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +61314082-488b-4045-8c90-dad4629be04c,0.949999988079071,false,4000.0,NS_NET126_L_F2_(10),3d81adf5-73d1-4708-b03b-3afc7db017f4,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +573a3f21-49d8-4e2b-bca0-d546d77bb143,0.9700000286102295,false,4000.0,NS_NET116_L_S1_2(3),3e21f3a1-2c9c-4138-bcc9-466b004609ed,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +c2446989-6050-49f9-ab98-d8cfb8058709,0.949999988079071,false,4000.0,NS_NET126_L_F2_(26),5545d21b-bdc8-495f-bd28-d22ffcc0fafc,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +d12ce59d-2cf8-4186-9174-46a8b7f7c9cf,0.949999988079071,false,4000.0,NS_NET146_L_F4_(10),ffcaf979-d707-4d25-8f46-f436f9792d7f,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +35414e99-525f-455a-b4ef-137b6e48ff87,0.9700000286102295,false,4000.0,NS_NET136_L_S2_2(8),cbcfc3b6-ac90-4215-975c-a033f5cf9912,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +cdf650f2-8200-482a-b5b4-6f96e7f9e0f9,0.949999988079071,false,4000.0,NS_NET126_L_F1_(10),f6a31362-8b0d-4926-b0d0-10bb61db20df,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +1a08b0a0-ae75-4ff8-b28b-643ca2dbca1a,0.9700000286102295,false,4000.0,NS_NET136_L_S2_1(5),4e188ac9-e507-46b1-b8e2-376cf7c6ceb1,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +1f901bde-3ada-4e30-8a4c-a264df5b2f38,0.9700000286102295,false,4000.0,NS_NET136_L_S2_2(5),cbcfc3b6-ac90-4215-975c-a033f5cf9912,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +e65cd082-dd8f-45d6-895c-e14357e76ac8,0.9700000286102295,false,4000.0,NS_NET136_L_S1_2(2),032768b4-2426-4abf-806b-83813ac5137a,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +3a278137-bf5c-4e2d-96c5-4779bcf947c0,0.9700000286102295,false,4000.0,NS_NET136_L_S3_2(2),b46d4395-6724-4830-ba55-357e81fc2814,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +ca863e7f-1e42-4716-a214-e79fa91b3222,0.9700000286102295,false,4000.0,NS_NET116_L_S3_5(8),b9a28095-68f7-44c1-9ccc-6efc5ea84c59,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +742de2f0-f057-47d0-83a3-9f57f84eb314,0.949999988079071,false,4000.0,NS_NET126_L_F4_(1),3f63be7c-7f1a-4e7e-87ee-90ada222f64a,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +f971674c-7f11-4e9d-b701-1736b2effb65,0.9700000286102295,false,4000.0,NS_NET136_L_S1_2(4),032768b4-2426-4abf-806b-83813ac5137a,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +0045a53f-8f38-4239-8109-073a768cc593,0.949999988079071,false,4000.0,NS_NET146_L_F4_(1),ead38a50-b8f7-4bbb-b65d-f54350825e8e,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +3e94ff28-fd2e-4028-a188-58ce85136fdf,0.9700000286102295,false,4000.0,NS_NET116_L_S2_2(5),d53ff076-dadd-44f8-85d4-68f48991f7d0,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +98c1a2ab-bd09-4c77-a389-d088aed894b1,0.9700000286102295,false,4000.0,NS_NET116_L_S3_2(1),550ebca7-1455-44eb-9431-ffbf08e58bd4,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +916670c1-1575-4fe8-acb0-1dcf1c218386,0.9700000286102295,false,4000.0,NS_NET116_L_S2_2(6),d53ff076-dadd-44f8-85d4-68f48991f7d0,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +b2789995-79a1-4859-8d1c-70107b83c18b,0.9700000286102295,false,4000.0,NS_NET136_L_S3_3(2),2c5d4eda-6b33-4ad5-a135-7037baa7d6eb,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +be63473d-a375-4ce7-9970-80358e5c54bd,0.9700000286102295,false,4000.0,NS_NET136_L_S3_2(3),b46d4395-6724-4830-ba55-357e81fc2814,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +4384a56f-5b34-430c-89d8-354f367fa7ff,0.949999988079071,false,4000.0,NS_NET146_L_F3_(29),15345698-c319-461f-b969-37d50fb84220,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +89aeade0-ac58-4120-a743-577afdb72b5b,0.949999988079071,false,4000.0,NS_NET146_L_F3_(7),f1e88392-3b2a-4ce8-a31f-c963f08f8043,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +0d983289-2ff2-4f2c-b38a-bab3ec967c76,0.9700000286102295,false,4000.0,NS_NET136_L_S1_1(4),535b3fa4-ed67-4ab1-9a68-e7db83e05967,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +f630b338-5685-424d-bfbe-338bf94a0e01,0.949999988079071,false,4000.0,NS_NET126_L_F3_(6),e018b95e-fca5-40f7-8550-b05a619169dc,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +d7f49aa5-ab62-4148-911b-086e8a848af4,0.949999988079071,false,4000.0,NS_NET146_L_F3_(15),d07dc1b0-e29a-452a-84c5-7df7b0bb3141,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +10b5f3d3-60c9-45b9-a70e-fa75140e9a9d,0.9700000286102295,false,4000.0,NS_NET136_L_S1_5(3),926d6113-933f-49e3-9529-a3035acdc9b2,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +dd53cc4e-93a6-47f1-afa0-a46f82e3b371,0.949999988079071,false,4000.0,NS_NET146_L_F4_(11),8b3e3802-5213-46d0-a498-15eb6e5852b5,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +3f5718ca-fc58-4b00-b634-1aa6307c6cfa,0.949999988079071,false,4000.0,NS_NET146_L_F2_(1),2c520ab6-507e-4dcf-ab05-8f238e9b9385,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +b47d3f0a-f480-49ef-ba7e-7979c81b0f70,0.9700000286102295,false,4000.0,NS_NET146_L_F1_(32),033d0230-4aee-47cf-91f9-81f5f40e60b0,,,,"cosPhiFixed:{(0.00,1.00)}",2.0618600845336914,h0 +1aeeacdc-e61b-4d44-ac76-699c7b459325,0.9700000286102295,false,4000.0,NS_NET116_L_S1_3(2),e4c8b492-965c-4b5a-8d14-e8ff2c027ce9,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +a34932f7-012c-4a27-aa5f-4dd043028d5e,0.9700000286102295,false,4000.0,NS_NET116_L_S2_1(8),39112046-8953-4e73-a5d9-6a8183a77436,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +35408c17-cd77-4115-8357-9fb0e8f76532,0.949999988079071,false,4000.0,NS_NET146_L_F2_(9),a5c73608-5a85-495d-bea0-df77b6ce66ea,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +7194cc61-5445-43a9-9039-ddde7ab2be55,0.949999988079071,false,4000.0,NS_NET126_L_F3_(11),4258f215-5b22-446f-a260-e8cdaa7c95d1,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +9985e8e1-d8fa-4fdc-86aa-70f5b0ab70fc,0.949999988079071,false,4000.0,NS_NET126_L_F1_(11),270c7266-45dc-4e45-829f-c04f6b631cad,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +f8a76852-55d7-4a20-99a7-cf1fb5a5b1b0,0.949999988079071,false,4000.0,NS_NET146_L_F2_(17),40537c84-c812-4231-bd23-0ba81922e937,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +3052ef96-e3f1-4469-a64e-059f09306044,0.9700000286102295,false,4000.0,NS_NET136_L_S2_5(2),c5af5a34-211a-4105-a8e1-f447140073c6,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +a94ba026-b4fc-40d2-a20f-c8201996d717,0.9700000286102295,false,4000.0,MS2_Last_04,5f1c776c-6935-40f7-ba9e-60646e08992b,,,,"cosPhiFixed:{(0.00,1.00)}",320.0,h0 +99a1fb27-fa7c-440b-9f25-74237b4e0279,0.949999988079071,false,4000.0,NS_NET126_L_F3_(24),97ae0aa4-bf05-4b88-8020-83cbda415d22,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +fe429426-1884-4ad7-8d50-69237e4a6a1b,0.9700000286102295,false,4000.0,NS_NET146_L_F1_(34),fd4f6232-c28d-4fc3-81dd-03b84aad695e,,,,"cosPhiFixed:{(0.00,1.00)}",2.0618600845336914,h0 +7388e938-85cb-495b-bb00-30a050b18327,0.9700000286102295,false,4000.0,MS1_Last_01,f5839ade-5968-4879-a824-90b5fb3552cd,,,,"cosPhiFixed:{(0.00,1.00)}",400.0,h0 +8221a6b1-eff3-48fe-88ab-0685a9f59cce,0.9700000286102295,false,4000.0,NS_NET116_L_S1_2(8),3e21f3a1-2c9c-4138-bcc9-466b004609ed,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +a3bcf5fc-5937-4182-8a54-180f9810d21d,0.949999988079071,false,4000.0,NS_NET126_L_F1_(1),4303784e-7193-454a-9be4-3591400b4eeb,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +9219bda4-01ce-4067-92b1-595b86e9bbdf,0.9700000286102295,false,4000.0,NS_NET116_L_S1_1(5),8a50fb37-81cf-47c9-8850-a12b4391e2e7,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +2596f43d-e805-46b6-a79a-adf9f21fee96,0.949999988079071,false,4000.0,NS_NET126_L_F3_(2),285a4caa-2da8-4bd2-8a60-7d04f168f378,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +40550e1d-7453-4f20-a5e5-8839d17c2fdf,0.9700000286102295,false,4000.0,NS_NET136_L_S2_3(7),fd534474-cd65-47aa-8005-dc50d17d6920,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +bd4fa1dc-a73a-4aa4-ac9f-d263a45a6cce,0.9700000286102295,false,4000.0,NS_NET116_L_S2_4(6),e05c68b1-11cd-43fd-a4b2-31e4db380c78,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +7e875803-7e9d-4808-8d8c-a722d46fb6af,0.949999988079071,false,4000.0,NS_NET126_L_F3_(20),732f83b0-b9c5-4b8e-86fe-753c26f40e78,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +33dfa920-da94-44b2-8be9-85a0eeafa626,0.9700000286102295,false,4000.0,NS_NET136_L_S2_5(1),c5af5a34-211a-4105-a8e1-f447140073c6,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +e2795c9b-dddb-4012-b56c-e24c3d1c3cdf,0.9700000286102295,false,4000.0,NS_NET136_L_S1_1(6),535b3fa4-ed67-4ab1-9a68-e7db83e05967,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +fd1a8de9-722a-4304-8799-e1e976d9979c,0.9700000286102295,false,4000.0,NS_NET116_L_S1_1(1),8a50fb37-81cf-47c9-8850-a12b4391e2e7,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +a4145b3e-7143-4618-99f1-16b43aec3c9e,0.9700000286102295,false,4000.0,NS_NET136_L_S2_3(5),fd534474-cd65-47aa-8005-dc50d17d6920,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +8a535e63-ff09-4236-ac68-fb6a21bb0516,0.9700000286102295,false,4000.0,NS_NET116_L_S1_2(5),3e21f3a1-2c9c-4138-bcc9-466b004609ed,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +47878ba6-7b08-4af8-a7ab-c859d0ac3415,0.9700000286102295,false,4000.0,NS_NET136_L_S1_3(5),eb95ff15-56db-4463-bb54-0ee131167812,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +d5a1a95f-e2b8-402c-86e6-617489ca865d,0.9700000286102295,false,4000.0,NS_NET116_L_S3_3(3),d69efff2-ba8b-4aa6-a4a1-27267964147a,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +cd65e476-ba5b-46be-b87d-a689b79269eb,0.949999988079071,false,4000.0,NS_NET126_L_F3_(3),69aeb4a6-1c4b-4953-bad9-54fc0c7e495b,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +5535881c-50ec-4a74-a67e-5b963aec5b38,0.949999988079071,false,4000.0,NS_NET146_L_F1_(5),bd8c7d3d-e830-4a46-bf78-0086ce24909f,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +4924a294-0f71-4f0d-a058-447a1a74de6c,0.9700000286102295,false,4000.0,NS_NET136_L_S2_4(8),81cd3f38-867b-4a71-ba22-cb33834e0e58,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +4d3af2ae-7637-46bc-a492-1bca70d3bc56,0.9700000286102295,false,4000.0,NS_NET146_L_F1_(37),450426ac-a560-4d17-b1fc-9e169530a655,,,,"cosPhiFixed:{(0.00,1.00)}",2.0618600845336914,h0 +ae21cb77-4f17-4996-89f3-b2172f479bcc,0.949999988079071,false,4000.0,NS_NET126_L_F2_(16),d8c35123-b389-4199-84f9-d417d24bb78d,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +2ba29ae5-8b0a-4fee-be31-c6d0cc83f97e,0.9700000286102295,false,4000.0,NS_NET136_L_S2_4(6),81cd3f38-867b-4a71-ba22-cb33834e0e58,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +4cf4c2ac-3c96-456e-858b-5000f183230c,0.949999988079071,false,4000.0,NS_NET126_L_F2_(7),4db634e5-3eb8-4c17-bc44-eb224667580c,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +cc08fc6e-1932-4daa-af04-f0376c8be6e2,0.949999988079071,false,4000.0,NS_NET126_L_F3_(7),50164699-2018-4b17-b3f1-74b082f27403,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +3e0d4895-f0c4-4b4d-8eeb-8c8e24e3e610,0.9700000286102295,false,4000.0,NS_NET136_L_S2_2(7),cbcfc3b6-ac90-4215-975c-a033f5cf9912,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +cad1c678-6e76-430f-bf7c-db12c6f06239,0.949999988079071,false,4000.0,NS_NET126_L_F4_(7),98072ded-726f-4f0b-8bbc-4fb6d5086a7b,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +cc470184-d4ce-468a-b7ef-ed2cb84debfd,0.9700000286102295,false,4000.0,NS_NET116_L_S1_1(4),8a50fb37-81cf-47c9-8850-a12b4391e2e7,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +db87c6cf-7673-4e25-b510-50086de5d4b8,0.949999988079071,false,4000.0,NS_NET126_L_F1_(24),4f2402e8-664a-40f2-970a-abc098a2a0d1,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +e25c3969-7e44-48f5-860c-03ff67a65284,0.9700000286102295,false,4000.0,NS_NET126_L_F1_(29),27d9e46d-5a9a-44f9-b17e-cd6cffb5e769,,,,"cosPhiFixed:{(0.00,1.00)}",2.0618600845336914,h0 +6a4d97c2-3c6b-4fb8-91a6-2c9a2f9523b1,0.949999988079071,false,4000.0,NS_NET126_L_F3_(21),5af425fa-6ed7-43e1-8898-7af1315128c5,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +fe02ae6f-bb61-4ab9-83db-43a41f32b0c8,0.9700000286102295,false,4000.0,MS2_Last_02,535843a3-cf93-412f-b4d7-585337791ba8,,,,"cosPhiFixed:{(0.00,1.00)}",400.0,h0 +cec8879b-a90b-4e15-b664-a7ed0739ae0a,0.9700000286102295,false,4000.0,NS_NET136_L_S1_2(6),032768b4-2426-4abf-806b-83813ac5137a,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +791307b1-d235-4df9-9400-e6c2af8b3825,0.9700000286102295,false,4000.0,NS_NET136_L_S1_1(2),535b3fa4-ed67-4ab1-9a68-e7db83e05967,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +996313f2-93af-477c-92dc-2011a43afd7c,0.9700000286102295,false,4000.0,NS_NET136_L_S1_5(5),926d6113-933f-49e3-9529-a3035acdc9b2,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +87fb203a-6cbb-4598-8172-8cdef6b04a63,0.949999988079071,false,4000.0,NS_NET146_L_F2_(26),86af5351-87ef-49c6-bd17-673dceecee5b,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +6e260432-2b25-444f-8e37-5300eee5a89e,0.949999988079071,false,4000.0,NS_NET146_L_F2_(2),69efeb2d-9845-49ac-8500-5e017a7a64ef,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +6ad26a2b-9139-4008-bd91-ba2c8918e1e3,0.949999988079071,false,4000.0,NS_NET126_L_F3_(10),e25387d0-ab9a-406d-bcb4-555414b88b1b,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +32d607eb-c3a1-4906-af14-9e7bf12e5a20,0.9700000286102295,false,4000.0,NS_NET146_L_F1_(36),8f80e777-ccbd-4630-b10e-238e824113fd,,,,"cosPhiFixed:{(0.00,1.00)}",2.0618600845336914,h0 +b334c8b6-0f65-4891-a761-5208a39aa9d0,0.949999988079071,false,4000.0,NS_NET126_L_F3_(8),6dcdc87b-a719-416f-9da1-21a701048f3a,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +cde58a33-fc7e-4fc6-8843-e0c372234be0,0.9700000286102295,false,4000.0,NS_NET136_L_S1_4(1),ed4697fd-016c-40c2-a66b-e793878dadea,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +8c9dbef2-bf3d-4f5b-bc9f-6c867f016c89,0.9700000286102295,false,4000.0,NS_NET136_L_S3_5(1),3bc8235b-03b5-489b-81a2-58d520fbe28e,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +08bb3387-aaf3-4005-894b-c195849fcad0,0.949999988079071,false,4000.0,NS_NET146_L_F1_(12),3b879239-20c8-4adf-bd51-92924327ee71,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +d3c547e1-cf64-4993-9b55-5ae1b1d4601c,0.9700000286102295,false,4000.0,NS_NET136_L_S3_2(7),b46d4395-6724-4830-ba55-357e81fc2814,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +3cec8f8c-5a69-4813-a788-11cfbd48f718,0.9700000286102295,false,4000.0,NS_NET126_L_F1_(37),3e4cce4a-6e85-4ec2-b3ea-08673a0ada15,,,,"cosPhiFixed:{(0.00,1.00)}",2.0618600845336914,h0 +7ebc343e-c3a4-4f6c-a1f8-e81d2ee35d08,0.9700000286102295,false,4000.0,NS_NET136_L_S2_5(3),c5af5a34-211a-4105-a8e1-f447140073c6,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +ae80f9a2-151c-4f24-99bf-928032df3383,0.9700000286102295,false,4000.0,NS_NET116_L_S3_5(6),b9a28095-68f7-44c1-9ccc-6efc5ea84c59,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +1610169b-0870-40d0-bc26-259e443b30db,0.9700000286102295,false,4000.0,NS_NET136_L_S3_5(4),3bc8235b-03b5-489b-81a2-58d520fbe28e,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +528616f2-81a9-44ad-b103-e36cf5c585d9,0.949999988079071,false,4000.0,NS_NET146_L_F2_(28),ca438ab9-3abc-4416-91d1-df01d1c5fa5a,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +d28f1e85-c5ff-41c9-93b7-ba4ea62eb56d,0.949999988079071,false,4000.0,NS_NET126_L_F4_(14),d40a1a85-40f2-4ad3-ba58-720d5ba02268,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +60492496-1ab3-4b51-b2c4-245f44a4ce45,0.9700000286102295,false,4000.0,NS_NET136_L_S2_5(5),c5af5a34-211a-4105-a8e1-f447140073c6,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +d7a977d9-d95f-46f1-b993-2ba120bcd366,0.949999988079071,false,4000.0,NS_NET146_L_F1_(23),1a1e63f7-6196-4856-9f4e-876a44bdf2f8,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +0d6b1569-0276-4f4b-9831-9a99821ff240,0.9700000286102295,false,4000.0,NS_NET116_L_S3_1(5),4a6f6058-e654-464d-9367-2dca7185c6d7,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +e8443260-ac5c-4210-9f84-4f40cec0b63b,0.949999988079071,false,4000.0,NS_NET126_L_F2_(13),b32c5f5e-b6b8-41ed-a192-078e1aed05ac,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +c79513d2-7d86-45be-ab44-3bd13f502a5b,0.9700000286102295,false,4000.0,NS_NET136_L_S1_3(1),eb95ff15-56db-4463-bb54-0ee131167812,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +fae24064-659b-4f3b-80f9-c3ecf337cb25,0.949999988079071,false,4000.0,NS_NET146_L_F2_(7),f1cef042-1fc4-4bd8-b17f-dfbded4f2aaa,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +9a751f29-69b8-4ca0-b019-3001e50922d3,0.9700000286102295,false,4000.0,NS_NET116_L_S1_4(2),b3a7431d-89b0-41cb-87a9-5853890796cd,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +e81df4d7-0935-40d7-be0b-5b696b24d220,0.949999988079071,false,4000.0,NS_NET146_L_F1_(21),92cb5065-2e57-4099-8e29-75cbc0c80370,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +571ee907-5b24-46df-872d-560c5f119800,0.9700000286102295,false,4000.0,NS_NET116_L_S1_4(5),b3a7431d-89b0-41cb-87a9-5853890796cd,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +bfb7a7c2-6426-4392-9070-85dd5210a5cf,0.9700000286102295,false,4000.0,NS_NET116_L_S1_5(4),92301422-94ae-48ab-89c7-a69eea9450b2,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +20f3da7f-110c-48d6-b6f0-9df6f6dfecbc,0.9700000286102295,false,4000.0,NS_NET116_L_S1_3(3),e4c8b492-965c-4b5a-8d14-e8ff2c027ce9,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +2848033f-54ed-4507-8d9c-59ec3eb5c3a9,0.949999988079071,false,4000.0,NS_NET126_L_F1_(19),d2aff632-fc26-4595-931c-92e266247ac8,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +a194f9a2-1380-412b-8285-80ca7ba3a538,0.949999988079071,false,4000.0,NS_NET126_L_F3_(15),ae234bc5-b751-41f2-95ee-b78de124c583,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +b925ad8d-edb2-4f59-a302-9b33d21d900c,0.949999988079071,false,4000.0,NS_NET126_L_F3_(16),6232b760-b2e0-485e-9c61-f9721a366a81,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +9c5991bc-24df-496b-b4ce-5ec27657454c,0.949999988079071,false,4000.0,HS_NET1_L_S2,dfae9806-9b44-4995-ba27-d66d8e4a43e0,,,,"cosPhiFixed:{(0.00,1.00)}",42105.30078125,h0 +68ca017a-8327-4a88-a2ab-0c7c20383a3e,0.9700000286102295,false,4000.0,NS_NET136_L_S1_2(7),032768b4-2426-4abf-806b-83813ac5137a,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +3eac1fa7-99ba-4f3e-bc50-c7b88a022734,0.949999988079071,false,4000.0,NS_NET126_L_F1_(12),9d10a92f-576d-4777-99ff-59d145924fea,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +477fdcdc-1983-4190-8f83-3f32ce95d1df,0.949999988079071,false,4000.0,NS_NET146_L_F3_(28),c72a08bc-4685-49b1-b8ef-803aebc8c388,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 +f817f48f-b565-44a8-9cf9-6824c9bbd012,0.9700000286102295,false,4000.0,NS_NET136_L_S2_3(6),fd534474-cd65-47aa-8005-dc50d17d6920,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +8f6178ef-fc51-431e-a91a-1b1802a7373c,0.9700000286102295,false,4000.0,NS_NET116_L_S2_1(5),39112046-8953-4e73-a5d9-6a8183a77436,,,,"cosPhiFixed:{(0.00,1.00)}",4.1237101554870605,h0 +7063fecf-8601-4a03-8dfe-410b2419133b,0.949999988079071,false,4000.0,NS_NET146_L_F3_(32),fd3b7bb8-3976-4441-9211-745243afd80f,,,,"cosPhiFixed:{(0.00,1.00)}",2.3157899379730225,h0 diff --git a/src/test/resources/edu/ie3/datamodel/io/source/csv/_joint_grid/node_graphic_input.csv b/src/test/resources/edu/ie3/datamodel/io/source/csv/_joint_grid/node_graphic_input.csv index e2ce393e3..48513cd59 100644 --- a/src/test/resources/edu/ie3/datamodel/io/source/csv/_joint_grid/node_graphic_input.csv +++ b/src/test/resources/edu/ie3/datamodel/io/source/csv/_joint_grid/node_graphic_input.csv @@ -1,300 +1,300 @@ "uuid","graphic_layer","node","path","point" -342e3e77-6ff5-48ce-b02d-1f9bd4bb303c,Standard,d40a1a85-40f2-4ad3-ba58-720d5ba02268,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.78531073,0.04918033],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -1b58f786-a0a1-436f-98ff-0a8005e4b1cb,Standard,69f7846e-d979-4c77-8a3b-e2ec2e1f6e76,{"type":"LineString","coordinates":[[0.07909605,0.14754098],[0.11299435,0.14754098]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[7.4116482,51.4843281],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -bfa159f5-ab6b-4277-ab81-30ac92ec893f,Standard,34cd8ee0-e607-4c47-89a7-121c3e32768a,{"type":"LineString","coordinates":[[0.05084746,0.18032787],[0.08474576,0.18032787]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[7.4116482,51.4843281],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -2a1e5940-c981-4e19-b8b3-c9816f9b0da1,Standard,6dd72a1e-2a79-4cde-b2fc-92bc9a83032a,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.8700565,0.57377049],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -89d08dbb-d2f4-4248-a846-7e13aa1926e6,Standard,e4502c52-b4d7-4082-a583-b5688d8244e0,{"type":"LineString","coordinates":[[0.14124294,0.14754098],[0.17514124,0.14754098]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[7.4116482,51.4843281],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -6b88508e-ab70-4026-ac4a-8effa4b83d2d,Standard,ab3645a7-af26-480d-b1bd-5b0fa00dc83f,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.91525424,0.89344262],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -2db9a259-6929-4f7e-b1b4-e0bdb86cd09d,Standard,fa6d5184-b205-4b1b-839f-7b21ac956c29,{"type":"LineString","coordinates":[[0.20338983,0.04098361],[0.23728814,0.04098361]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[7.4116482,51.4843281],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -ed4ad694-299d-4c79-bb31-3d7f9f6013db,Standard,9d7038e9-5bcc-4676-bead-46c4f1291ba8,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.90960452,0.25409836],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -0e676643-d3c8-46f8-836c-0ef21bda69ce,Standard,a286f73a-20ee-4056-8129-c7963b34ecd9,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.87570621,0.25409836],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -5a1daa68-a04c-4b27-b2a2-62a53da0b9ff,Standard,926d6113-933f-49e3-9529-a3035acdc9b2,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.31073446,0.75409836],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -ed32fd63-b9cd-4bdc-9301-51c7e83cf88a,Standard,7d44fe44-8c85-4b61-9d5c-0c4304e47ba8,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.61581921,0.14754098],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -7bf5033d-efa1-4b45-b885-4c22ede1336d,Standard,df9c3d91-41a0-4e49-bb1f-1cd2a8fd9a2e,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.20338983,0.1557377],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -80ee9fdd-b0c4-42e2-835d-abcb120e323d,Standard,9f95c733-71e2-4bf0-a27a-70144518ea2c,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.80225989,0.96721311],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -28a9c06f-b6e3-4104-b904-aad99b88fcab,Standard,ce513b50-b57a-41e2-b744-4c0fd2ae97d0,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.71186441,0.77868852],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -1f91737b-2808-4986-839c-4d8238dbbb35,Standard,60173008-809d-4d8f-b06a-3c4a838dd989,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.78531073,0.47540984],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -94684e7b-92e8-4976-8c16-4a4c80a0a027,Standard,1a8ba1a5-3cee-4791-b21b-f17b08526873,{"type":"LineString","coordinates":[[0.07909605,0.2295082],[0.11299435,0.2295082]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[7.4116482,51.4843281],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -bd82b2de-920f-4332-a93c-a7b0b4285910,Standard,bb59ca46-1f2e-41c9-9723-90b306f043cd,{"type":"LineString","coordinates":[[0.14124294,0.2295082],[0.17514124,0.2295082]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[7.4116482,51.4843281],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -9be737eb-c6f9-4b03-8dab-55e43dc6ecc6,Standard,a7ebd30b-b843-405f-9fae-ca6b489601f9,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.92090395,0.36885246],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -3df7db14-eec4-45ba-93df-fb179ede15ef,Standard,dd9d4153-c56f-4457-ad5e-46a48d4486b6,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.89265537,0.89344262],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -7eb3ff43-5237-4a87-8a83-05e6fab5f6e5,Standard,2aa2d409-8bb2-477d-ac7a-6439552e136a,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.74576271,0.77868852],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -1e9fb4ca-4c4b-43d5-85c9-85eeb238315b,Standard,61ee5ff6-eb38-4b27-a3f6-cb574d1f8b41,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.72881356,0.14754098],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -68480188-a299-4ad7-8451-54dd092ffdc9,Standard,df97c0d1-379b-417a-a473-8e7fe37da99d,{"type":"LineString","coordinates":[[0.07909605,0.04098361],[0.11299435,0.04098361]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[7.4116482,51.4843281],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -84387c6a-225a-44c5-be9c-bd19573fa19a,Standard,f6a31362-8b0d-4926-b0d0-10bb61db20df,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.83050847,0.36885246],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -e6260eb6-1993-4b2f-9da4-6ac480f41954,Standard,792b505c-87ab-4665-a31d-b6035c5ece70,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.88135593,0.77868852],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -d5ba0437-9666-4c88-a1cc-4a983e9d7d9d,Standard,49b511fa-8cff-45f4-9a59-54faaaf90abf,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.78531073,0.44262295],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -5c590022-3662-4882-9a3d-e39d618b00ad,Standard,33f29587-f63e-45b7-960b-037bda37a3cb,{"type":"LineString","coordinates":[[0.21468927,0.07377049],[0.24858757,0.07377049]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[7.4116482,51.4843281],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -0720eaa7-85a2-48f0-a2dc-081c818d2ab3,Standard,d07dc1b0-e29a-452a-84c5-7df7b0bb3141,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.80225989,0.67213115],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -c67ff8a5-d296-47db-970a-4f6b2ab7c77a,Standard,d53ff076-dadd-44f8-85d4-68f48991f7d0,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.14689266,0.1557377],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -fcfe053f-d8ce-407e-99d5-b0b480a3abb1,Standard,5545d21b-bdc8-495f-bd28-d22ffcc0fafc,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.68361582,0.25409836],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -dc081e8a-4fe0-4bf1-b215-67e1454eae93,Standard,543f7e9f-b9be-486b-b365-2bae79010758,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.77966102,0.98360656],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -821614b3-c5ea-41b3-87a6-6090c26d97ff,Standard,3bc8235b-03b5-489b-81a2-58d520fbe28e,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.31073446,0.57377049],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -4d9cd1b8-f525-48eb-b280-2271ed073d67,Standard,5f1c776c-6935-40f7-ba9e-60646e08992b,{"type":"LineString","coordinates":[[0.07909605,0.1147541],[0.11299435,0.1147541]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[7.4116482,51.4843281],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -a485471a-ad4f-4ca8-b960-ebf1a5504fd4,Standard,b3a7431d-89b0-41cb-87a9-5853890796cd,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.25423729,0.24590164],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -a158cd0e-50bd-40d1-9d23-17c0ff9bb08c,Standard,1dee13af-e638-4858-9c69-0069190cd577,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.74011299,0.25409836],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -69232745-5bf2-45c1-b3a3-8d7ebbe08558,Standard,1396cb4c-cee7-4116-97c9-290f98785719,{"type":"LineString","coordinates":[[0.00564972,0.1147541],[0.03954802,0.1147541]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[7.4116482,51.4843281],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -74b3a575-3f22-4673-a89c-1199c06a2d0f,Standard,b37ea333-65e1-4211-8449-993b67e8e0e2,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.93785311,0.57377049],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -9ed48993-1a92-453a-ba31-11eb00021025,Standard,14a8dc4c-0906-402f-b073-6d6d4725d0cb,{"type":"LineString","coordinates":[[0.07909605,0.0],[0.11299435,0.0]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[7.4116482,51.4843281],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -69658801-7a8c-48b6-809d-3fd07892a5ec,Standard,119d270a-ff22-4fdb-8214-cb5b336790bf,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.86440678,0.04918033],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -2747953c-f646-407d-978c-1318659a63be,Standard,174fb4b2-4f9e-415c-bfee-d850ef751307,{"type":"LineString","coordinates":[[0.20338983,0.18852459],[0.23728814,0.18852459]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[7.4116482,51.4843281],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -e80cc517-0a6c-47f2-a7a7-298f49dc353d,Standard,dc022eec-16b0-4a64-a2f5-498d81aca71e,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.68361582,0.14754098],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -0dde18db-3ec4-4941-b84c-231452a1f23b,Standard,e2267696-669b-48e8-b43a-37d0db95011d,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.84745763,0.67213115],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -dbcab492-c97f-4a09-be52-5cf03bfd8490,Standard,eb95ff15-56db-4463-bb54-0ee131167812,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.20338983,0.75409836],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -ed286ef7-6402-4264-9803-72e3ee03a9cf,Standard,4f2402e8-664a-40f2-970a-abc098a2a0d1,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.63841808,0.36885246],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -f7e1e922-52d3-469f-98c6-5353a5d74641,Standard,e4c8b492-965c-4b5a-8d14-e8ff2c027ce9,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.20338983,0.24590164],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -e7ce727f-dc6c-4c81-ab20-ef6d5b0c247c,Standard,fd534474-cd65-47aa-8005-dc50d17d6920,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.20338983,0.66393443],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -31c566a5-37ba-4520-aec3-add6044fbfa5,Standard,c5af5a34-211a-4105-a8e1-f447140073c6,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.31073446,0.66393443],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -c1b96bd6-563f-4f4d-b401-1955e29d7ced,Standard,857c264a-7072-4bb7-af56-2f01539b2a2e,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.85310734,0.04918033],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -cf142631-94bf-4d25-adaa-387714e975c8,Standard,5fe9c522-37d0-48f8-b3b8-e91b956e39f6,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.75141243,0.36885246],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -dfe18a4b-8980-40fc-9a77-69a6b5da930d,Standard,01bdd8b2-145f-42b3-80e3-a2366dea1044,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.9039548,0.67213115],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -0c859327-e893-424f-bbb2-46d077b0c6f6,Standard,416fa5eb-2f72-46c3-978f-6a0ebb714a40,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.09039548,0.57377049],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -9cc54a0e-640d-4d9b-a163-8dedb0bbd7f3,Standard,8b92ad35-8b0a-49b9-9f66-f42ddfeb9c65,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.93785311,0.67213115],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -e9266e59-ed7d-4719-abe6-455193c4f5f3,Standard,810bebb0-0d5c-4899-b213-3207be661248,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.75706215,0.67213115],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -865f965a-f8d1-49cc-a85e-92f59a4ecb01,Standard,40537c84-c812-4231-bd23-0ba81922e937,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.77966102,0.77868852],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -56271174-1da2-4402-9026-82e3111186a0,Standard,b7baa286-cbe2-4143-a08f-4e025af47529,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.78531073,0.36885246],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -5a54c5de-9afe-4ea1-af36-2bca268deed2,Standard,00d03670-7833-47ee-ad52-04d18d1c64fd,{"type":"LineString","coordinates":[[0.10734463,0.1557377],[0.14124294,0.1557377]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[7.4116482,51.4843281],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -d33bcbd4-0616-44f2-bf6f-9650acdd4193,Standard,f0f8f187-5dbf-46ab-8a43-d6169ab5042d,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.64971751,0.14754098],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -96ce5cd6-78b0-41d6-878d-4c6e59f27ffe,Standard,4dd439ed-7cc3-45b4-a2ca-ae615b97a23c,{"type":"LineString","coordinates":[[0.14124294,0.1147541],[0.17514124,0.1147541]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[7.4116482,51.4843281],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -5eb4b7b9-ca34-49ec-a7ba-39e54df125c5,Standard,c81d6099-66b2-45d8-b8a4-c19ceb862f6e,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.84180791,0.44262295],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -7016009b-c704-4bdc-a331-19bc6ac99ae2,Standard,0ebf0088-f596-4cd1-9ae0-5da02dc40335,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.74576271,0.67213115],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -ce92f503-5384-4c3b-b86e-4776d7b99159,Standard,d5b861a6-2a5b-4dec-a66e-adbfc6d62873,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.67231638,0.14754098],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -35e6b00e-3441-4c99-a159-ab750d201ec8,Standard,de756ddb-793d-4b2d-959c-59d938a8f61f,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.75141243,0.25409836],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -7e19bbb7-52c2-4f80-97c2-d5bea34b15d5,Standard,867c4b4d-0f38-4f28-82ce-135f2cc63808,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.81355932,0.96721311],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -86a5a43b-025c-4bb5-b9c3-bf88e610617c,Standard,0170837a-1876-45f9-a613-666f9991964d,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.93785311,0.77868852],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -cd072bd5-77ed-4708-8b42-41123054a4a0,Standard,6a4547a8-630b-46e4-8144-9cd649e67c07,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.81920904,0.04918033],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -6717f8a4-7670-42cd-bc5e-cdc86cba04ca,Standard,e80aa2db-f32c-410d-96a1-a32e03222568,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.7740113,0.25409836],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -3179b868-7036-4f0e-abe8-8c97a7ec9e27,Standard,9502fd3e-c00f-48fa-8b56-c72d21f80f3c,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.7740113,0.14754098],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -95d6c85f-bb3b-4bac-84fc-1a821ac0256f,Standard,ff947647-b551-41ae-bcfd-6af228250c96,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.89830508,0.36885246],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -a6267f4c-d751-4f99-ade6-237d737fb745,Standard,86af5351-87ef-49c6-bd17-673dceecee5b,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.6779661,0.77868852],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -5cb93639-bc3a-4e87-bd02-1d8e16680219,Standard,e05c68b1-11cd-43fd-a4b2-31e4db380c78,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.25423729,0.1557377],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -b25beaf6-0637-43a3-b226-ed4c032009b4,Standard,285a4caa-2da8-4bd2-8a60-7d04f168f378,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.95480226,0.14754098],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -682dc5b8-6d22-4127-a456-d750f8a1c10d,Standard,bbd210a5-eb85-4616-bdd0-72bbd3ed7ef9,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.87570621,0.14754098],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -af28cad4-4552-4974-97f8-31396b30409e,Standard,85ea3976-1779-4d46-bd6f-dfd36427ebdf,{"type":"LineString","coordinates":[[0.20338983,0.14754098],[0.23728814,0.14754098]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[7.4116482,51.4843281],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -ede4610a-e3c4-4bdd-bad4-b1fe0b84b847,Standard,49e14db3-a4bc-464a-b606-653ac8a604dd,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.82485876,0.77868852],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -b46007d2-6836-4a68-a3d7-9c1711248f90,Standard,636dec7c-4242-46e8-b7ae-db7e5a28c39c,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.75706215,0.77868852],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -bb0d1bf5-f2bb-41f7-b7b4-7e5d83219315,Standard,7546df1d-8a62-4650-bf2e-d1e441b38d70,{"type":"LineString","coordinates":[[0.00564972,0.0],[0.03954802,0.0]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[7.4116482,51.4843281],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -69e69cb7-363b-4bb7-b77b-60b08a58f7fe,Standard,155bb2dc-0121-413e-ab42-67c2ed5ce6ea,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.93785311,0.52459016],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -bda2cf93-a2a9-4620-b67b-4280991653b3,Standard,09ac8949-2b79-41d7-b56f-a58f20036df2,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.75706215,0.89344262],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -a506609d-8884-4945-80c8-cae5b027fe1b,Standard,41c0087f-ce27-4da3-97d2-92d711b639b4,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.7740113,0.36885246],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -f17d8fce-ffcf-4214-af18-af2bb64985b0,Standard,39112046-8953-4e73-a5d9-6a8183a77436,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.09039548,0.1557377],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -7d4efdca-c7e6-476d-9f28-56aa019c054b,Standard,2f64bf67-cee9-44bb-8c13-ff96878932af,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.74011299,0.36885246],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -0a69cd3e-8a0d-40f9-b117-fd62a1e6bf7c,Standard,9d10a92f-576d-4777-99ff-59d145924fea,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.8079096,0.36885246],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -4e57b19d-d38c-449f-aac7-2f1c55507d88,Standard,b46d4395-6724-4830-ba55-357e81fc2814,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.14689266,0.57377049],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -6e2eb243-df51-4785-ae4f-478b0b6cd541,Standard,847fd5fc-b515-4a9d-8a6f-66df1e71ded2,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.79661017,0.36885246],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -ea7ae0ca-7ddb-4d6d-bf0a-4285fe70aee4,Standard,fd3b7bb8-3976-4441-9211-745243afd80f,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.61016949,0.67213115],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -94f85ca1-6313-4083-9f67-4f352b5fee15,Standard,4a6f6058-e654-464d-9367-2dca7185c6d7,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.09039548,0.06557377],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -d2a008e3-e3b2-485f-8ea0-2878fe6729f1,Standard,922a6375-b97c-412e-a6c9-b0ea55a23f76,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.76271186,0.14754098],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -22a77b21-4c00-4c39-916e-0d442518c9aa,Standard,3dec12fd-3dc6-481d-be05-8df9df7f0c5d,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.81355932,0.67213115],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -dc7ac151-f28c-4709-b760-01f0bfea1422,Standard,5e213f42-d93e-45c5-a295-adbe09105746,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.79096045,0.96721311],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -b7bdbce0-b7f0-46b7-95b7-24ca8fea2550,Standard,b73208dd-f4a8-4e90-bf2d-7ea67a89525a,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.77966102,0.89344262],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -8a1d7137-26e1-478e-a16c-2b4df1c762c1,Standard,f5ae3279-fe21-4bb7-849a-eaacb0546b0e,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.76836158,0.96721311],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -9351e508-9479-428c-bf86-67de77dc2b37,Standard,c8b1fd67-2f03-4153-8ed3-284e7a721ec5,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.92090395,0.25409836],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -2ffc1daf-fd76-4180-8274-6c57ae461e14,Standard,b9a28095-68f7-44c1-9ccc-6efc5ea84c59,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.31073446,0.06557377],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -e30fc0e0-dddb-45f5-8f35-82e943889a1c,Standard,b5548457-5923-4d52-b3c9-fdb75a1df98e,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.92655367,0.57377049],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -5145b6ec-0d37-480d-a7de-9b169d5ab62d,Standard,904c7476-5f16-4ec2-9138-7d5e32d38a3b,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.71186441,0.96721311],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -5dc5e9c0-f62a-40f0-a52e-8dfe9d145291,Standard,d7023c15-adb7-4d56-9f86-b182611a47ef,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.9039548,0.57377049],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -b7fb841b-586d-4500-a7c5-f20d40b20b61,Standard,2a816043-d1d2-44a6-8a9b-f61a4933997b,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.25423729,0.57377049],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -ea121065-66b3-4d29-ad6c-f4f3b34552a0,Standard,bdf97a4d-622c-4251-8183-8b1a696f376e,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.82485876,0.67213115],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -8cd97a28-625a-4d1b-8f3d-214986ed1ae3,Standard,7cff7ac7-2d18-4c4c-8e1b-893bb050c1ed,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.63276836,0.67213115],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -fe6926e8-d1bc-491c-8651-2eb0d9751ffa,Standard,8f422111-67d7-42f0-9f80-fbd0ec64c4fc,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.94350282,0.25409836],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -85ed704e-123f-410d-b2f7-8201f93870ea,Standard,3f63be7c-7f1a-4e7e-87ee-90ada222f64a,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.96610169,0.04918033],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -9f1cfaf1-4a07-451e-a1d4-2113fe65e8b2,Standard,f1cef042-1fc4-4bd8-b17f-dfbded4f2aaa,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.89265537,0.77868852],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -eed131cc-2b83-48b9-a185-4155c09ea4e1,Standard,5862f526-783a-4218-a463-3cbf5de8dade,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.72316384,0.77868852],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -ea770fbd-21e1-4e8e-a06b-52e94884d41f,Standard,14ae9865-cb9b-4518-9f2a-c0fda3455a42,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.68361582,0.36885246],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -331a5334-f99e-486b-a8f2-11891bd1dcef,Standard,ed4697fd-016c-40c2-a66b-e793878dadea,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.25423729,0.75409836],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -fed5e0ee-a4ad-488a-beb2-b2a70465eb56,Standard,d29f66a1-dee9-4e3e-9f41-c4bc8d375bbe,{"type":"LineString","coordinates":[[0.03389831,0.78688525],[0.06779661,0.78688525]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[7.4116482,51.4843281],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -e0e8f17d-95ad-4f26-afaf-e6cff0b2c1c0,Standard,0b2a3b46-5e43-4879-973e-d8fb96429d8a,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.94915254,0.67213115],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -4a68e00f-3517-47be-85a3-7250bdc7d17a,Standard,22e58399-428f-4633-9ee4-e5fa0db68d6d,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.96045198,0.67213115],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -e9774353-a9b8-4e3d-a17a-0748c2c26e92,Standard,00bbc353-d47e-4865-a696-fe5d29b9e6a2,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.76836158,0.89344262],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -f3fec03e-9f9f-4446-8be2-83a9b518ae3b,Standard,52e15712-2572-442a-b22c-add48af95115,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.76271186,0.25409836],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -ed80eeb6-2d18-4d23-a1ae-7a1bc43a8599,Standard,f29859be-c6e7-4cf9-84d7-239eb98a9e65,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.83050847,0.14754098],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -408bf65e-27a9-4053-a8be-563707915f99,Standard,da79c960-d35a-4193-9b06-2d4d57051706,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.8079096,0.04918033],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -166a98e8-88a8-4507-a473-5c27d334477d,Standard,5981fe65-3c92-4a78-af92-1461904046d0,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.95480226,0.25409836],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -50d3de73-c426-423c-84ef-1504296396bd,Standard,582ed42c-fd18-49ae-bdf5-6aa59353c7e3,{"type":"LineString","coordinates":[[0.07909605,0.07377049],[0.11299435,0.07377049]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[7.4116482,51.4843281],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -7258b56d-8372-42f5-b75f-863b3f81e25a,Standard,ca438ab9-3abc-4416-91d1-df01d1c5fa5a,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.65536723,0.77868852],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -700827d6-217d-44a4-a931-eec6420f85a7,Standard,ead38a50-b8f7-4bbb-b65d-f54350825e8e,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.96045198,0.57377049],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -10f32f05-63d3-4cb8-bd31-1c00f4c69eea,Standard,ca3391eb-ca94-4945-ac72-e116f396f82c,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.72881356,0.44262295],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -645190a6-cd64-4488-abb5-c6390445cbef,Standard,f1e55c8b-357f-45a7-9d57-e299f9b207f3,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.79096045,0.89344262],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -ea154576-db6d-44de-b853-685c2049936e,Standard,36cda100-86ae-4a20-ac71-20af603ac0cf,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.70621469,0.36885246],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -30526653-5558-4ad9-b2d4-826aca8af99d,Standard,0f3ba59d-a9ce-4669-aa12-bebec42238b7,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.77966102,0.67213115],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -f56308ac-a9a1-4d69-a5e2-70ba302520de,Standard,4303784e-7193-454a-9be4-3591400b4eeb,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.93220339,0.36885246],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -dbe14dc1-88ac-4a06-8159-8ef2928e1f84,Standard,154e9a99-467b-4f65-9928-8ebb14149baa,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.61016949,0.89344262],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -875f82ba-ccb5-4514-8046-658e6629091f,Standard,c6c177b0-5004-4db0-8cde-6293330a4757,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.68926554,0.67213115],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -d684e588-01fe-4b87-adea-a193f9584846,Standard,c5457e35-ad81-4427-9d3a-99e4c44ccae8,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.78531073,0.25409836],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -e814d3d2-57e4-48f3-86f2-17fddf0c091d,Standard,c1c3b5c2-c79e-4368-a8ae-28fd0f4e357a,{"type":"LineString","coordinates":[[0.00564972,0.07377049],[0.03954802,0.07377049]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[7.4116482,51.4843281],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -ec4d8aea-3ea4-4365-8703-2628cfd42fa6,Standard,b425b28e-48a8-4ec4-a15a-387fcfb79895,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.7740113,0.44262295],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -04318b5b-af7a-4883-a671-bf72584d647c,Standard,3e4cce4a-6e85-4ec2-b3ea-08673a0ada15,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.71751412,0.44262295],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -50374589-78cb-4189-9eb2-a8ec907ca696,Standard,bd292f64-65e8-42ec-9b78-b9b9f013750e,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.73446328,0.77868852],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -77604c41-ad4e-4786-8ba5-a0da0af7241a,Standard,012c9eee-86c2-494c-adcc-bbfc481e4a46,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.82485876,0.96721311],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -f6580db8-09e2-48fa-b605-fe25866616b1,Standard,c72a08bc-4685-49b1-b8ef-803aebc8c388,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.65536723,0.67213115],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -1dab7f15-3824-44ca-9b64-2364d53192ab,Standard,462ca5a4-7ac1-4dbe-a1cf-0bb6b9b9b717,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.78531073,0.14754098],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -5a3624d9-a81a-4d94-80c8-f7594aad0ff6,Standard,cbcfc3b6-ac90-4215-975c-a033f5cf9912,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.14689266,0.66393443],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -1c859190-f5ef-407e-b792-eabaa2472408,Standard,9ce9d92c-5583-4b16-bec6-9f67834663cb,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.81920904,0.25409836],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -7c28ea5e-31b1-423f-a591-335f20836b1d,Standard,33f346bd-7dc5-4140-8ed0-7d7db4cc0f6f,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.71751412,0.14754098],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -80ae1356-eca3-4294-817c-5a738239d308,Standard,4f28e734-5148-4caf-ac64-270231740cbf,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.92655367,0.89344262],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -f1771535-fd74-46c5-a7f2-535f2ab593ae,Standard,daed3552-e382-4153-95be-97f17e2c53e5,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.67231638,0.25409836],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -dc4124c6-ee52-40d9-81d6-c5832a5c1fba,Standard,f26b5511-3c50-42d5-97c2-be408330eb84,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.84745763,0.77868852],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -2b0f09af-6760-4fdc-8661-6688c100191f,Standard,2645e336-b0df-4d1e-a0ea-375444488f06,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.8079096,0.25409836],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -13804a71-8b05-4b92-962c-b229cc9540bf,Standard,787237ad-b3a8-4f2c-ab70-31c5113d82d7,{"type":"LineString","coordinates":[[0.00564972,0.14754098],[0.03954802,0.14754098]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[7.4116482,51.4843281],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -66600910-c787-475c-9892-98098f6afdac,Standard,196fe620-d4a7-45f9-93ad-0579e2bcbb9a,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.96610169,0.25409836],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -10215742-8e24-46f8-993c-cd9a6220e733,Standard,2c5d4eda-6b33-4ad5-a135-7037baa7d6eb,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.20338983,0.57377049],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -cc1b56ed-aabe-4d4d-8450-44e4412cda84,Standard,1f040625-ad1d-409f-bd7e-944c4d805e46,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.72316384,0.89344262],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -4eff33f2-6d61-4d4e-a086-5d7ef49ce257,Standard,4632291f-80d7-4e4a-9dc9-5c0fd0c56312,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.85875706,0.67213115],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -36508d00-e1b3-4df2-a168-e83c84196b35,Standard,5071dd8c-bbc1-4c8d-a180-4492f80e183d,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.9039548,0.77868852],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -59de95df-5cab-47b5-bfc2-223043a24e97,Standard,92cb5065-2e57-4099-8e29-75cbc0c80370,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.6779661,0.89344262],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -37b0bed2-ead9-4541-bce0-3a8df610b7f8,Standard,eb125953-31d3-4207-adf7-aba3a3790d6f,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.84180791,0.14754098],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -e49578f8-f571-481a-b229-1bdb3d6cbf18,Standard,177a20fe-83b1-46df-94a3-4faa54348d10,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.72881356,0.25409836],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -c8f7abaa-75e8-4899-8af7-fbd1ac8702d3,Standard,0db6e581-37e9-4254-aed8-d5cdf66819f9,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.83615819,0.89344262],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -3f9c9aa0-0dbc-48d3-9cd3-b38b429227c0,Standard,c317a6cd-428b-4c36-8233-91d0c4e2717a,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.67231638,0.36885246],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -de8ce40b-ba0d-4def-810c-bf2f5dfd2cec,Standard,4258f215-5b22-446f-a260-e8cdaa7c95d1,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.85310734,0.14754098],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -022c03de-6b04-4fa8-b0bd-4a78f92a65aa,Standard,e3a40690-d085-4796-9fcb-48d776e58594,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.89830508,0.04918033],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -b5045ec8-3bea-4959-be7c-2f96bbf89894,Standard,2287c2a8-c2d0-4c63-80b5-6b66a1288df8,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.62146893,0.89344262],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -08d4e2ec-8532-4327-9d9d-aa51393d53e8,Standard,31a2b9bf-e785-4475-aa44-1c34646e8c79,{"type":"LineString","coordinates":[[0.03389831,0.27868852],[0.06779661,0.27868852]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[7.4116482,51.4843281],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -6d79e6bf-0fd6-47cf-84e1-af8c355a09c8,Standard,773aebe4-fc03-46be-8209-0213e2760a8e,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.70056497,0.67213115],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -416dd5b1-8b68-435b-88da-8ff638754355,Standard,36dccefc-f04c-493f-bb88-11343583bf9f,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.25423729,0.06557377],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -512bdb98-4b93-4691-b710-021fb746526a,Standard,df8df8d2-3494-4da9-8d1b-f913d15f520f,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.81920904,0.14754098],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -ba6759b8-89a7-4b38-b5d6-eb17db1e212b,Standard,b179c38b-5af0-4304-84b1-1dc03314fd80,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.66666667,0.77868852],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -c3c05cb5-3e3d-45fe-b52d-879716aac345,Standard,369cffa5-bcee-4489-8193-1d9b10230eca,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.92655367,0.77868852],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -7855bf17-05c0-4ed4-b1c0-b3dcd6fd24df,Standard,bea7ca63-3ae4-4280-8127-fe2c7fd5ea2d,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.88135593,0.57377049],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -f5cbde9f-522f-4b81-9093-d648274afcee,Standard,bd288184-99d8-4233-bb3d-484f3922200a,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.6779661,0.67213115],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -91942a3f-4bd9-472c-9691-426a6cf5314d,Standard,576840db-7d3c-417b-b587-28b222e740e1,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.75706215,0.57377049],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -4a71a58f-2e89-4a01-a76d-41c57d65fd5a,Standard,b32c5f5e-b6b8-41ed-a192-078e1aed05ac,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.83050847,0.25409836],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -ffd94a18-e4f0-4088-893a-3d9dae11ddf5,Standard,d69efff2-ba8b-4aa6-a4a1-27267964147a,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.20338983,0.06557377],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -3dc0bb9a-0ef9-446e-b039-b4522a42e3d6,Standard,6570535c-0d2e-4846-9951-21559902f67a,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.8700565,0.67213115],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -1f106b59-4fce-4be2-a05c-a6d96f188fde,Standard,f6eff0d1-af6b-46ce-b430-4d30976ec08f,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.83615819,0.67213115],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -b0d59363-291f-4fb2-a555-0f24126e45f4,Standard,49dcfc70-76ca-4f6f-83f7-0bc2aab1ae34,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.89265537,0.57377049],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -8119e1cc-7122-4551-8cac-6724df1d786c,Standard,de5ee252-ebb6-42b0-875c-77ae557ffbf6,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.90960452,0.04918033],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -5be3829e-2848-4b72-9cb6-61aefec4e172,Standard,970cf93c-36c5-4938-a7e4-3f184a7035f0,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.70056497,0.77868852],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -011c1cb7-a03a-448d-8ea0-40ebe2336949,Standard,732f83b0-b9c5-4b8e-86fe-753c26f40e78,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.75141243,0.14754098],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -abafb627-a899-43cc-bc4e-e6a574da9f1a,Standard,ae234bc5-b751-41f2-95ee-b78de124c583,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.8079096,0.14754098],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -eb238e09-ce22-4dcc-86ed-20a584fb6b32,Standard,9aaf57c4-cc5c-4a01-8c2c-72bc7e231cc9,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.81355932,0.77868852],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -4d9fc234-c097-4b0c-9f9d-0453bbc9a713,Standard,9b889b73-c108-4b38-b6eb-3377841e0c83,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.85875706,0.57377049],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -d90d97cd-e0a0-4433-90fc-3610bc3d35b3,Standard,f5839ade-5968-4879-a824-90b5fb3552cd,{"type":"LineString","coordinates":[[0.00564972,0.2295082],[0.03954802,0.2295082]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[7.4116482,51.4843281],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -0348790a-ff1f-4f55-8b43-50aea5e5cb18,Standard,bf7e7268-2fb6-4948-ace6-9037ae148fa3,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.93220339,0.14754098],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -30e110e8-da4d-4970-bc25-3f9d7300b6ac,Standard,270c7266-45dc-4e45-829f-c04f6b631cad,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.81920904,0.36885246],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -908b7283-2584-4cae-9017-26b8ea0fb79c,Standard,3d81adf5-73d1-4708-b03b-3afc7db017f4,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.86440678,0.25409836],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -b9dcea5f-f318-419f-a714-fd51caa60fe0,Standard,5d1cce49-e000-4a33-a0ea-f3685f8cc5a3,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.66101695,0.25409836],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -03e41436-72f8-4b2e-9340-52ba4d8e094b,Standard,f8dd541b-4a4d-417e-89ff-a9650ee3aac2,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.81355932,0.57377049],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -a4ee0ad6-0813-4537-b795-edf17d4af91a,Standard,fc7821d2-ac64-483e-b520-38d9971f4db0,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.86440678,0.36885246],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -d83e93ac-d76b-48ce-b1c2-511a116595ab,Standard,366a70fb-8d7f-4201-9eca-0fcbc839239d,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.88700565,0.25409836],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -31c8d1f9-a00e-4392-ae33-da09323f0b4c,Standard,67af7db0-0fd8-4657-bb4f-43a2141b9f73,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.62711864,0.14754098],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -97e202d5-561b-418b-8b53-fa080e7cb931,Standard,21359dd1-7a23-4932-b656-c196fbffe751,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.76836158,0.77868852],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -9c1050be-a40a-42da-9f0b-b91aa206b0ce,Standard,06b7f21a-d6d7-4ec0-94c6-141845f14986,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.78531073,0.45901639],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -dc25d9fe-d077-46de-b78a-ea5f01fa44bb,Standard,94713e6c-c47e-422c-8ab3-2a2903b7dcd2,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.66101695,0.36885246],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -0103c715-ad75-42c6-a64f-f17fe46280e2,Standard,1bf26b4d-03cc-4490-8c33-d3db8597d807,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.69491525,0.14754098],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -b392f548-3eb5-4d17-a320-fda6305fff89,Standard,67c1746c-3af8-403f-983e-1c7c047383df,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.85875706,0.89344262],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -189e6f29-116f-4087-8cdc-9303cbb41e89,Standard,f6272655-bd7e-4d2d-8bdd-285f3ac0d3e8,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.92090395,0.14754098],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -05a66108-a122-4dbf-bbd9-c57a3904df7e,Standard,e3c3c6a3-c383-4dbb-9b3f-a14125615386,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.8700565,0.89344262],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -78ca2d9e-d805-4b55-b2eb-25634035b606,Standard,7d45f0ab-1e6b-452f-b665-c4846cf046f5,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.70056497,0.89344262],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -65acfa71-ccb9-4c73-8869-d24e740f3652,Standard,3ec2f2a0-36a3-4d11-88ee-cc4df001e876,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.79096045,0.67213115],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -a7bdd616-a136-4976-b595-1524c333aac5,Standard,f2d03b34-9595-4819-a00b-ff9ddd92eb07,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.77966102,0.57377049],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -86237e52-5633-4047-9370-69d30e223fec,Standard,dfae9806-9b44-4995-ba27-d66d8e4a43e0,{"type":"LineString","coordinates":[[0.0,0.06557377],[0.03389831,0.06557377]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[7.4116482,51.4843281],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -c28b1895-0c06-4dcf-b37c-68793612f035,Standard,2d4beb13-8e6c-46de-9b1c-409c7ca7573a,{"type":"LineString","coordinates":[[0.96610169,0.39344262],[1,0.39344262]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[7.4116482,51.4843281],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -fc20d94d-2857-4106-a9e7-3f1aac1173f6,Standard,625bdd2c-a75f-46ef-850c-ca4704d56e55,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.70621469,0.25409836],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -52d41e1a-4ad9-4f82-ae81-ce9a6a4d0a1b,Standard,e018b95e-fca5-40f7-8550-b05a619169dc,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.90960452,0.14754098],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -d135cd38-118a-4c91-8435-6e72518d444a,Standard,9b509c7d-4647-40fd-b03e-7ab919215cc6,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.71751412,0.25409836],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -25107814-9a22-49f5-ba01-00c7c3ad123a,Standard,6232b760-b2e0-485e-9c61-f9721a366a81,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.79661017,0.14754098],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -c945778f-a8e2-491a-acaf-7b594764f775,Standard,98072ded-726f-4f0b-8bbc-4fb6d5086a7b,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.88700565,0.04918033],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -098f365b-4ec3-472c-b137-2525bfa4a7af,Standard,b7a5be0d-2662-41b2-99c6-3b8121a75e9e,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.62146893,0.67213115],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -32c5b241-ac2b-42b9-89e8-fd747a64ecd3,Standard,f717b05b-f4e7-43d9-af9e-638e2badee5a,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.85310734,0.36885246],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -8910eb73-d32f-471f-a7a5-92570070be29,Standard,6dcdc87b-a719-416f-9da1-21a701048f3a,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.88700565,0.14754098],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -1502e4ed-7627-4a7f-b251-02da6c951643,Standard,69aeb4a6-1c4b-4953-bad9-54fc0c7e495b,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.94350282,0.14754098],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -26c688ba-b07c-4b84-8bcc-f5ede0b8f957,Standard,3802b603-d08d-4031-b7d7-e29734bcc122,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.61581921,0.36885246],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -fd99eb90-1a76-4b0b-a7b4-294f4bf6a4f7,Standard,519ace7e-fd3f-4797-b14b-36c1694b00cd,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.8079096,0.44262295],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -30a60292-f650-47fb-8281-cffda93a6529,Standard,6bc0dda8-25f4-48a6-9645-21e1eed5c6ff,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.88135593,0.67213115],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -68d4c4d0-246e-4cfb-95f7-f3b2aef8788f,Standard,3da4fd3d-ac5e-409d-91fa-36516673cf57,{"type":"LineString","coordinates":[[0.96045198,0.91803279],[0.99435028,0.91803279]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[7.4116482,51.4843281],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -0286cd61-b997-4cd9-a139-88eeab79339b,Standard,55b3d03f-2204-4ab3-84cc-a28476868c9d,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.76271186,0.04918033],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -cc657d07-3495-45b8-a90b-76769e14f2d8,Standard,8a50fb37-81cf-47c9-8850-a12b4391e2e7,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.09039548,0.24590164],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -2e738086-0b9c-4e39-b00d-99d27420cb1e,Standard,e0a6c8e9-7d1f-4965-98b9-e543bacb6b83,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.66101695,0.14754098],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -0cefddfa-26b5-4dc2-ad52-87fa38c40e09,Standard,77fc154f-f41c-4e75-bbb1-b7fca68b2f4e,{"type":"LineString","coordinates":[[0.20338983,0.2295082],[0.23728814,0.2295082]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[7.4116482,51.4843281],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -0fafac48-b639-41d0-8c67-098ebb0b8abd,Standard,7125de08-1d28-409a-8b23-023a0294def5,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.94350282,0.0],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -6aa9dcf5-cfca-47f7-ae51-1c251a7a6a4e,Standard,a5c73608-5a85-495d-bea0-df77b6ce66ea,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.8700565,0.77868852],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -56191c65-c5b3-474c-bed2-291c8104fdf7,Standard,443c1513-fdeb-4e29-ae89-5ea47c0b1d3f,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.63841808,0.14754098],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -cb82c2a6-ea8d-4f49-a6aa-9b615295945d,Standard,15345698-c319-461f-b969-37d50fb84220,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.6440678,0.67213115],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -1a9191b1-c559-404c-a61e-1da846c5efde,Standard,0c266541-6235-4d01-8258-e763c58af6c7,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.83050847,0.44262295],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -b4cc5801-2bf1-4448-be4d-05778e033eaa,Standard,95ced3b5-69fd-4171-9c34-f18802064e22,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.83050847,0.04918033],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -8e1c4db3-dfd2-4522-8478-7b760ddeb35d,Standard,b8fa1f73-223c-4b08-a140-44f12484cce3,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.75141243,0.04918033],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -3767a331-5208-4bc1-a8cf-cb4b697fdf0f,Standard,32bd37df-255b-4eb2-9d16-5b711132eee6,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.31073446,0.1557377],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -63d56d37-d81e-4476-8916-83ae7ad4c7f2,Standard,4db634e5-3eb8-4c17-bc44-eb224667580c,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.89830508,0.25409836],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -c94b74dd-5f70-4203-a9ee-76452e5d8c28,Standard,32507a10-1eed-4a3f-820c-bc187f3b052e,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.72316384,0.96721311],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -7abdcec1-e147-4877-be06-6c56fd043509,Standard,1cb45ba0-d2c2-45a6-9bb2-5f374e30a6e9,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.93220339,0.04918033],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -96fb5883-b7dd-4646-8bf9-e6e6d730f5bb,Standard,1ee9de9a-0095-4b58-beeb-e56fb908844a,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.66666667,0.89344262],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -3080afb0-0cdc-4641-ae10-71c05a48fa0f,Standard,92301422-94ae-48ab-89c7-a69eea9450b2,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.31073446,0.24590164],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -bcc42757-dac4-41da-86e9-31202e91f56f,Standard,b6b1b9fc-e7d8-492d-8601-84c1e756bd83,{"type":"LineString","coordinates":[[0.14124294,0.18852459],[0.17514124,0.18852459]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[7.4116482,51.4843281],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -c19514ea-fa93-4979-bf9d-23fafe71eac2,Standard,0228ffcd-f6bc-47c8-b26c-fcc0abacd963,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.91525424,0.77868852],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -11fb04eb-12dd-4f9f-b781-fa27757154ab,Standard,401f37f8-6f2c-4564-bc78-6736cb9cbf8d,{"type":"LineString","coordinates":[[0.21468927,0.1557377],[0.24858757,0.1557377]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[7.4116482,51.4843281],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -fd046e8b-2547-4a89-a298-9539b65a2f27,Standard,0d94a5ea-3a13-48ba-a27f-b2903841c334,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.74576271,0.89344262],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -0f6ac439-e4c6-4df4-908f-4a8b02f713c8,Standard,00d4a837-f09c-41df-bed1-dfdb78387116,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.91525424,0.57377049],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -5ddaac19-1138-4282-9ecf-3e2e8c89839c,Standard,27d9e46d-5a9a-44f9-b17e-cd6cffb5e769,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.81920904,0.44262295],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -1dc63262-3e84-4ff5-a65c-2373cbd4b222,Standard,75f2dfb9-75a0-496d-9c44-79e7df54c1df,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.87570621,0.04918033],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -6e15708d-00b1-46c0-9e80-52ddcc89bc61,Standard,80d8252b-045f-471a-9638-416ed3f86120,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.79661017,0.44262295],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -6e31f8dd-5039-4c80-ba78-868496f99427,Standard,8f80e777-ccbd-4630-b10e-238e824113fd,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.75706215,0.96721311],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -dc2e34c5-31df-49b4-b6f3-ea3fc19ab0d7,Standard,5af425fa-6ed7-43e1-8898-7af1315128c5,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.74011299,0.14754098],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -4b969595-3d78-432a-b244-9a6f984a3bd5,Standard,bd8c7d3d-e830-4a46-bf78-0086ce24909f,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.88135593,0.89344262],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -8566c6b6-ae20-42aa-b709-dfbbbf563208,Standard,86dfce49-05b2-4208-a6ae-877c3e98e6be,{"type":"LineString","coordinates":[[0.14124294,0.07377049],[0.17514124,0.07377049]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[7.4116482,51.4843281],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -f39077f0-ac8c-4397-823d-37701d7982e8,Standard,898d8295-bf35-4079-9374-99b059c2c956,{"type":"LineString","coordinates":[[0.20338983,0.0],[0.23728814,0.0]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[7.4116482,51.4843281],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -a53441bb-a915-45e2-a9af-73517ddaf34a,Standard,8b3e3802-5213-46d0-a498-15eb6e5852b5,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.82485876,0.57377049],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -a17793fb-5615-4b2f-94f3-74d11ec8933c,Standard,97ae0aa4-bf05-4b88-8020-83cbda415d22,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.70621469,0.14754098],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -9031d2ef-01e7-4e1c-a880-ea3ee9102493,Standard,4e188ac9-e507-46b1-b8e2-376cf7c6ceb1,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.09039548,0.66393443],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -96cdb8c3-a706-441d-834c-ed86988c29fc,Standard,04f29760-9e52-4943-8563-62e1fbd5ed52,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.90960452,0.36885246],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -eede57fa-6784-4894-8476-736f65984791,Standard,2c520ab6-507e-4dcf-ab05-8f238e9b9385,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.96045198,0.77868852],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -5ea15b76-2059-405d-a030-b8bf6b7d4f06,Standard,2fe5100e-d4e8-4bc4-9c7c-bcc0fc56f518,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.96610169,0.14754098],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -8bb36c81-659c-42b6-8772-dbf4cdd68baa,Standard,cdda8fa5-9a18-4f3e-951d-1ec0009191b4,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.93220339,0.25409836],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -cc25baf6-91ba-4c2f-a7f3-dff202d7cba5,Standard,1a1e63f7-6196-4856-9f4e-876a44bdf2f8,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.65536723,0.89344262],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -929a85d7-16c2-48a3-9b4c-0b856f935098,Standard,d2aff632-fc26-4595-931c-92e266247ac8,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.72881356,0.36885246],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -c38dd991-14c8-45fd-97f6-eb21df94630d,Standard,40b0f497-96a3-49d9-9503-8fa67a5b532a,{"type":"LineString","coordinates":[[0.14124294,0.0],[0.17514124,0.0]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[7.4116482,51.4843281],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -85393fb1-b60f-48ab-b0d5-56002cc2ebe2,Standard,550ebca7-1455-44eb-9431-ffbf08e58bd4,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.14689266,0.06557377],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -41c1aa80-2d8b-4993-a943-eeb328d67532,Standard,450426ac-a560-4d17-b1fc-9e169530a655,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.73446328,0.96721311],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -0434dc12-6149-4832-a288-6620ee0389f2,Standard,3e21f3a1-2c9c-4138-bcc9-466b004609ed,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.14689266,0.24590164],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -cc135490-2330-43ff-8ac5-dff7ce96c433,Standard,32b3bb19-c52a-4a19-890a-94a8918d38a9,{"type":"LineString","coordinates":[[0.00564972,0.18852459],[0.03954802,0.18852459]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[7.4116482,51.4843281],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -063dc228-df79-40c7-ba28-3508df3841b6,Standard,39dbc5ed-d874-48a8-9128-e970436a94b4,{"type":"LineString","coordinates":[[0.14124294,0.04098361],[0.17514124,0.04098361]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[7.4116482,51.4843281],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -6a795129-21a1-4796-b945-4966ee0c9903,Standard,81cd3f38-867b-4a71-ba22-cb33834e0e58,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.25423729,0.66393443],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -b8a69ed7-b65a-40c9-84e6-37fb01f064fe,Standard,616da4e5-e837-44ec-bbbc-0cd12b5da8f7,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.72316384,0.67213115],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -1730aedc-aec2-4f82-bc90-2c821b470e0c,Standard,f1e88392-3b2a-4ce8-a31f-c963f08f8043,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.89265537,0.67213115],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -00e6a38a-f4f0-4cd8-a182-3c3c2337571e,Standard,9f7599de-c488-46c5-b053-1279a511f7b9,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.74576271,0.57377049],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -00783c26-0fc0-4b48-b470-dc44e8599a28,Standard,6c24b464-790a-4aae-bb11-766718f07cd5,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.82485876,0.89344262],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -54daf474-ca11-4e75-981a-c1844928d43f,Standard,c7e09266-c778-433b-b01a-5fb9e298ea8e,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.94350282,0.04918033],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -3ade7f68-6a98-469b-90ea-d6845ef884fb,Standard,3b879239-20c8-4adf-bd51-92924327ee71,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.80225989,0.89344262],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -f53a49a2-00a5-45cf-8734-476821a46456,Standard,2f921888-36d3-4c88-a8aa-1ecbdc62b9c4,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.73446328,0.89344262],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -1f187c3f-498b-4c02-89ed-e7b03ad410fd,Standard,fd4f6232-c28d-4fc3-81dd-03b84aad695e,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.77966102,1],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -4aaa58c6-e6b1-4cf2-81a6-aa6fa312bab1,Standard,4f78fe6d-3cb2-4d99-8c67-4f14cb626813,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.76271186,0.36885246],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -0bab2fbe-f6c5-4f9f-bc3c-683683374b11,Standard,17f7a477-d9c7-4f58-8ba0-1a2694dcc874,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.76271186,0.44262295],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -ceb5394a-78c5-4f94-a4dc-ad051fedfa17,Standard,032768b4-2426-4abf-806b-83813ac5137a,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.14689266,0.75409836],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -86550a99-c324-413d-aa27-2ebf243249e9,Standard,d5489e1b-0e7e-4ca9-a362-09c23576a622,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.84745763,0.89344262],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -dd5aefc9-bf4f-4647-8a7f-9a618b912074,Standard,535b3fa4-ed67-4ab1-9a68-e7db83e05967,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.09039548,0.75409836],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -aa57fd6a-7f6d-45df-aa28-1dc626abe782,Standard,d82fae59-844a-4c85-997e-326dd876137c,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.80225989,0.77868852],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -5b351429-1d9d-470f-b303-b2559b5882a4,Standard,9baae5ff-40e3-48cb-9ddf-de6d1c133e13,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.83615819,0.96721311],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -33b5bbcc-1274-4bf2-8b03-e46eba03f7d1,Standard,5dfd45b8-48e7-42fd-ac53-cc57455486b5,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.84180791,0.36885246],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -49bff912-4ea7-4274-bae4-95bc9c12219b,Standard,1dcddd06-f41a-405b-9686-7f7942852196,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.69491525,0.25409836],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -4a7746dc-01ce-4dd4-94b3-0778d9ded0b9,Standard,666757e2-292e-473c-ac9c-04c0786574bc,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.81355932,0.89344262],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -ecd0e92a-9446-48ab-b6e2-43942575db1b,Standard,55caf2ec-a21b-4afd-8830-1e4009cce396,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.66666667,0.67213115],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -e328034d-d8f4-42ec-874e-3cb06d91bb3e,Standard,9d02ea80-98d8-4cd0-a635-9104a14a56dd,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.84180791,0.25409836],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -a7344637-1266-45f3-af15-ca5dfe9d77c5,Standard,205fcee1-928c-4374-950c-34575f07fa49,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.63276836,0.89344262],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -e1b94071-73d2-4f2a-b5e6-3899a7689e54,Standard,d8c35123-b389-4199-84f9-d417d24bb78d,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.79661017,0.25409836],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -089192f0-e01c-4959-876f-b4f049da0941,Standard,50164699-2018-4b17-b3f1-74b082f27403,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.89830508,0.14754098],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -5f72658c-b370-4424-b2b1-61c5368a6b9a,Standard,011e3794-3341-4376-839c-3f5a452e15ab,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.68926554,0.77868852],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -dc6febac-9d01-4142-a73a-dba92b98395a,Standard,a4a44d93-48d6-4b87-8053-87fe0778e75c,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.73446328,0.67213115],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -ee1d5114-5f69-4ff9-91e9-273d8437e2ae,Standard,f66df6fa-3dfa-4515-85d7-54d0f429fde7,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.92655367,0.67213115],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -1306ee4a-e876-4ac6-b981-aab5e6e23406,Standard,535843a3-cf93-412f-b4d7-585337791ba8,{"type":"LineString","coordinates":[[0.07909605,0.18852459],[0.11299435,0.18852459]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[7.4116482,51.4843281],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -b7477d53-b5db-41d6-9e70-3628e24d5a3d,Standard,033d0230-4aee-47cf-91f9-81f5f40e60b0,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.77966102,0.96721311],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -51422821-5966-4151-92c6-cc6150951f81,Standard,85ec9277-c5fd-4e5b-8a34-9627d9599ad7,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.76836158,0.67213115],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -6c94d627-6100-4aec-9a3e-6e04edf1d2fc,Standard,69efeb2d-9845-49ac-8500-5e017a7a64ef,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.94915254,0.77868852],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -9f2a5f75-9c3c-4f6f-9000-3f2b983afd72,Standard,3a2f199c-2966-4b9a-939b-3a6c9924341c,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.62711864,0.36885246],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -da7db7bf-0857-4f45-8abd-426f62aed003,Standard,b22c9299-5fb4-46a7-b566-fc17e0d51d60,{"type":"LineString","coordinates":[[0.00564972,0.04098361],[0.03954802,0.04098361]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[7.4116482,51.4843281],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -f357848e-d0e0-44db-8228-b938eefe8d86,Standard,a12b9ded-0c19-48c2-ac19-7a3a9b7e26da,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.92090395,0.04918033],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -bb372eec-e66c-4eed-b87d-15370feab1be,Standard,ba0b3e4b-85e1-4b45-8863-fbfe11c9b69c,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.71186441,0.67213115],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -b8697183-05ca-4701-a2e3-d0d25be61acd,Standard,41414318-73e3-4bdc-8147-570a96b28d37,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.85875706,0.77868852],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -44cda5d8-348f-4204-99cb-0ec4baae9cff,Standard,6678c226-c5d2-4ce3-9728-dc1163be799f,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.85310734,0.25409836],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -69b740cc-a143-4e1b-bfa6-22f8baa163d1,Standard,b608d71e-3ede-4156-a015-3f6e1d22242a,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.80225989,0.57377049],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -b73cff24-aa97-493e-9da3-8aa3ad414215,Standard,99e26ef8-75e2-46f3-aafc-6287bf5e3905,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.87570621,0.36885246],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -a4b9788d-431a-414a-b3ac-809fca527237,Standard,b237dd88-bcba-4a7c-aee6-c0c3e151e14e,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.9039548,0.89344262],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -e815c65b-2b44-4afb-a73b-7da1a0df6a15,Standard,8f2ba96f-a47a-46d3-b5a1-d19de0a32419,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.79096045,0.77868852],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -09be2147-da4d-4f8c-ae3b-c241653d1fce,Standard,eb21d716-1b54-4dba-bdc2-d1f6752aef85,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.88700565,0.36885246],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -5b899ffc-48b1-4ffd-bb7c-dfe2d727bbb0,Standard,ee384ace-040e-4f21-8a8a-d702ab51af55,{"type":"LineString","coordinates":[[0.20338983,0.07377049],[0.23728814,0.07377049]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[7.4116482,51.4843281],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -a9b3d323-e2bd-4d53-9de9-82ac9185cdfe,Standard,8254d91b-e5da-4402-bb8f-301eafa09d28,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.83615819,0.77868852],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -11f61a48-2d5c-4916-8180-def8544d16c6,Standard,c5f7ffbc-2e23-46d4-9e0c-356008e5ff56,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.74011299,0.44262295],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -fb4d855c-83a0-435d-a08a-15c8716f2e7c,Standard,ffcaf979-d707-4d25-8f46-f436f9792d7f,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.84745763,0.57377049],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -bdd060c8-0636-4042-bedf-0acbd1244bdf,Standard,890f2162-b4cb-49e7-a16f-4b552c5e245c,{"type":"LineString","coordinates":[[0.20338983,0.1147541],[0.23728814,0.1147541]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[7.4116482,51.4843281],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}} -70e6914f-0cad-4319-9ae3-7cd5482152ea,Standard,e25387d0-ab9a-406d-bcb4-555414b88b1b,{"type":"LineString","coordinates":[[12.8273,52.2895],[12.8273,52.2895]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.86440678,0.14754098],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} -83c21903-e94d-4b2a-a933-8cc984d28f24,Standard,ce71377d-63ea-462a-9290-67e51946a098,{"type":"LineString","coordinates":[[7.4116482,51.4843281],[7.4116482,51.4843281]],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},{"type":"Point","coordinates":[0.91525424,0.67213115],"crs":{"type":"name","properties":{"name":"EPSG:0"}}} +342e3e77-6ff5-48ce-b02d-1f9bd4bb303c,Standard,d40a1a85-40f2-4ad3-ba58-720d5ba02268,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.78531073,0.04918033],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +1b58f786-a0a1-436f-98ff-0a8005e4b1cb,Standard,69f7846e-d979-4c77-8a3b-e2ec2e1f6e76,"{""type"":""LineString"",""coordinates"":[[0.07909605,0.14754098],[0.11299435,0.14754098]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[7.4116482,51.4843281],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +bfa159f5-ab6b-4277-ab81-30ac92ec893f,Standard,34cd8ee0-e607-4c47-89a7-121c3e32768a,"{""type"":""LineString"",""coordinates"":[[0.05084746,0.18032787],[0.08474576,0.18032787]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[7.4116482,51.4843281],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +2a1e5940-c981-4e19-b8b3-c9816f9b0da1,Standard,6dd72a1e-2a79-4cde-b2fc-92bc9a83032a,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.8700565,0.57377049],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +89d08dbb-d2f4-4248-a846-7e13aa1926e6,Standard,e4502c52-b4d7-4082-a583-b5688d8244e0,"{""type"":""LineString"",""coordinates"":[[0.14124294,0.14754098],[0.17514124,0.14754098]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[7.4116482,51.4843281],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +6b88508e-ab70-4026-ac4a-8effa4b83d2d,Standard,ab3645a7-af26-480d-b1bd-5b0fa00dc83f,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.91525424,0.89344262],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +2db9a259-6929-4f7e-b1b4-e0bdb86cd09d,Standard,fa6d5184-b205-4b1b-839f-7b21ac956c29,"{""type"":""LineString"",""coordinates"":[[0.20338983,0.04098361],[0.23728814,0.04098361]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[7.4116482,51.4843281],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +ed4ad694-299d-4c79-bb31-3d7f9f6013db,Standard,9d7038e9-5bcc-4676-bead-46c4f1291ba8,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.90960452,0.25409836],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +0e676643-d3c8-46f8-836c-0ef21bda69ce,Standard,a286f73a-20ee-4056-8129-c7963b34ecd9,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.87570621,0.25409836],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +5a1daa68-a04c-4b27-b2a2-62a53da0b9ff,Standard,926d6113-933f-49e3-9529-a3035acdc9b2,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.31073446,0.75409836],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +ed32fd63-b9cd-4bdc-9301-51c7e83cf88a,Standard,7d44fe44-8c85-4b61-9d5c-0c4304e47ba8,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.61581921,0.14754098],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +7bf5033d-efa1-4b45-b885-4c22ede1336d,Standard,df9c3d91-41a0-4e49-bb1f-1cd2a8fd9a2e,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.20338983,0.1557377],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +80ee9fdd-b0c4-42e2-835d-abcb120e323d,Standard,9f95c733-71e2-4bf0-a27a-70144518ea2c,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.80225989,0.96721311],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +28a9c06f-b6e3-4104-b904-aad99b88fcab,Standard,ce513b50-b57a-41e2-b744-4c0fd2ae97d0,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.71186441,0.77868852],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +1f91737b-2808-4986-839c-4d8238dbbb35,Standard,60173008-809d-4d8f-b06a-3c4a838dd989,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.78531073,0.47540984],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +94684e7b-92e8-4976-8c16-4a4c80a0a027,Standard,1a8ba1a5-3cee-4791-b21b-f17b08526873,"{""type"":""LineString"",""coordinates"":[[0.07909605,0.2295082],[0.11299435,0.2295082]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[7.4116482,51.4843281],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +bd82b2de-920f-4332-a93c-a7b0b4285910,Standard,bb59ca46-1f2e-41c9-9723-90b306f043cd,"{""type"":""LineString"",""coordinates"":[[0.14124294,0.2295082],[0.17514124,0.2295082]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[7.4116482,51.4843281],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +9be737eb-c6f9-4b03-8dab-55e43dc6ecc6,Standard,a7ebd30b-b843-405f-9fae-ca6b489601f9,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.92090395,0.36885246],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +3df7db14-eec4-45ba-93df-fb179ede15ef,Standard,dd9d4153-c56f-4457-ad5e-46a48d4486b6,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.89265537,0.89344262],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +7eb3ff43-5237-4a87-8a83-05e6fab5f6e5,Standard,2aa2d409-8bb2-477d-ac7a-6439552e136a,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.74576271,0.77868852],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +1e9fb4ca-4c4b-43d5-85c9-85eeb238315b,Standard,61ee5ff6-eb38-4b27-a3f6-cb574d1f8b41,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.72881356,0.14754098],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +68480188-a299-4ad7-8451-54dd092ffdc9,Standard,df97c0d1-379b-417a-a473-8e7fe37da99d,"{""type"":""LineString"",""coordinates"":[[0.07909605,0.04098361],[0.11299435,0.04098361]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[7.4116482,51.4843281],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +84387c6a-225a-44c5-be9c-bd19573fa19a,Standard,f6a31362-8b0d-4926-b0d0-10bb61db20df,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.83050847,0.36885246],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +e6260eb6-1993-4b2f-9da4-6ac480f41954,Standard,792b505c-87ab-4665-a31d-b6035c5ece70,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.88135593,0.77868852],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +d5ba0437-9666-4c88-a1cc-4a983e9d7d9d,Standard,49b511fa-8cff-45f4-9a59-54faaaf90abf,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.78531073,0.44262295],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +5c590022-3662-4882-9a3d-e39d618b00ad,Standard,33f29587-f63e-45b7-960b-037bda37a3cb,"{""type"":""LineString"",""coordinates"":[[0.21468927,0.07377049],[0.24858757,0.07377049]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[7.4116482,51.4843281],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +0720eaa7-85a2-48f0-a2dc-081c818d2ab3,Standard,d07dc1b0-e29a-452a-84c5-7df7b0bb3141,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.80225989,0.67213115],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +c67ff8a5-d296-47db-970a-4f6b2ab7c77a,Standard,d53ff076-dadd-44f8-85d4-68f48991f7d0,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.14689266,0.1557377],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +fcfe053f-d8ce-407e-99d5-b0b480a3abb1,Standard,5545d21b-bdc8-495f-bd28-d22ffcc0fafc,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.68361582,0.25409836],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +dc081e8a-4fe0-4bf1-b215-67e1454eae93,Standard,543f7e9f-b9be-486b-b365-2bae79010758,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.77966102,0.98360656],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +821614b3-c5ea-41b3-87a6-6090c26d97ff,Standard,3bc8235b-03b5-489b-81a2-58d520fbe28e,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.31073446,0.57377049],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +4d9cd1b8-f525-48eb-b280-2271ed073d67,Standard,5f1c776c-6935-40f7-ba9e-60646e08992b,"{""type"":""LineString"",""coordinates"":[[0.07909605,0.1147541],[0.11299435,0.1147541]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[7.4116482,51.4843281],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +a485471a-ad4f-4ca8-b960-ebf1a5504fd4,Standard,b3a7431d-89b0-41cb-87a9-5853890796cd,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.25423729,0.24590164],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +a158cd0e-50bd-40d1-9d23-17c0ff9bb08c,Standard,1dee13af-e638-4858-9c69-0069190cd577,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.74011299,0.25409836],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +69232745-5bf2-45c1-b3a3-8d7ebbe08558,Standard,1396cb4c-cee7-4116-97c9-290f98785719,"{""type"":""LineString"",""coordinates"":[[0.00564972,0.1147541],[0.03954802,0.1147541]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[7.4116482,51.4843281],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +74b3a575-3f22-4673-a89c-1199c06a2d0f,Standard,b37ea333-65e1-4211-8449-993b67e8e0e2,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.93785311,0.57377049],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +9ed48993-1a92-453a-ba31-11eb00021025,Standard,14a8dc4c-0906-402f-b073-6d6d4725d0cb,"{""type"":""LineString"",""coordinates"":[[0.07909605,0.0],[0.11299435,0.0]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[7.4116482,51.4843281],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +69658801-7a8c-48b6-809d-3fd07892a5ec,Standard,119d270a-ff22-4fdb-8214-cb5b336790bf,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.86440678,0.04918033],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +2747953c-f646-407d-978c-1318659a63be,Standard,174fb4b2-4f9e-415c-bfee-d850ef751307,"{""type"":""LineString"",""coordinates"":[[0.20338983,0.18852459],[0.23728814,0.18852459]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[7.4116482,51.4843281],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +e80cc517-0a6c-47f2-a7a7-298f49dc353d,Standard,dc022eec-16b0-4a64-a2f5-498d81aca71e,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.68361582,0.14754098],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +0dde18db-3ec4-4941-b84c-231452a1f23b,Standard,e2267696-669b-48e8-b43a-37d0db95011d,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.84745763,0.67213115],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +dbcab492-c97f-4a09-be52-5cf03bfd8490,Standard,eb95ff15-56db-4463-bb54-0ee131167812,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.20338983,0.75409836],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +ed286ef7-6402-4264-9803-72e3ee03a9cf,Standard,4f2402e8-664a-40f2-970a-abc098a2a0d1,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.63841808,0.36885246],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +f7e1e922-52d3-469f-98c6-5353a5d74641,Standard,e4c8b492-965c-4b5a-8d14-e8ff2c027ce9,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.20338983,0.24590164],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +e7ce727f-dc6c-4c81-ab20-ef6d5b0c247c,Standard,fd534474-cd65-47aa-8005-dc50d17d6920,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.20338983,0.66393443],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +31c566a5-37ba-4520-aec3-add6044fbfa5,Standard,c5af5a34-211a-4105-a8e1-f447140073c6,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.31073446,0.66393443],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +c1b96bd6-563f-4f4d-b401-1955e29d7ced,Standard,857c264a-7072-4bb7-af56-2f01539b2a2e,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.85310734,0.04918033],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +cf142631-94bf-4d25-adaa-387714e975c8,Standard,5fe9c522-37d0-48f8-b3b8-e91b956e39f6,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.75141243,0.36885246],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +dfe18a4b-8980-40fc-9a77-69a6b5da930d,Standard,01bdd8b2-145f-42b3-80e3-a2366dea1044,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.9039548,0.67213115],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +0c859327-e893-424f-bbb2-46d077b0c6f6,Standard,416fa5eb-2f72-46c3-978f-6a0ebb714a40,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.09039548,0.57377049],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +9cc54a0e-640d-4d9b-a163-8dedb0bbd7f3,Standard,8b92ad35-8b0a-49b9-9f66-f42ddfeb9c65,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.93785311,0.67213115],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +e9266e59-ed7d-4719-abe6-455193c4f5f3,Standard,810bebb0-0d5c-4899-b213-3207be661248,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.75706215,0.67213115],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +865f965a-f8d1-49cc-a85e-92f59a4ecb01,Standard,40537c84-c812-4231-bd23-0ba81922e937,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.77966102,0.77868852],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +56271174-1da2-4402-9026-82e3111186a0,Standard,b7baa286-cbe2-4143-a08f-4e025af47529,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.78531073,0.36885246],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +5a54c5de-9afe-4ea1-af36-2bca268deed2,Standard,00d03670-7833-47ee-ad52-04d18d1c64fd,"{""type"":""LineString"",""coordinates"":[[0.10734463,0.1557377],[0.14124294,0.1557377]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[7.4116482,51.4843281],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +d33bcbd4-0616-44f2-bf6f-9650acdd4193,Standard,f0f8f187-5dbf-46ab-8a43-d6169ab5042d,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.64971751,0.14754098],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +96ce5cd6-78b0-41d6-878d-4c6e59f27ffe,Standard,4dd439ed-7cc3-45b4-a2ca-ae615b97a23c,"{""type"":""LineString"",""coordinates"":[[0.14124294,0.1147541],[0.17514124,0.1147541]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[7.4116482,51.4843281],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +5eb4b7b9-ca34-49ec-a7ba-39e54df125c5,Standard,c81d6099-66b2-45d8-b8a4-c19ceb862f6e,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.84180791,0.44262295],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +7016009b-c704-4bdc-a331-19bc6ac99ae2,Standard,0ebf0088-f596-4cd1-9ae0-5da02dc40335,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.74576271,0.67213115],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +ce92f503-5384-4c3b-b86e-4776d7b99159,Standard,d5b861a6-2a5b-4dec-a66e-adbfc6d62873,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.67231638,0.14754098],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +35e6b00e-3441-4c99-a159-ab750d201ec8,Standard,de756ddb-793d-4b2d-959c-59d938a8f61f,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.75141243,0.25409836],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +7e19bbb7-52c2-4f80-97c2-d5bea34b15d5,Standard,867c4b4d-0f38-4f28-82ce-135f2cc63808,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.81355932,0.96721311],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +86a5a43b-025c-4bb5-b9c3-bf88e610617c,Standard,0170837a-1876-45f9-a613-666f9991964d,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.93785311,0.77868852],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +cd072bd5-77ed-4708-8b42-41123054a4a0,Standard,6a4547a8-630b-46e4-8144-9cd649e67c07,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.81920904,0.04918033],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +6717f8a4-7670-42cd-bc5e-cdc86cba04ca,Standard,e80aa2db-f32c-410d-96a1-a32e03222568,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.7740113,0.25409836],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +3179b868-7036-4f0e-abe8-8c97a7ec9e27,Standard,9502fd3e-c00f-48fa-8b56-c72d21f80f3c,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.7740113,0.14754098],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +95d6c85f-bb3b-4bac-84fc-1a821ac0256f,Standard,ff947647-b551-41ae-bcfd-6af228250c96,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.89830508,0.36885246],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +a6267f4c-d751-4f99-ade6-237d737fb745,Standard,86af5351-87ef-49c6-bd17-673dceecee5b,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.6779661,0.77868852],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +5cb93639-bc3a-4e87-bd02-1d8e16680219,Standard,e05c68b1-11cd-43fd-a4b2-31e4db380c78,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.25423729,0.1557377],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +b25beaf6-0637-43a3-b226-ed4c032009b4,Standard,285a4caa-2da8-4bd2-8a60-7d04f168f378,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.95480226,0.14754098],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +682dc5b8-6d22-4127-a456-d750f8a1c10d,Standard,bbd210a5-eb85-4616-bdd0-72bbd3ed7ef9,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.87570621,0.14754098],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +af28cad4-4552-4974-97f8-31396b30409e,Standard,85ea3976-1779-4d46-bd6f-dfd36427ebdf,"{""type"":""LineString"",""coordinates"":[[0.20338983,0.14754098],[0.23728814,0.14754098]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[7.4116482,51.4843281],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +ede4610a-e3c4-4bdd-bad4-b1fe0b84b847,Standard,49e14db3-a4bc-464a-b606-653ac8a604dd,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.82485876,0.77868852],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +b46007d2-6836-4a68-a3d7-9c1711248f90,Standard,636dec7c-4242-46e8-b7ae-db7e5a28c39c,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.75706215,0.77868852],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +bb0d1bf5-f2bb-41f7-b7b4-7e5d83219315,Standard,7546df1d-8a62-4650-bf2e-d1e441b38d70,"{""type"":""LineString"",""coordinates"":[[0.00564972,0.0],[0.03954802,0.0]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[7.4116482,51.4843281],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +69e69cb7-363b-4bb7-b77b-60b08a58f7fe,Standard,155bb2dc-0121-413e-ab42-67c2ed5ce6ea,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.93785311,0.52459016],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +bda2cf93-a2a9-4620-b67b-4280991653b3,Standard,09ac8949-2b79-41d7-b56f-a58f20036df2,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.75706215,0.89344262],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +a506609d-8884-4945-80c8-cae5b027fe1b,Standard,41c0087f-ce27-4da3-97d2-92d711b639b4,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.7740113,0.36885246],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +f17d8fce-ffcf-4214-af18-af2bb64985b0,Standard,39112046-8953-4e73-a5d9-6a8183a77436,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.09039548,0.1557377],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +7d4efdca-c7e6-476d-9f28-56aa019c054b,Standard,2f64bf67-cee9-44bb-8c13-ff96878932af,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.74011299,0.36885246],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +0a69cd3e-8a0d-40f9-b117-fd62a1e6bf7c,Standard,9d10a92f-576d-4777-99ff-59d145924fea,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.8079096,0.36885246],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +4e57b19d-d38c-449f-aac7-2f1c55507d88,Standard,b46d4395-6724-4830-ba55-357e81fc2814,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.14689266,0.57377049],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +6e2eb243-df51-4785-ae4f-478b0b6cd541,Standard,847fd5fc-b515-4a9d-8a6f-66df1e71ded2,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.79661017,0.36885246],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +ea7ae0ca-7ddb-4d6d-bf0a-4285fe70aee4,Standard,fd3b7bb8-3976-4441-9211-745243afd80f,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.61016949,0.67213115],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +94f85ca1-6313-4083-9f67-4f352b5fee15,Standard,4a6f6058-e654-464d-9367-2dca7185c6d7,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.09039548,0.06557377],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +d2a008e3-e3b2-485f-8ea0-2878fe6729f1,Standard,922a6375-b97c-412e-a6c9-b0ea55a23f76,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.76271186,0.14754098],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +22a77b21-4c00-4c39-916e-0d442518c9aa,Standard,3dec12fd-3dc6-481d-be05-8df9df7f0c5d,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.81355932,0.67213115],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +dc7ac151-f28c-4709-b760-01f0bfea1422,Standard,5e213f42-d93e-45c5-a295-adbe09105746,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.79096045,0.96721311],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +b7bdbce0-b7f0-46b7-95b7-24ca8fea2550,Standard,b73208dd-f4a8-4e90-bf2d-7ea67a89525a,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.77966102,0.89344262],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +8a1d7137-26e1-478e-a16c-2b4df1c762c1,Standard,f5ae3279-fe21-4bb7-849a-eaacb0546b0e,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.76836158,0.96721311],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +9351e508-9479-428c-bf86-67de77dc2b37,Standard,c8b1fd67-2f03-4153-8ed3-284e7a721ec5,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.92090395,0.25409836],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +2ffc1daf-fd76-4180-8274-6c57ae461e14,Standard,b9a28095-68f7-44c1-9ccc-6efc5ea84c59,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.31073446,0.06557377],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +e30fc0e0-dddb-45f5-8f35-82e943889a1c,Standard,b5548457-5923-4d52-b3c9-fdb75a1df98e,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.92655367,0.57377049],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +5145b6ec-0d37-480d-a7de-9b169d5ab62d,Standard,904c7476-5f16-4ec2-9138-7d5e32d38a3b,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.71186441,0.96721311],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +5dc5e9c0-f62a-40f0-a52e-8dfe9d145291,Standard,d7023c15-adb7-4d56-9f86-b182611a47ef,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.9039548,0.57377049],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +b7fb841b-586d-4500-a7c5-f20d40b20b61,Standard,2a816043-d1d2-44a6-8a9b-f61a4933997b,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.25423729,0.57377049],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +ea121065-66b3-4d29-ad6c-f4f3b34552a0,Standard,bdf97a4d-622c-4251-8183-8b1a696f376e,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.82485876,0.67213115],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +8cd97a28-625a-4d1b-8f3d-214986ed1ae3,Standard,7cff7ac7-2d18-4c4c-8e1b-893bb050c1ed,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.63276836,0.67213115],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +fe6926e8-d1bc-491c-8651-2eb0d9751ffa,Standard,8f422111-67d7-42f0-9f80-fbd0ec64c4fc,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.94350282,0.25409836],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +85ed704e-123f-410d-b2f7-8201f93870ea,Standard,3f63be7c-7f1a-4e7e-87ee-90ada222f64a,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.96610169,0.04918033],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +9f1cfaf1-4a07-451e-a1d4-2113fe65e8b2,Standard,f1cef042-1fc4-4bd8-b17f-dfbded4f2aaa,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.89265537,0.77868852],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +eed131cc-2b83-48b9-a185-4155c09ea4e1,Standard,5862f526-783a-4218-a463-3cbf5de8dade,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.72316384,0.77868852],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +ea770fbd-21e1-4e8e-a06b-52e94884d41f,Standard,14ae9865-cb9b-4518-9f2a-c0fda3455a42,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.68361582,0.36885246],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +331a5334-f99e-486b-a8f2-11891bd1dcef,Standard,ed4697fd-016c-40c2-a66b-e793878dadea,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.25423729,0.75409836],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +fed5e0ee-a4ad-488a-beb2-b2a70465eb56,Standard,d29f66a1-dee9-4e3e-9f41-c4bc8d375bbe,"{""type"":""LineString"",""coordinates"":[[0.03389831,0.78688525],[0.06779661,0.78688525]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[7.4116482,51.4843281],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +e0e8f17d-95ad-4f26-afaf-e6cff0b2c1c0,Standard,0b2a3b46-5e43-4879-973e-d8fb96429d8a,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.94915254,0.67213115],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +4a68e00f-3517-47be-85a3-7250bdc7d17a,Standard,22e58399-428f-4633-9ee4-e5fa0db68d6d,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.96045198,0.67213115],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +e9774353-a9b8-4e3d-a17a-0748c2c26e92,Standard,00bbc353-d47e-4865-a696-fe5d29b9e6a2,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.76836158,0.89344262],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +f3fec03e-9f9f-4446-8be2-83a9b518ae3b,Standard,52e15712-2572-442a-b22c-add48af95115,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.76271186,0.25409836],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +ed80eeb6-2d18-4d23-a1ae-7a1bc43a8599,Standard,f29859be-c6e7-4cf9-84d7-239eb98a9e65,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.83050847,0.14754098],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +408bf65e-27a9-4053-a8be-563707915f99,Standard,da79c960-d35a-4193-9b06-2d4d57051706,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.8079096,0.04918033],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +166a98e8-88a8-4507-a473-5c27d334477d,Standard,5981fe65-3c92-4a78-af92-1461904046d0,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.95480226,0.25409836],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +50d3de73-c426-423c-84ef-1504296396bd,Standard,582ed42c-fd18-49ae-bdf5-6aa59353c7e3,"{""type"":""LineString"",""coordinates"":[[0.07909605,0.07377049],[0.11299435,0.07377049]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[7.4116482,51.4843281],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +7258b56d-8372-42f5-b75f-863b3f81e25a,Standard,ca438ab9-3abc-4416-91d1-df01d1c5fa5a,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.65536723,0.77868852],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +700827d6-217d-44a4-a931-eec6420f85a7,Standard,ead38a50-b8f7-4bbb-b65d-f54350825e8e,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.96045198,0.57377049],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +10f32f05-63d3-4cb8-bd31-1c00f4c69eea,Standard,ca3391eb-ca94-4945-ac72-e116f396f82c,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.72881356,0.44262295],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +645190a6-cd64-4488-abb5-c6390445cbef,Standard,f1e55c8b-357f-45a7-9d57-e299f9b207f3,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.79096045,0.89344262],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +ea154576-db6d-44de-b853-685c2049936e,Standard,36cda100-86ae-4a20-ac71-20af603ac0cf,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.70621469,0.36885246],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +30526653-5558-4ad9-b2d4-826aca8af99d,Standard,0f3ba59d-a9ce-4669-aa12-bebec42238b7,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.77966102,0.67213115],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +f56308ac-a9a1-4d69-a5e2-70ba302520de,Standard,4303784e-7193-454a-9be4-3591400b4eeb,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.93220339,0.36885246],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +dbe14dc1-88ac-4a06-8159-8ef2928e1f84,Standard,154e9a99-467b-4f65-9928-8ebb14149baa,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.61016949,0.89344262],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +875f82ba-ccb5-4514-8046-658e6629091f,Standard,c6c177b0-5004-4db0-8cde-6293330a4757,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.68926554,0.67213115],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +d684e588-01fe-4b87-adea-a193f9584846,Standard,c5457e35-ad81-4427-9d3a-99e4c44ccae8,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.78531073,0.25409836],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +e814d3d2-57e4-48f3-86f2-17fddf0c091d,Standard,c1c3b5c2-c79e-4368-a8ae-28fd0f4e357a,"{""type"":""LineString"",""coordinates"":[[0.00564972,0.07377049],[0.03954802,0.07377049]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[7.4116482,51.4843281],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +ec4d8aea-3ea4-4365-8703-2628cfd42fa6,Standard,b425b28e-48a8-4ec4-a15a-387fcfb79895,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.7740113,0.44262295],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +04318b5b-af7a-4883-a671-bf72584d647c,Standard,3e4cce4a-6e85-4ec2-b3ea-08673a0ada15,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.71751412,0.44262295],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +50374589-78cb-4189-9eb2-a8ec907ca696,Standard,bd292f64-65e8-42ec-9b78-b9b9f013750e,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.73446328,0.77868852],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +77604c41-ad4e-4786-8ba5-a0da0af7241a,Standard,012c9eee-86c2-494c-adcc-bbfc481e4a46,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.82485876,0.96721311],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +f6580db8-09e2-48fa-b605-fe25866616b1,Standard,c72a08bc-4685-49b1-b8ef-803aebc8c388,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.65536723,0.67213115],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +1dab7f15-3824-44ca-9b64-2364d53192ab,Standard,462ca5a4-7ac1-4dbe-a1cf-0bb6b9b9b717,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.78531073,0.14754098],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +5a3624d9-a81a-4d94-80c8-f7594aad0ff6,Standard,cbcfc3b6-ac90-4215-975c-a033f5cf9912,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.14689266,0.66393443],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +1c859190-f5ef-407e-b792-eabaa2472408,Standard,9ce9d92c-5583-4b16-bec6-9f67834663cb,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.81920904,0.25409836],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +7c28ea5e-31b1-423f-a591-335f20836b1d,Standard,33f346bd-7dc5-4140-8ed0-7d7db4cc0f6f,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.71751412,0.14754098],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +80ae1356-eca3-4294-817c-5a738239d308,Standard,4f28e734-5148-4caf-ac64-270231740cbf,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.92655367,0.89344262],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +f1771535-fd74-46c5-a7f2-535f2ab593ae,Standard,daed3552-e382-4153-95be-97f17e2c53e5,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.67231638,0.25409836],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +dc4124c6-ee52-40d9-81d6-c5832a5c1fba,Standard,f26b5511-3c50-42d5-97c2-be408330eb84,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.84745763,0.77868852],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +2b0f09af-6760-4fdc-8661-6688c100191f,Standard,2645e336-b0df-4d1e-a0ea-375444488f06,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.8079096,0.25409836],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +13804a71-8b05-4b92-962c-b229cc9540bf,Standard,787237ad-b3a8-4f2c-ab70-31c5113d82d7,"{""type"":""LineString"",""coordinates"":[[0.00564972,0.14754098],[0.03954802,0.14754098]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[7.4116482,51.4843281],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +66600910-c787-475c-9892-98098f6afdac,Standard,196fe620-d4a7-45f9-93ad-0579e2bcbb9a,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.96610169,0.25409836],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +10215742-8e24-46f8-993c-cd9a6220e733,Standard,2c5d4eda-6b33-4ad5-a135-7037baa7d6eb,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.20338983,0.57377049],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +cc1b56ed-aabe-4d4d-8450-44e4412cda84,Standard,1f040625-ad1d-409f-bd7e-944c4d805e46,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.72316384,0.89344262],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +4eff33f2-6d61-4d4e-a086-5d7ef49ce257,Standard,4632291f-80d7-4e4a-9dc9-5c0fd0c56312,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.85875706,0.67213115],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +36508d00-e1b3-4df2-a168-e83c84196b35,Standard,5071dd8c-bbc1-4c8d-a180-4492f80e183d,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.9039548,0.77868852],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +59de95df-5cab-47b5-bfc2-223043a24e97,Standard,92cb5065-2e57-4099-8e29-75cbc0c80370,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.6779661,0.89344262],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +37b0bed2-ead9-4541-bce0-3a8df610b7f8,Standard,eb125953-31d3-4207-adf7-aba3a3790d6f,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.84180791,0.14754098],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +e49578f8-f571-481a-b229-1bdb3d6cbf18,Standard,177a20fe-83b1-46df-94a3-4faa54348d10,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.72881356,0.25409836],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +c8f7abaa-75e8-4899-8af7-fbd1ac8702d3,Standard,0db6e581-37e9-4254-aed8-d5cdf66819f9,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.83615819,0.89344262],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +3f9c9aa0-0dbc-48d3-9cd3-b38b429227c0,Standard,c317a6cd-428b-4c36-8233-91d0c4e2717a,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.67231638,0.36885246],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +de8ce40b-ba0d-4def-810c-bf2f5dfd2cec,Standard,4258f215-5b22-446f-a260-e8cdaa7c95d1,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.85310734,0.14754098],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +022c03de-6b04-4fa8-b0bd-4a78f92a65aa,Standard,e3a40690-d085-4796-9fcb-48d776e58594,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.89830508,0.04918033],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +b5045ec8-3bea-4959-be7c-2f96bbf89894,Standard,2287c2a8-c2d0-4c63-80b5-6b66a1288df8,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.62146893,0.89344262],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +08d4e2ec-8532-4327-9d9d-aa51393d53e8,Standard,31a2b9bf-e785-4475-aa44-1c34646e8c79,"{""type"":""LineString"",""coordinates"":[[0.03389831,0.27868852],[0.06779661,0.27868852]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[7.4116482,51.4843281],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +6d79e6bf-0fd6-47cf-84e1-af8c355a09c8,Standard,773aebe4-fc03-46be-8209-0213e2760a8e,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.70056497,0.67213115],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +416dd5b1-8b68-435b-88da-8ff638754355,Standard,36dccefc-f04c-493f-bb88-11343583bf9f,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.25423729,0.06557377],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +512bdb98-4b93-4691-b710-021fb746526a,Standard,df8df8d2-3494-4da9-8d1b-f913d15f520f,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.81920904,0.14754098],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +ba6759b8-89a7-4b38-b5d6-eb17db1e212b,Standard,b179c38b-5af0-4304-84b1-1dc03314fd80,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.66666667,0.77868852],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +c3c05cb5-3e3d-45fe-b52d-879716aac345,Standard,369cffa5-bcee-4489-8193-1d9b10230eca,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.92655367,0.77868852],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +7855bf17-05c0-4ed4-b1c0-b3dcd6fd24df,Standard,bea7ca63-3ae4-4280-8127-fe2c7fd5ea2d,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.88135593,0.57377049],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +f5cbde9f-522f-4b81-9093-d648274afcee,Standard,bd288184-99d8-4233-bb3d-484f3922200a,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.6779661,0.67213115],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +91942a3f-4bd9-472c-9691-426a6cf5314d,Standard,576840db-7d3c-417b-b587-28b222e740e1,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.75706215,0.57377049],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +4a71a58f-2e89-4a01-a76d-41c57d65fd5a,Standard,b32c5f5e-b6b8-41ed-a192-078e1aed05ac,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.83050847,0.25409836],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +ffd94a18-e4f0-4088-893a-3d9dae11ddf5,Standard,d69efff2-ba8b-4aa6-a4a1-27267964147a,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.20338983,0.06557377],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +3dc0bb9a-0ef9-446e-b039-b4522a42e3d6,Standard,6570535c-0d2e-4846-9951-21559902f67a,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.8700565,0.67213115],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +1f106b59-4fce-4be2-a05c-a6d96f188fde,Standard,f6eff0d1-af6b-46ce-b430-4d30976ec08f,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.83615819,0.67213115],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +b0d59363-291f-4fb2-a555-0f24126e45f4,Standard,49dcfc70-76ca-4f6f-83f7-0bc2aab1ae34,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.89265537,0.57377049],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +8119e1cc-7122-4551-8cac-6724df1d786c,Standard,de5ee252-ebb6-42b0-875c-77ae557ffbf6,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.90960452,0.04918033],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +5be3829e-2848-4b72-9cb6-61aefec4e172,Standard,970cf93c-36c5-4938-a7e4-3f184a7035f0,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.70056497,0.77868852],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +011c1cb7-a03a-448d-8ea0-40ebe2336949,Standard,732f83b0-b9c5-4b8e-86fe-753c26f40e78,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.75141243,0.14754098],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +abafb627-a899-43cc-bc4e-e6a574da9f1a,Standard,ae234bc5-b751-41f2-95ee-b78de124c583,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.8079096,0.14754098],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +eb238e09-ce22-4dcc-86ed-20a584fb6b32,Standard,9aaf57c4-cc5c-4a01-8c2c-72bc7e231cc9,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.81355932,0.77868852],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +4d9fc234-c097-4b0c-9f9d-0453bbc9a713,Standard,9b889b73-c108-4b38-b6eb-3377841e0c83,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.85875706,0.57377049],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +d90d97cd-e0a0-4433-90fc-3610bc3d35b3,Standard,f5839ade-5968-4879-a824-90b5fb3552cd,"{""type"":""LineString"",""coordinates"":[[0.00564972,0.2295082],[0.03954802,0.2295082]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[7.4116482,51.4843281],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +0348790a-ff1f-4f55-8b43-50aea5e5cb18,Standard,bf7e7268-2fb6-4948-ace6-9037ae148fa3,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.93220339,0.14754098],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +30e110e8-da4d-4970-bc25-3f9d7300b6ac,Standard,270c7266-45dc-4e45-829f-c04f6b631cad,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.81920904,0.36885246],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +908b7283-2584-4cae-9017-26b8ea0fb79c,Standard,3d81adf5-73d1-4708-b03b-3afc7db017f4,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.86440678,0.25409836],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +b9dcea5f-f318-419f-a714-fd51caa60fe0,Standard,5d1cce49-e000-4a33-a0ea-f3685f8cc5a3,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.66101695,0.25409836],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +03e41436-72f8-4b2e-9340-52ba4d8e094b,Standard,f8dd541b-4a4d-417e-89ff-a9650ee3aac2,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.81355932,0.57377049],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +a4ee0ad6-0813-4537-b795-edf17d4af91a,Standard,fc7821d2-ac64-483e-b520-38d9971f4db0,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.86440678,0.36885246],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +d83e93ac-d76b-48ce-b1c2-511a116595ab,Standard,366a70fb-8d7f-4201-9eca-0fcbc839239d,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.88700565,0.25409836],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +31c8d1f9-a00e-4392-ae33-da09323f0b4c,Standard,67af7db0-0fd8-4657-bb4f-43a2141b9f73,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.62711864,0.14754098],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +97e202d5-561b-418b-8b53-fa080e7cb931,Standard,21359dd1-7a23-4932-b656-c196fbffe751,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.76836158,0.77868852],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +9c1050be-a40a-42da-9f0b-b91aa206b0ce,Standard,06b7f21a-d6d7-4ec0-94c6-141845f14986,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.78531073,0.45901639],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +dc25d9fe-d077-46de-b78a-ea5f01fa44bb,Standard,94713e6c-c47e-422c-8ab3-2a2903b7dcd2,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.66101695,0.36885246],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +0103c715-ad75-42c6-a64f-f17fe46280e2,Standard,1bf26b4d-03cc-4490-8c33-d3db8597d807,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.69491525,0.14754098],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +b392f548-3eb5-4d17-a320-fda6305fff89,Standard,67c1746c-3af8-403f-983e-1c7c047383df,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.85875706,0.89344262],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +189e6f29-116f-4087-8cdc-9303cbb41e89,Standard,f6272655-bd7e-4d2d-8bdd-285f3ac0d3e8,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.92090395,0.14754098],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +05a66108-a122-4dbf-bbd9-c57a3904df7e,Standard,e3c3c6a3-c383-4dbb-9b3f-a14125615386,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.8700565,0.89344262],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +78ca2d9e-d805-4b55-b2eb-25634035b606,Standard,7d45f0ab-1e6b-452f-b665-c4846cf046f5,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.70056497,0.89344262],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +65acfa71-ccb9-4c73-8869-d24e740f3652,Standard,3ec2f2a0-36a3-4d11-88ee-cc4df001e876,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.79096045,0.67213115],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +a7bdd616-a136-4976-b595-1524c333aac5,Standard,f2d03b34-9595-4819-a00b-ff9ddd92eb07,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.77966102,0.57377049],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +86237e52-5633-4047-9370-69d30e223fec,Standard,dfae9806-9b44-4995-ba27-d66d8e4a43e0,"{""type"":""LineString"",""coordinates"":[[0.0,0.06557377],[0.03389831,0.06557377]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[7.4116482,51.4843281],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +c28b1895-0c06-4dcf-b37c-68793612f035,Standard,2d4beb13-8e6c-46de-9b1c-409c7ca7573a,"{""type"":""LineString"",""coordinates"":[[0.96610169,0.39344262],[1,0.39344262]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[7.4116482,51.4843281],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +fc20d94d-2857-4106-a9e7-3f1aac1173f6,Standard,625bdd2c-a75f-46ef-850c-ca4704d56e55,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.70621469,0.25409836],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +52d41e1a-4ad9-4f82-ae81-ce9a6a4d0a1b,Standard,e018b95e-fca5-40f7-8550-b05a619169dc,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.90960452,0.14754098],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +d135cd38-118a-4c91-8435-6e72518d444a,Standard,9b509c7d-4647-40fd-b03e-7ab919215cc6,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.71751412,0.25409836],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +25107814-9a22-49f5-ba01-00c7c3ad123a,Standard,6232b760-b2e0-485e-9c61-f9721a366a81,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.79661017,0.14754098],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +c945778f-a8e2-491a-acaf-7b594764f775,Standard,98072ded-726f-4f0b-8bbc-4fb6d5086a7b,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.88700565,0.04918033],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +098f365b-4ec3-472c-b137-2525bfa4a7af,Standard,b7a5be0d-2662-41b2-99c6-3b8121a75e9e,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.62146893,0.67213115],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +32c5b241-ac2b-42b9-89e8-fd747a64ecd3,Standard,f717b05b-f4e7-43d9-af9e-638e2badee5a,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.85310734,0.36885246],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +8910eb73-d32f-471f-a7a5-92570070be29,Standard,6dcdc87b-a719-416f-9da1-21a701048f3a,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.88700565,0.14754098],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +1502e4ed-7627-4a7f-b251-02da6c951643,Standard,69aeb4a6-1c4b-4953-bad9-54fc0c7e495b,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.94350282,0.14754098],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +26c688ba-b07c-4b84-8bcc-f5ede0b8f957,Standard,3802b603-d08d-4031-b7d7-e29734bcc122,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.61581921,0.36885246],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +fd99eb90-1a76-4b0b-a7b4-294f4bf6a4f7,Standard,519ace7e-fd3f-4797-b14b-36c1694b00cd,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.8079096,0.44262295],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +30a60292-f650-47fb-8281-cffda93a6529,Standard,6bc0dda8-25f4-48a6-9645-21e1eed5c6ff,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.88135593,0.67213115],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +68d4c4d0-246e-4cfb-95f7-f3b2aef8788f,Standard,3da4fd3d-ac5e-409d-91fa-36516673cf57,"{""type"":""LineString"",""coordinates"":[[0.96045198,0.91803279],[0.99435028,0.91803279]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[7.4116482,51.4843281],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +0286cd61-b997-4cd9-a139-88eeab79339b,Standard,55b3d03f-2204-4ab3-84cc-a28476868c9d,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.76271186,0.04918033],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +cc657d07-3495-45b8-a90b-76769e14f2d8,Standard,8a50fb37-81cf-47c9-8850-a12b4391e2e7,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.09039548,0.24590164],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +2e738086-0b9c-4e39-b00d-99d27420cb1e,Standard,e0a6c8e9-7d1f-4965-98b9-e543bacb6b83,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.66101695,0.14754098],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +0cefddfa-26b5-4dc2-ad52-87fa38c40e09,Standard,77fc154f-f41c-4e75-bbb1-b7fca68b2f4e,"{""type"":""LineString"",""coordinates"":[[0.20338983,0.2295082],[0.23728814,0.2295082]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[7.4116482,51.4843281],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +0fafac48-b639-41d0-8c67-098ebb0b8abd,Standard,7125de08-1d28-409a-8b23-023a0294def5,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.94350282,0.0],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +6aa9dcf5-cfca-47f7-ae51-1c251a7a6a4e,Standard,a5c73608-5a85-495d-bea0-df77b6ce66ea,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.8700565,0.77868852],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +56191c65-c5b3-474c-bed2-291c8104fdf7,Standard,443c1513-fdeb-4e29-ae89-5ea47c0b1d3f,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.63841808,0.14754098],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +cb82c2a6-ea8d-4f49-a6aa-9b615295945d,Standard,15345698-c319-461f-b969-37d50fb84220,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.6440678,0.67213115],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +1a9191b1-c559-404c-a61e-1da846c5efde,Standard,0c266541-6235-4d01-8258-e763c58af6c7,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.83050847,0.44262295],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +b4cc5801-2bf1-4448-be4d-05778e033eaa,Standard,95ced3b5-69fd-4171-9c34-f18802064e22,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.83050847,0.04918033],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +8e1c4db3-dfd2-4522-8478-7b760ddeb35d,Standard,b8fa1f73-223c-4b08-a140-44f12484cce3,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.75141243,0.04918033],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +3767a331-5208-4bc1-a8cf-cb4b697fdf0f,Standard,32bd37df-255b-4eb2-9d16-5b711132eee6,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.31073446,0.1557377],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +63d56d37-d81e-4476-8916-83ae7ad4c7f2,Standard,4db634e5-3eb8-4c17-bc44-eb224667580c,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.89830508,0.25409836],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +c94b74dd-5f70-4203-a9ee-76452e5d8c28,Standard,32507a10-1eed-4a3f-820c-bc187f3b052e,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.72316384,0.96721311],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +7abdcec1-e147-4877-be06-6c56fd043509,Standard,1cb45ba0-d2c2-45a6-9bb2-5f374e30a6e9,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.93220339,0.04918033],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +96fb5883-b7dd-4646-8bf9-e6e6d730f5bb,Standard,1ee9de9a-0095-4b58-beeb-e56fb908844a,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.66666667,0.89344262],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +3080afb0-0cdc-4641-ae10-71c05a48fa0f,Standard,92301422-94ae-48ab-89c7-a69eea9450b2,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.31073446,0.24590164],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +bcc42757-dac4-41da-86e9-31202e91f56f,Standard,b6b1b9fc-e7d8-492d-8601-84c1e756bd83,"{""type"":""LineString"",""coordinates"":[[0.14124294,0.18852459],[0.17514124,0.18852459]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[7.4116482,51.4843281],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +c19514ea-fa93-4979-bf9d-23fafe71eac2,Standard,0228ffcd-f6bc-47c8-b26c-fcc0abacd963,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.91525424,0.77868852],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +11fb04eb-12dd-4f9f-b781-fa27757154ab,Standard,401f37f8-6f2c-4564-bc78-6736cb9cbf8d,"{""type"":""LineString"",""coordinates"":[[0.21468927,0.1557377],[0.24858757,0.1557377]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[7.4116482,51.4843281],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +fd046e8b-2547-4a89-a298-9539b65a2f27,Standard,0d94a5ea-3a13-48ba-a27f-b2903841c334,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.74576271,0.89344262],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +0f6ac439-e4c6-4df4-908f-4a8b02f713c8,Standard,00d4a837-f09c-41df-bed1-dfdb78387116,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.91525424,0.57377049],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +5ddaac19-1138-4282-9ecf-3e2e8c89839c,Standard,27d9e46d-5a9a-44f9-b17e-cd6cffb5e769,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.81920904,0.44262295],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +1dc63262-3e84-4ff5-a65c-2373cbd4b222,Standard,75f2dfb9-75a0-496d-9c44-79e7df54c1df,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.87570621,0.04918033],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +6e15708d-00b1-46c0-9e80-52ddcc89bc61,Standard,80d8252b-045f-471a-9638-416ed3f86120,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.79661017,0.44262295],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +6e31f8dd-5039-4c80-ba78-868496f99427,Standard,8f80e777-ccbd-4630-b10e-238e824113fd,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.75706215,0.96721311],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +dc2e34c5-31df-49b4-b6f3-ea3fc19ab0d7,Standard,5af425fa-6ed7-43e1-8898-7af1315128c5,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.74011299,0.14754098],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +4b969595-3d78-432a-b244-9a6f984a3bd5,Standard,bd8c7d3d-e830-4a46-bf78-0086ce24909f,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.88135593,0.89344262],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +8566c6b6-ae20-42aa-b709-dfbbbf563208,Standard,86dfce49-05b2-4208-a6ae-877c3e98e6be,"{""type"":""LineString"",""coordinates"":[[0.14124294,0.07377049],[0.17514124,0.07377049]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[7.4116482,51.4843281],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +f39077f0-ac8c-4397-823d-37701d7982e8,Standard,898d8295-bf35-4079-9374-99b059c2c956,"{""type"":""LineString"",""coordinates"":[[0.20338983,0.0],[0.23728814,0.0]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[7.4116482,51.4843281],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +a53441bb-a915-45e2-a9af-73517ddaf34a,Standard,8b3e3802-5213-46d0-a498-15eb6e5852b5,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.82485876,0.57377049],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +a17793fb-5615-4b2f-94f3-74d11ec8933c,Standard,97ae0aa4-bf05-4b88-8020-83cbda415d22,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.70621469,0.14754098],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +9031d2ef-01e7-4e1c-a880-ea3ee9102493,Standard,4e188ac9-e507-46b1-b8e2-376cf7c6ceb1,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.09039548,0.66393443],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +96cdb8c3-a706-441d-834c-ed86988c29fc,Standard,04f29760-9e52-4943-8563-62e1fbd5ed52,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.90960452,0.36885246],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +eede57fa-6784-4894-8476-736f65984791,Standard,2c520ab6-507e-4dcf-ab05-8f238e9b9385,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.96045198,0.77868852],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +5ea15b76-2059-405d-a030-b8bf6b7d4f06,Standard,2fe5100e-d4e8-4bc4-9c7c-bcc0fc56f518,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.96610169,0.14754098],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +8bb36c81-659c-42b6-8772-dbf4cdd68baa,Standard,cdda8fa5-9a18-4f3e-951d-1ec0009191b4,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.93220339,0.25409836],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +cc25baf6-91ba-4c2f-a7f3-dff202d7cba5,Standard,1a1e63f7-6196-4856-9f4e-876a44bdf2f8,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.65536723,0.89344262],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +929a85d7-16c2-48a3-9b4c-0b856f935098,Standard,d2aff632-fc26-4595-931c-92e266247ac8,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.72881356,0.36885246],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +c38dd991-14c8-45fd-97f6-eb21df94630d,Standard,40b0f497-96a3-49d9-9503-8fa67a5b532a,"{""type"":""LineString"",""coordinates"":[[0.14124294,0.0],[0.17514124,0.0]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[7.4116482,51.4843281],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +85393fb1-b60f-48ab-b0d5-56002cc2ebe2,Standard,550ebca7-1455-44eb-9431-ffbf08e58bd4,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.14689266,0.06557377],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +41c1aa80-2d8b-4993-a943-eeb328d67532,Standard,450426ac-a560-4d17-b1fc-9e169530a655,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.73446328,0.96721311],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +0434dc12-6149-4832-a288-6620ee0389f2,Standard,3e21f3a1-2c9c-4138-bcc9-466b004609ed,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.14689266,0.24590164],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +cc135490-2330-43ff-8ac5-dff7ce96c433,Standard,32b3bb19-c52a-4a19-890a-94a8918d38a9,"{""type"":""LineString"",""coordinates"":[[0.00564972,0.18852459],[0.03954802,0.18852459]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[7.4116482,51.4843281],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +063dc228-df79-40c7-ba28-3508df3841b6,Standard,39dbc5ed-d874-48a8-9128-e970436a94b4,"{""type"":""LineString"",""coordinates"":[[0.14124294,0.04098361],[0.17514124,0.04098361]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[7.4116482,51.4843281],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +6a795129-21a1-4796-b945-4966ee0c9903,Standard,81cd3f38-867b-4a71-ba22-cb33834e0e58,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.25423729,0.66393443],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +b8a69ed7-b65a-40c9-84e6-37fb01f064fe,Standard,616da4e5-e837-44ec-bbbc-0cd12b5da8f7,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.72316384,0.67213115],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +1730aedc-aec2-4f82-bc90-2c821b470e0c,Standard,f1e88392-3b2a-4ce8-a31f-c963f08f8043,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.89265537,0.67213115],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +00e6a38a-f4f0-4cd8-a182-3c3c2337571e,Standard,9f7599de-c488-46c5-b053-1279a511f7b9,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.74576271,0.57377049],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +00783c26-0fc0-4b48-b470-dc44e8599a28,Standard,6c24b464-790a-4aae-bb11-766718f07cd5,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.82485876,0.89344262],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +54daf474-ca11-4e75-981a-c1844928d43f,Standard,c7e09266-c778-433b-b01a-5fb9e298ea8e,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.94350282,0.04918033],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +3ade7f68-6a98-469b-90ea-d6845ef884fb,Standard,3b879239-20c8-4adf-bd51-92924327ee71,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.80225989,0.89344262],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +f53a49a2-00a5-45cf-8734-476821a46456,Standard,2f921888-36d3-4c88-a8aa-1ecbdc62b9c4,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.73446328,0.89344262],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +1f187c3f-498b-4c02-89ed-e7b03ad410fd,Standard,fd4f6232-c28d-4fc3-81dd-03b84aad695e,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.77966102,1],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +4aaa58c6-e6b1-4cf2-81a6-aa6fa312bab1,Standard,4f78fe6d-3cb2-4d99-8c67-4f14cb626813,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.76271186,0.36885246],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +0bab2fbe-f6c5-4f9f-bc3c-683683374b11,Standard,17f7a477-d9c7-4f58-8ba0-1a2694dcc874,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.76271186,0.44262295],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +ceb5394a-78c5-4f94-a4dc-ad051fedfa17,Standard,032768b4-2426-4abf-806b-83813ac5137a,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.14689266,0.75409836],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +86550a99-c324-413d-aa27-2ebf243249e9,Standard,d5489e1b-0e7e-4ca9-a362-09c23576a622,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.84745763,0.89344262],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +dd5aefc9-bf4f-4647-8a7f-9a618b912074,Standard,535b3fa4-ed67-4ab1-9a68-e7db83e05967,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.09039548,0.75409836],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +aa57fd6a-7f6d-45df-aa28-1dc626abe782,Standard,d82fae59-844a-4c85-997e-326dd876137c,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.80225989,0.77868852],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +5b351429-1d9d-470f-b303-b2559b5882a4,Standard,9baae5ff-40e3-48cb-9ddf-de6d1c133e13,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.83615819,0.96721311],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +33b5bbcc-1274-4bf2-8b03-e46eba03f7d1,Standard,5dfd45b8-48e7-42fd-ac53-cc57455486b5,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.84180791,0.36885246],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +49bff912-4ea7-4274-bae4-95bc9c12219b,Standard,1dcddd06-f41a-405b-9686-7f7942852196,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.69491525,0.25409836],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +4a7746dc-01ce-4dd4-94b3-0778d9ded0b9,Standard,666757e2-292e-473c-ac9c-04c0786574bc,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.81355932,0.89344262],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +ecd0e92a-9446-48ab-b6e2-43942575db1b,Standard,55caf2ec-a21b-4afd-8830-1e4009cce396,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.66666667,0.67213115],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +e328034d-d8f4-42ec-874e-3cb06d91bb3e,Standard,9d02ea80-98d8-4cd0-a635-9104a14a56dd,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.84180791,0.25409836],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +a7344637-1266-45f3-af15-ca5dfe9d77c5,Standard,205fcee1-928c-4374-950c-34575f07fa49,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.63276836,0.89344262],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +e1b94071-73d2-4f2a-b5e6-3899a7689e54,Standard,d8c35123-b389-4199-84f9-d417d24bb78d,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.79661017,0.25409836],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +089192f0-e01c-4959-876f-b4f049da0941,Standard,50164699-2018-4b17-b3f1-74b082f27403,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.89830508,0.14754098],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +5f72658c-b370-4424-b2b1-61c5368a6b9a,Standard,011e3794-3341-4376-839c-3f5a452e15ab,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.68926554,0.77868852],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +dc6febac-9d01-4142-a73a-dba92b98395a,Standard,a4a44d93-48d6-4b87-8053-87fe0778e75c,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.73446328,0.67213115],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +ee1d5114-5f69-4ff9-91e9-273d8437e2ae,Standard,f66df6fa-3dfa-4515-85d7-54d0f429fde7,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.92655367,0.67213115],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +1306ee4a-e876-4ac6-b981-aab5e6e23406,Standard,535843a3-cf93-412f-b4d7-585337791ba8,"{""type"":""LineString"",""coordinates"":[[0.07909605,0.18852459],[0.11299435,0.18852459]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[7.4116482,51.4843281],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +b7477d53-b5db-41d6-9e70-3628e24d5a3d,Standard,033d0230-4aee-47cf-91f9-81f5f40e60b0,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.77966102,0.96721311],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +51422821-5966-4151-92c6-cc6150951f81,Standard,85ec9277-c5fd-4e5b-8a34-9627d9599ad7,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.76836158,0.67213115],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +6c94d627-6100-4aec-9a3e-6e04edf1d2fc,Standard,69efeb2d-9845-49ac-8500-5e017a7a64ef,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.94915254,0.77868852],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +9f2a5f75-9c3c-4f6f-9000-3f2b983afd72,Standard,3a2f199c-2966-4b9a-939b-3a6c9924341c,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.62711864,0.36885246],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +da7db7bf-0857-4f45-8abd-426f62aed003,Standard,b22c9299-5fb4-46a7-b566-fc17e0d51d60,"{""type"":""LineString"",""coordinates"":[[0.00564972,0.04098361],[0.03954802,0.04098361]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[7.4116482,51.4843281],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +f357848e-d0e0-44db-8228-b938eefe8d86,Standard,a12b9ded-0c19-48c2-ac19-7a3a9b7e26da,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.92090395,0.04918033],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +bb372eec-e66c-4eed-b87d-15370feab1be,Standard,ba0b3e4b-85e1-4b45-8863-fbfe11c9b69c,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.71186441,0.67213115],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +b8697183-05ca-4701-a2e3-d0d25be61acd,Standard,41414318-73e3-4bdc-8147-570a96b28d37,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.85875706,0.77868852],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +44cda5d8-348f-4204-99cb-0ec4baae9cff,Standard,6678c226-c5d2-4ce3-9728-dc1163be799f,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.85310734,0.25409836],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +69b740cc-a143-4e1b-bfa6-22f8baa163d1,Standard,b608d71e-3ede-4156-a015-3f6e1d22242a,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.80225989,0.57377049],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +b73cff24-aa97-493e-9da3-8aa3ad414215,Standard,99e26ef8-75e2-46f3-aafc-6287bf5e3905,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.87570621,0.36885246],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +a4b9788d-431a-414a-b3ac-809fca527237,Standard,b237dd88-bcba-4a7c-aee6-c0c3e151e14e,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.9039548,0.89344262],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +e815c65b-2b44-4afb-a73b-7da1a0df6a15,Standard,8f2ba96f-a47a-46d3-b5a1-d19de0a32419,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.79096045,0.77868852],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +09be2147-da4d-4f8c-ae3b-c241653d1fce,Standard,eb21d716-1b54-4dba-bdc2-d1f6752aef85,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.88700565,0.36885246],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +5b899ffc-48b1-4ffd-bb7c-dfe2d727bbb0,Standard,ee384ace-040e-4f21-8a8a-d702ab51af55,"{""type"":""LineString"",""coordinates"":[[0.20338983,0.07377049],[0.23728814,0.07377049]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[7.4116482,51.4843281],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +a9b3d323-e2bd-4d53-9de9-82ac9185cdfe,Standard,8254d91b-e5da-4402-bb8f-301eafa09d28,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.83615819,0.77868852],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +11f61a48-2d5c-4916-8180-def8544d16c6,Standard,c5f7ffbc-2e23-46d4-9e0c-356008e5ff56,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.74011299,0.44262295],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +fb4d855c-83a0-435d-a08a-15c8716f2e7c,Standard,ffcaf979-d707-4d25-8f46-f436f9792d7f,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.84745763,0.57377049],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +bdd060c8-0636-4042-bedf-0acbd1244bdf,Standard,890f2162-b4cb-49e7-a16f-4b552c5e245c,"{""type"":""LineString"",""coordinates"":[[0.20338983,0.1147541],[0.23728814,0.1147541]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[7.4116482,51.4843281],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}" +70e6914f-0cad-4319-9ae3-7cd5482152ea,Standard,e25387d0-ab9a-406d-bcb4-555414b88b1b,"{""type"":""LineString"",""coordinates"":[[12.8273,52.2895],[12.8273,52.2895]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.86440678,0.14754098],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" +83c21903-e94d-4b2a-a933-8cc984d28f24,Standard,ce71377d-63ea-462a-9290-67e51946a098,"{""type"":""LineString"",""coordinates"":[[7.4116482,51.4843281],[7.4116482,51.4843281]],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:4326""}}}","{""type"":""Point"",""coordinates"":[0.91525424,0.67213115],""crs"":{""type"":""name"",""properties"":{""name"":""EPSG:0""}}}" diff --git a/src/test/resources/edu/ie3/datamodel/io/source/csv/_joint_grid/pv_input.csv b/src/test/resources/edu/ie3/datamodel/io/source/csv/_joint_grid/pv_input.csv index a7c99726d..897fbf631 100644 --- a/src/test/resources/edu/ie3/datamodel/io/source/csv/_joint_grid/pv_input.csv +++ b/src/test/resources/edu/ie3/datamodel/io/source/csv/_joint_grid/pv_input.csv @@ -1,64 +1,64 @@ "uuid","albedo","azimuth","cos_phi_rated","eta_conv","elevation_angle","id","k_g","k_t","market_reaction","node","operates_from","operates_until","operator","q_characteristics","s_rated" -5b38af42-1ee4-4a41-b666-ea141187df37,0.20000000298023224,-11.463644027709961,0.8999999761581421,96.0,33.62879943847656,NS_NET146_F2_(3)_PV,0.8999999761581421,1.0,false,0170837a-1876-45f9-a613-666f9991964d,,,,cosPhiFixed:{(0.00,0.90)},10.0 -e447506e-3d43-4bce-8aab-a7ca8b7fbc45,0.20000000298023224,3.8914573192596436,0.8999999761581421,98.0,42.77021408081055,NS_NET146_F4_(9)_PV,0.8999999761581421,1.0,false,9b889b73-c108-4b38-b6eb-3377841e0c83,,,,cosPhiFixed:{(0.00,0.90)},10.0 -6cac0624-6336-4418-bcf0-990abcdb824b,0.20000000298023224,-8.097375869750977,0.8999999761581421,98.0,44.90728759765625,NS_NET146_F4_(16)_PV,0.8999999761581421,1.0,false,9f7599de-c488-46c5-b053-1279a511f7b9,,,,cosPhiFixed:{(0.00,0.90)},30.0 -3c98b5a6-1d44-449e-83e4-d610a4846d8f,0.20000000298023224,-12.883859634399414,0.800000011920929,95.0,38.764892578125,MS4_EEG_03,0.8999999761581421,1.0,false,85ea3976-1779-4d46-bd6f-dfd36427ebdf,,,,cosPhiFixed:{(0.00,0.80)},1000.0 -6291eea2-689c-48f3-b7a9-5054bf567cab,0.20000000298023224,5.255863666534424,0.8999999761581421,97.0,36.56882858276367,NS_NET146_F3_(32)_PV,0.8999999761581421,1.0,false,fd3b7bb8-3976-4441-9211-745243afd80f,,,,cosPhiFixed:{(0.00,0.90)},10.0 -4fc73066-d9a2-4175-84e5-f3692e050492,0.20000000298023224,9.423768997192383,0.8999999761581421,98.0,39.56998062133789,NS_NET146_F1_(35)_PV,0.8999999761581421,1.0,false,f5ae3279-fe21-4bb7-849a-eaacb0546b0e,,,,cosPhiFixed:{(0.00,0.90)},10.0 -cbcfa285-fe3a-4a98-bb4a-05d28d466c79,0.20000000298023224,1.1021884679794312,0.800000011920929,96.0,30.529081344604492,MS1_EEG_05,0.8999999761581421,1.0,false,c1c3b5c2-c79e-4368-a8ae-28fd0f4e357a,,,,cosPhiFixed:{(0.00,0.80)},1000.0 -3776dfa9-f161-419e-9014-9cfb5a379025,0.20000000298023224,20.107717514038086,0.8999999761581421,98.0,39.57343292236328,NS_NET146_F4_(17)_PV,0.8999999761581421,1.0,false,155bb2dc-0121-413e-ab42-67c2ed5ce6ea,,,,cosPhiFixed:{(0.00,0.90)},30.0 -bb929fcc-a67e-423c-9569-73364746383d,0.20000000298023224,6.103052139282227,0.8999999761581421,97.0,44.66648483276367,NS_NET146_F2_(21)_PV,0.8999999761581421,1.0,false,bd292f64-65e8-42ec-9b78-b9b9f013750e,,,,cosPhiFixed:{(0.00,0.90)},10.0 -a50f12e1-33ed-4992-8579-da1800d5eff7,0.20000000298023224,11.473278045654297,0.8999999761581421,98.0,34.85277557373047,NS_NET146_F1_(29)_PV,0.8999999761581421,1.0,false,867c4b4d-0f38-4f28-82ce-135f2cc63808,,,,cosPhiFixed:{(0.00,0.90)},10.0 -e04c6258-0ee5-4928-96c1-8e04acbbcc8f,0.20000000298023224,3.925752878189087,0.8999999761581421,97.0,32.65638732910156,NS_NET146_F3_(12)_PV,0.8999999761581421,1.0,false,f6eff0d1-af6b-46ce-b430-4d30976ec08f,,,,cosPhiFixed:{(0.00,0.90)},10.0 -61788990-7681-42c0-9d0c-cfd22d4d3a83,0.20000000298023224,-17.2542781829834,0.800000011920929,98.0,32.63483810424805,MS1_EEG_03,0.8999999761581421,1.0,false,787237ad-b3a8-4f2c-ab70-31c5113d82d7,,,,cosPhiFixed:{(0.00,0.80)},1000.0 -114efaa0-dd3f-47ce-bbbe-856cacb034d1,0.20000000298023224,11.962505340576172,0.8999999761581421,97.0,39.01054000854492,NS_NET146_F3_(18)_PV,0.8999999761581421,1.0,false,85ec9277-c5fd-4e5b-8a34-9627d9599ad7,,,,cosPhiFixed:{(0.00,0.90)},10.0 -53df57d0-c789-4393-b0a5-897a3bc821a2,0.20000000298023224,-1.3447864055633545,0.8999999761581421,95.0,37.434146881103516,NS_NET136_S1_5_PV,0.8999999761581421,1.0,false,926d6113-933f-49e3-9529-a3035acdc9b2,,,,cosPhiFixed:{(0.00,0.90)},30.0 -83a0dcd8-d6ad-49bf-8cbc-5a5774ed18ac,0.20000000298023224,9.723748207092285,0.8999999761581421,98.0,51.525978088378906,NS_NET146_F2_(27)_PV,0.8999999761581421,1.0,false,b179c38b-5af0-4304-84b1-1dc03314fd80,,,,cosPhiFixed:{(0.00,0.90)},30.0 -2560c371-f420-4c2a-b4e6-e04c11b64c03,0.20000000298023224,0.7802008390426636,0.8999999761581421,98.0,40.086585998535156,NS_NET116_S3_2_PV,0.8999999761581421,1.0,false,550ebca7-1455-44eb-9431-ffbf08e58bd4,,,,cosPhiFixed:{(0.00,0.90)},30.0 -241b5dad-aaac-4f7c-8152-a32839fcfa13,0.20000000298023224,-5.435481071472168,0.8999999761581421,98.0,36.50833511352539,NS_NET146_F1_(10)_PV,0.8999999761581421,1.0,false,6c24b464-790a-4aae-bb11-766718f07cd5,,,,cosPhiFixed:{(0.00,0.90)},10.0 -4fa4ce55-0944-463a-a91b-3a3806286e0b,0.20000000298023224,-11.769233703613281,0.800000011920929,98.0,27.860116958618164,MS1_EEG_01,0.8999999761581421,1.0,false,f5839ade-5968-4879-a824-90b5fb3552cd,,,,cosPhiFixed:{(0.00,0.80)},1000.0 -645b0617-e6ab-438b-a141-9c497d720e4b,0.20000000298023224,-5.639688968658447,0.800000011920929,97.0,34.71104049682617,MS4_EEG_05,0.8999999761581421,1.0,false,ee384ace-040e-4f21-8a8a-d702ab51af55,,,,cosPhiFixed:{(0.00,0.80)},1000.0 -5206abaa-3abc-4a15-a8f2-778139a3fc65,0.20000000298023224,4.901591777801514,0.8999999761581421,98.0,42.587581634521484,NS_NET146_F3_(7)_PV,0.8999999761581421,1.0,false,f1e88392-3b2a-4ce8-a31f-c963f08f8043,,,,cosPhiFixed:{(0.00,0.90)},30.0 -4ff2235f-24d6-440c-bf09-76ef3eaa340d,0.20000000298023224,-13.216256141662598,0.800000011920929,98.0,35.950138092041016,MS3_EEG_01,0.8999999761581421,1.0,false,bb59ca46-1f2e-41c9-9723-90b306f043cd,,,,cosPhiFixed:{(0.00,0.80)},1000.0 -d3bacaf6-8558-4df5-8481-8d684ef3e14d,0.20000000298023224,6.262790203094482,0.8999999761581421,97.0,23.13505744934082,NS_NET146_F1_(26)_PV,0.8999999761581421,1.0,false,154e9a99-467b-4f65-9928-8ebb14149baa,,,,cosPhiFixed:{(0.00,0.90)},10.0 -fad9b8c1-9ded-4856-ab91-f41217259363,0.20000000298023224,-7.745131015777588,0.8999999761581421,97.0,27.492389678955078,NS_NET146_F3_(3)_PV,0.8999999761581421,1.0,false,8b92ad35-8b0a-49b9-9f66-f42ddfeb9c65,,,,cosPhiFixed:{(0.00,0.90)},30.0 -e87c9d51-cfec-4e04-9790-16cd6b238d51,0.20000000298023224,-16.93343734741211,0.8999999761581421,96.0,46.32542037963867,NS_NET146_F2_(4)_PV,0.8999999761581421,1.0,false,369cffa5-bcee-4489-8193-1d9b10230eca,,,,cosPhiFixed:{(0.00,0.90)},10.0 -26647b27-a278-4ddb-a68e-8437d24798ca,0.20000000298023224,6.223939418792725,0.800000011920929,98.0,42.38501739501953,MS3_EEG_05,0.8999999761581421,1.0,false,86dfce49-05b2-4208-a6ae-877c3e98e6be,,,,cosPhiFixed:{(0.00,0.80)},1000.0 -51ed457c-81ff-470f-b45b-30a94a965c36,0.20000000298023224,-6.537350177764893,0.8999999761581421,98.0,33.695167541503906,NS_NET146_F1_(4)_PV,0.8999999761581421,1.0,false,dd9d4153-c56f-4457-ad5e-46a48d4486b6,,,,cosPhiFixed:{(0.00,0.90)},10.0 -3d74e9fc-be60-41bf-9339-cd067c9378a2,0.20000000298023224,-3.632584810256958,0.8999999761581421,97.0,40.744606018066406,NS_NET146_F1_(25)_PV,0.8999999761581421,1.0,false,2287c2a8-c2d0-4c63-80b5-6b66a1288df8,,,,cosPhiFixed:{(0.00,0.90)},10.0 -033e5854-65d9-4a14-8b5c-6aa675ded4a2,0.20000000298023224,-0.8097801208496094,0.8999999761581421,96.0,41.69758605957031,NS_NET146_F1_(18)_PV,0.8999999761581421,1.0,false,2f921888-36d3-4c88-a8aa-1ecbdc62b9c4,,,,cosPhiFixed:{(0.00,0.90)},10.0 -b8209f35-1405-4f7f-b1ec-3c853954e2a8,0.20000000298023224,-0.43818584084510803,0.800000011920929,97.0,31.086620330810547,MS2_EEG_01,0.8999999761581421,1.0,false,1a8ba1a5-3cee-4791-b21b-f17b08526873,,,,cosPhiFixed:{(0.00,0.80)},1000.0 -d350f4a1-c675-4f22-8fda-26ad0bd03edb,0.20000000298023224,-4.302062511444092,0.800000011920929,95.0,47.19122314453125,MS2_EEG_03,0.8999999761581421,1.0,false,69f7846e-d979-4c77-8a3b-e2ec2e1f6e76,,,,cosPhiFixed:{(0.00,0.80)},1000.0 -0c8bcc26-ce6e-4d2c-acdd-e304cfb3c02f,0.20000000298023224,-1.1688426733016968,0.8999999761581421,95.0,47.49247360229492,NS_NET146_F3_(4)_PV,0.8999999761581421,1.0,false,f66df6fa-3dfa-4515-85d7-54d0f429fde7,,,,cosPhiFixed:{(0.00,0.90)},10.0 -0818deae-c7d9-4252-ac4c-f147004e5752,0.20000000298023224,3.7626590728759766,0.800000011920929,98.0,39.33173751831055,MS2_EEG_05,0.8999999761581421,1.0,false,582ed42c-fd18-49ae-bdf5-6aa59353c7e3,,,,cosPhiFixed:{(0.00,0.80)},1000.0 -b938f0ab-e2c4-469e-9979-303d42224932,0.20000000298023224,3.1050832271575928,0.8999999761581421,98.0,31.573686599731445,NS_NET136_S3_2_PV,0.8999999761581421,1.0,false,b46d4395-6724-4830-ba55-357e81fc2814,,,,cosPhiFixed:{(0.00,0.90)},30.0 -9d7cd8e2-d859-4f4f-9c01-abba06ef2e2c,0.20000000298023224,-14.803051948547363,0.8999999761581421,96.0,42.391395568847656,NS_NET146_F4_(12)_PV,0.8999999761581421,1.0,false,f8dd541b-4a4d-417e-89ff-a9650ee3aac2,,,,cosPhiFixed:{(0.00,0.90)},10.0 -4e655530-909f-4acf-8ed9-d19f849265df,0.20000000298023224,13.844985008239746,0.8999999761581421,98.0,29.355819702148438,NS_NET146_F1_(21)_PV,0.8999999761581421,1.0,false,92cb5065-2e57-4099-8e29-75cbc0c80370,,,,cosPhiFixed:{(0.00,0.90)},10.0 -de40f0bd-3793-4b02-b663-31d282b33f61,0.20000000298023224,-2.511692762374878,0.8999999761581421,96.0,44.8326416015625,NS_NET146_F3_(27)_PV,0.8999999761581421,1.0,false,55caf2ec-a21b-4afd-8830-1e4009cce396,,,,cosPhiFixed:{(0.00,0.90)},30.0 -d142aeef-1b06-4910-88b5-0bce6ef7c1e2,0.20000000298023224,4.056053638458252,0.8999999761581421,97.0,37.51328659057617,NS_NET146_F1_(26)_PV(1),0.8999999761581421,1.0,false,154e9a99-467b-4f65-9928-8ebb14149baa,,,,cosPhiFixed:{(0.00,0.90)},10.0 -c023f6f8-c35c-46d4-9ab7-1d098994d65d,0.20000000298023224,0.6144548654556274,0.8999999761581421,97.0,34.94338607788086,NS_NET146_F1_(1)_PV,0.8999999761581421,1.0,false,4f28e734-5148-4caf-ac64-270231740cbf,,,,cosPhiFixed:{(0.00,0.90)},10.0 -62b0cca9-b44c-4eda-999f-ae2832319848,0.20000000298023224,-8.658151626586914,0.8999999761581421,97.0,37.54166030883789,NS_NET146_F3_(22)_PV,0.8999999761581421,1.0,false,616da4e5-e837-44ec-bbbc-0cd12b5da8f7,,,,cosPhiFixed:{(0.00,0.90)},30.0 -6a909b40-9c28-4e7a-9a86-f52bb0c9d7e9,0.20000000298023224,-11.42428207397461,0.8999999761581421,97.0,40.5459098815918,NS_NET146_F3_(10)_PV,0.8999999761581421,1.0,false,4632291f-80d7-4e4a-9dc9-5c0fd0c56312,,,,cosPhiFixed:{(0.00,0.90)},10.0 -19d949f2-54ff-483c-928b-2438fc760385,0.20000000298023224,-8.571032524108887,0.8999999761581421,96.0,33.3157844543457,NS_NET146_F3_(20)_PV,0.8999999761581421,1.0,false,0ebf0088-f596-4cd1-9ae0-5da02dc40335,,,,cosPhiFixed:{(0.00,0.90)},30.0 -819018d3-4601-4c39-9d41-4a911572d406,0.20000000298023224,10.485807418823242,0.800000011920929,96.0,36.37184143066406,MS3_EEG_07,0.8999999761581421,1.0,false,40b0f497-96a3-49d9-9503-8fa67a5b532a,,,,cosPhiFixed:{(0.00,0.80)},2000.0 -a364e957-2dcc-49c2-b213-2a68d9c3ee83,0.20000000298023224,20.24332618713379,0.800000011920929,97.0,32.75543975830078,MS2_EEG_07,0.8999999761581421,1.0,false,14a8dc4c-0906-402f-b073-6d6d4725d0cb,,,,cosPhiFixed:{(0.00,0.80)},2000.0 -1a738cc5-b8f0-41f0-9f60-85073dc80136,0.20000000298023224,3.0615782737731934,0.8999999761581421,96.0,32.88844299316406,NS_NET146_F1_(37)_PV,0.8999999761581421,1.0,false,450426ac-a560-4d17-b1fc-9e169530a655,,,,cosPhiFixed:{(0.00,0.90)},10.0 -287285e2-c0ac-40dc-a15f-82a5de6ef37f,0.20000000298023224,-4.0978522300720215,0.8999999761581421,97.0,36.18789291381836,NS_NET146_F2_(20)_PV,0.8999999761581421,1.0,false,2aa2d409-8bb2-477d-ac7a-6439552e136a,,,,cosPhiFixed:{(0.00,0.90)},10.0 -5a612315-ad74-4d98-b350-7e44630b8a6e,0.20000000298023224,19.121809005737305,0.8999999761581421,96.0,36.42670440673828,NS_NET146_F3_(1)_PV,0.8999999761581421,1.0,false,22e58399-428f-4633-9ee4-e5fa0db68d6d,,,,cosPhiFixed:{(0.00,0.90)},10.0 -90a5aeab-5a04-4580-bc1c-4d8ea399cc8c,0.20000000298023224,-9.382472038269043,0.8999999761581421,96.0,40.04149627685547,NS_NET146_F4_(6)_PV,0.8999999761581421,1.0,false,49dcfc70-76ca-4f6f-83f7-0bc2aab1ae34,,,,cosPhiFixed:{(0.00,0.90)},10.0 -a1eb7fc1-3bee-4b65-a387-ef3046644bf0,0.20000000298023224,-8.999500274658203,0.8999999761581421,98.0,37.14517593383789,NS_NET146_F2_(12)_PV,0.8999999761581421,1.0,false,8254d91b-e5da-4402-bb8f-301eafa09d28,,,,cosPhiFixed:{(0.00,0.90)},10.0 -dcc2950b-23cc-407d-b53f-0056234f7ee1,0.20000000298023224,-16.258031845092773,0.8999999761581421,96.0,31.165266036987305,NS_NET146_F2_(24)_PV,0.8999999761581421,1.0,false,970cf93c-36c5-4938-a7e4-3f184a7035f0,,,,cosPhiFixed:{(0.00,0.90)},30.0 -2f99a367-0fc2-4ca2-ab58-cb5d7004a6bd,0.20000000298023224,-22.032642364501953,0.8999999761581421,96.0,32.09359359741211,NS_NET146_F1_(34)_PV,0.8999999761581421,1.0,false,fd4f6232-c28d-4fc3-81dd-03b84aad695e,,,,cosPhiFixed:{(0.00,0.90)},10.0 -83f68d87-a893-4e7f-b21d-4874929f927d,0.20000000298023224,4.363753795623779,0.8999999761581421,95.0,35.53179168701172,NS_NET146_F3_(15)_PV,0.8999999761581421,1.0,false,d07dc1b0-e29a-452a-84c5-7df7b0bb3141,,,,cosPhiFixed:{(0.00,0.90)},10.0 -95b1b117-1c7b-4a69-b10e-8963fbced23a,0.20000000298023224,1.3804796934127808,0.800000011920929,98.0,40.089256286621094,MS3_EEG_03,0.8999999761581421,1.0,false,e4502c52-b4d7-4082-a583-b5688d8244e0,,,,cosPhiFixed:{(0.00,0.80)},1000.0 -75a4050d-bdfd-4ca4-a1fd-a5d729613ed5,0.20000000298023224,-8.951131820678711,0.800000011920929,95.0,35.71611022949219,MS4_EEG_07,0.8999999761581421,1.0,false,898d8295-bf35-4079-9374-99b059c2c956,,,,cosPhiFixed:{(0.00,0.80)},2000.0 -71e4f6f1-2b50-41ce-adb7-80a4e309bd63,0.20000000298023224,-7.6025238037109375,0.8999999761581421,96.0,38.04230499267578,NS_NET146_F4_(14)_PV,0.8999999761581421,1.0,false,f2d03b34-9595-4819-a00b-ff9ddd92eb07,,,,cosPhiFixed:{(0.00,0.90)},10.0 -0fbb53fd-cadb-4170-9f31-5af1cd05fd11,0.20000000298023224,0.9310876131057739,0.800000011920929,96.0,38.48886489868164,MS1_EEG_07,0.8999999761581421,1.0,false,7546df1d-8a62-4650-bf2e-d1e441b38d70,,,,cosPhiFixed:{(0.00,0.80)},2000.0 -41a126ec-6254-4b68-821b-ecebb98ad0fd,0.20000000298023224,5.3010125160217285,0.8999999761581421,95.0,39.12493896484375,NS_NET146_F4_(7)_PV,0.8999999761581421,1.0,false,bea7ca63-3ae4-4280-8127-fe2c7fd5ea2d,,,,cosPhiFixed:{(0.00,0.90)},10.0 -0a2cdd93-b055-4e0b-8fce-088968316df4,0.20000000298023224,11.104238510131836,0.8999999761581421,96.0,32.18717575073242,NS_NET146_F1_(20)_PV,0.8999999761581421,1.0,false,7d45f0ab-1e6b-452f-b665-c4846cf046f5,,,,cosPhiFixed:{(0.00,0.90)},10.0 -9b3ae847-e2ea-4598-b56e-35501f61f70c,0.20000000298023224,10.634596824645996,0.800000011920929,95.0,51.043861389160156,MS4_EEG_01,0.8999999761581421,1.0,false,77fc154f-f41c-4e75-bbb1-b7fca68b2f4e,,,,cosPhiFixed:{(0.00,0.80)},1000.0 -ef4764b4-27b9-44bd-8b7d-6903df8b4a72,0.20000000298023224,-7.34271240234375,0.8999999761581421,98.0,41.763492584228516,NS_NET146_F1_(11)_PV,0.8999999761581421,1.0,false,666757e2-292e-473c-ac9c-04c0786574bc,,,,cosPhiFixed:{(0.00,0.90)},10.0 -23e79154-30f9-44c5-b9c7-ab80ab7a4b6a,0.20000000298023224,-19.919971466064453,0.8999999761581421,97.0,38.07854080200195,NS_NET146_F2_(8)_PV,0.8999999761581421,1.0,false,792b505c-87ab-4665-a31d-b6035c5ece70,,,,cosPhiFixed:{(0.00,0.90)},10.0 -de8cfef5-7620-4b9e-9a10-1faebb5a80c0,0.20000000298023224,4.093344211578369,0.8999999761581421,97.0,37.69556427001953,NS_NET116_S1_5_PV,0.8999999761581421,1.0,false,92301422-94ae-48ab-89c7-a69eea9450b2,,,,cosPhiFixed:{(0.00,0.90)},30.0 -cb646f5c-890a-4317-81eb-c7aeffb86389,0.20000000298023224,-1.5687041282653809,0.8999999761581421,96.0,43.37920379638672,NS_NET146_F1_(15)_PV,0.8999999761581421,1.0,false,00bbc353-d47e-4865-a696-fe5d29b9e6a2,,,,cosPhiFixed:{(0.00,0.90)},10.0 -fa6d5184-b205-4b1b-839f-7b21ac956c28,0.20000000298023224,-1.5687041282653809,0.8999999761581421,96.0,43.37920379638672,NS_NET146_F1_(2000)_PV,0.8999999761581421,1.0,false,fa6d5184-b205-4b1b-839f-7b21ac956c29,,,,cosPhiFixed:{(0.00,0.90)},10.0 +5b38af42-1ee4-4a41-b666-ea141187df37,0.20000000298023224,-11.463644027709961,0.8999999761581421,96.0,33.62879943847656,NS_NET146_F2_(3)_PV,0.8999999761581421,1.0,false,0170837a-1876-45f9-a613-666f9991964d,,,,"cosPhiFixed:{(0.00,0.90)}",10.0 +e447506e-3d43-4bce-8aab-a7ca8b7fbc45,0.20000000298023224,3.8914573192596436,0.8999999761581421,98.0,42.77021408081055,NS_NET146_F4_(9)_PV,0.8999999761581421,1.0,false,9b889b73-c108-4b38-b6eb-3377841e0c83,,,,"cosPhiFixed:{(0.00,0.90)}",10.0 +6cac0624-6336-4418-bcf0-990abcdb824b,0.20000000298023224,-8.097375869750977,0.8999999761581421,98.0,44.90728759765625,NS_NET146_F4_(16)_PV,0.8999999761581421,1.0,false,9f7599de-c488-46c5-b053-1279a511f7b9,,,,"cosPhiFixed:{(0.00,0.90)}",30.0 +3c98b5a6-1d44-449e-83e4-d610a4846d8f,0.20000000298023224,-12.883859634399414,0.800000011920929,95.0,38.764892578125,MS4_EEG_03,0.8999999761581421,1.0,false,85ea3976-1779-4d46-bd6f-dfd36427ebdf,,,,"cosPhiFixed:{(0.00,0.80)}",1000.0 +6291eea2-689c-48f3-b7a9-5054bf567cab,0.20000000298023224,5.255863666534424,0.8999999761581421,97.0,36.56882858276367,NS_NET146_F3_(32)_PV,0.8999999761581421,1.0,false,fd3b7bb8-3976-4441-9211-745243afd80f,,,,"cosPhiFixed:{(0.00,0.90)}",10.0 +4fc73066-d9a2-4175-84e5-f3692e050492,0.20000000298023224,9.423768997192383,0.8999999761581421,98.0,39.56998062133789,NS_NET146_F1_(35)_PV,0.8999999761581421,1.0,false,f5ae3279-fe21-4bb7-849a-eaacb0546b0e,,,,"cosPhiFixed:{(0.00,0.90)}",10.0 +cbcfa285-fe3a-4a98-bb4a-05d28d466c79,0.20000000298023224,1.1021884679794312,0.800000011920929,96.0,30.529081344604492,MS1_EEG_05,0.8999999761581421,1.0,false,c1c3b5c2-c79e-4368-a8ae-28fd0f4e357a,,,,"cosPhiFixed:{(0.00,0.80)}",1000.0 +3776dfa9-f161-419e-9014-9cfb5a379025,0.20000000298023224,20.107717514038086,0.8999999761581421,98.0,39.57343292236328,NS_NET146_F4_(17)_PV,0.8999999761581421,1.0,false,155bb2dc-0121-413e-ab42-67c2ed5ce6ea,,,,"cosPhiFixed:{(0.00,0.90)}",30.0 +bb929fcc-a67e-423c-9569-73364746383d,0.20000000298023224,6.103052139282227,0.8999999761581421,97.0,44.66648483276367,NS_NET146_F2_(21)_PV,0.8999999761581421,1.0,false,bd292f64-65e8-42ec-9b78-b9b9f013750e,,,,"cosPhiFixed:{(0.00,0.90)}",10.0 +a50f12e1-33ed-4992-8579-da1800d5eff7,0.20000000298023224,11.473278045654297,0.8999999761581421,98.0,34.85277557373047,NS_NET146_F1_(29)_PV,0.8999999761581421,1.0,false,867c4b4d-0f38-4f28-82ce-135f2cc63808,,,,"cosPhiFixed:{(0.00,0.90)}",10.0 +e04c6258-0ee5-4928-96c1-8e04acbbcc8f,0.20000000298023224,3.925752878189087,0.8999999761581421,97.0,32.65638732910156,NS_NET146_F3_(12)_PV,0.8999999761581421,1.0,false,f6eff0d1-af6b-46ce-b430-4d30976ec08f,,,,"cosPhiFixed:{(0.00,0.90)}",10.0 +61788990-7681-42c0-9d0c-cfd22d4d3a83,0.20000000298023224,-17.2542781829834,0.800000011920929,98.0,32.63483810424805,MS1_EEG_03,0.8999999761581421,1.0,false,787237ad-b3a8-4f2c-ab70-31c5113d82d7,,,,"cosPhiFixed:{(0.00,0.80)}",1000.0 +114efaa0-dd3f-47ce-bbbe-856cacb034d1,0.20000000298023224,11.962505340576172,0.8999999761581421,97.0,39.01054000854492,NS_NET146_F3_(18)_PV,0.8999999761581421,1.0,false,85ec9277-c5fd-4e5b-8a34-9627d9599ad7,,,,"cosPhiFixed:{(0.00,0.90)}",10.0 +53df57d0-c789-4393-b0a5-897a3bc821a2,0.20000000298023224,-1.3447864055633545,0.8999999761581421,95.0,37.434146881103516,NS_NET136_S1_5_PV,0.8999999761581421,1.0,false,926d6113-933f-49e3-9529-a3035acdc9b2,,,,"cosPhiFixed:{(0.00,0.90)}",30.0 +83a0dcd8-d6ad-49bf-8cbc-5a5774ed18ac,0.20000000298023224,9.723748207092285,0.8999999761581421,98.0,51.525978088378906,NS_NET146_F2_(27)_PV,0.8999999761581421,1.0,false,b179c38b-5af0-4304-84b1-1dc03314fd80,,,,"cosPhiFixed:{(0.00,0.90)}",30.0 +2560c371-f420-4c2a-b4e6-e04c11b64c03,0.20000000298023224,0.7802008390426636,0.8999999761581421,98.0,40.086585998535156,NS_NET116_S3_2_PV,0.8999999761581421,1.0,false,550ebca7-1455-44eb-9431-ffbf08e58bd4,,,,"cosPhiFixed:{(0.00,0.90)}",30.0 +241b5dad-aaac-4f7c-8152-a32839fcfa13,0.20000000298023224,-5.435481071472168,0.8999999761581421,98.0,36.50833511352539,NS_NET146_F1_(10)_PV,0.8999999761581421,1.0,false,6c24b464-790a-4aae-bb11-766718f07cd5,,,,"cosPhiFixed:{(0.00,0.90)}",10.0 +4fa4ce55-0944-463a-a91b-3a3806286e0b,0.20000000298023224,-11.769233703613281,0.800000011920929,98.0,27.860116958618164,MS1_EEG_01,0.8999999761581421,1.0,false,f5839ade-5968-4879-a824-90b5fb3552cd,,,,"cosPhiFixed:{(0.00,0.80)}",1000.0 +645b0617-e6ab-438b-a141-9c497d720e4b,0.20000000298023224,-5.639688968658447,0.800000011920929,97.0,34.71104049682617,MS4_EEG_05,0.8999999761581421,1.0,false,ee384ace-040e-4f21-8a8a-d702ab51af55,,,,"cosPhiFixed:{(0.00,0.80)}",1000.0 +5206abaa-3abc-4a15-a8f2-778139a3fc65,0.20000000298023224,4.901591777801514,0.8999999761581421,98.0,42.587581634521484,NS_NET146_F3_(7)_PV,0.8999999761581421,1.0,false,f1e88392-3b2a-4ce8-a31f-c963f08f8043,,,,"cosPhiFixed:{(0.00,0.90)}",30.0 +4ff2235f-24d6-440c-bf09-76ef3eaa340d,0.20000000298023224,-13.216256141662598,0.800000011920929,98.0,35.950138092041016,MS3_EEG_01,0.8999999761581421,1.0,false,bb59ca46-1f2e-41c9-9723-90b306f043cd,,,,"cosPhiFixed:{(0.00,0.80)}",1000.0 +d3bacaf6-8558-4df5-8481-8d684ef3e14d,0.20000000298023224,6.262790203094482,0.8999999761581421,97.0,23.13505744934082,NS_NET146_F1_(26)_PV,0.8999999761581421,1.0,false,154e9a99-467b-4f65-9928-8ebb14149baa,,,,"cosPhiFixed:{(0.00,0.90)}",10.0 +fad9b8c1-9ded-4856-ab91-f41217259363,0.20000000298023224,-7.745131015777588,0.8999999761581421,97.0,27.492389678955078,NS_NET146_F3_(3)_PV,0.8999999761581421,1.0,false,8b92ad35-8b0a-49b9-9f66-f42ddfeb9c65,,,,"cosPhiFixed:{(0.00,0.90)}",30.0 +e87c9d51-cfec-4e04-9790-16cd6b238d51,0.20000000298023224,-16.93343734741211,0.8999999761581421,96.0,46.32542037963867,NS_NET146_F2_(4)_PV,0.8999999761581421,1.0,false,369cffa5-bcee-4489-8193-1d9b10230eca,,,,"cosPhiFixed:{(0.00,0.90)}",10.0 +26647b27-a278-4ddb-a68e-8437d24798ca,0.20000000298023224,6.223939418792725,0.800000011920929,98.0,42.38501739501953,MS3_EEG_05,0.8999999761581421,1.0,false,86dfce49-05b2-4208-a6ae-877c3e98e6be,,,,"cosPhiFixed:{(0.00,0.80)}",1000.0 +51ed457c-81ff-470f-b45b-30a94a965c36,0.20000000298023224,-6.537350177764893,0.8999999761581421,98.0,33.695167541503906,NS_NET146_F1_(4)_PV,0.8999999761581421,1.0,false,dd9d4153-c56f-4457-ad5e-46a48d4486b6,,,,"cosPhiFixed:{(0.00,0.90)}",10.0 +3d74e9fc-be60-41bf-9339-cd067c9378a2,0.20000000298023224,-3.632584810256958,0.8999999761581421,97.0,40.744606018066406,NS_NET146_F1_(25)_PV,0.8999999761581421,1.0,false,2287c2a8-c2d0-4c63-80b5-6b66a1288df8,,,,"cosPhiFixed:{(0.00,0.90)}",10.0 +033e5854-65d9-4a14-8b5c-6aa675ded4a2,0.20000000298023224,-0.8097801208496094,0.8999999761581421,96.0,41.69758605957031,NS_NET146_F1_(18)_PV,0.8999999761581421,1.0,false,2f921888-36d3-4c88-a8aa-1ecbdc62b9c4,,,,"cosPhiFixed:{(0.00,0.90)}",10.0 +b8209f35-1405-4f7f-b1ec-3c853954e2a8,0.20000000298023224,-0.43818584084510803,0.800000011920929,97.0,31.086620330810547,MS2_EEG_01,0.8999999761581421,1.0,false,1a8ba1a5-3cee-4791-b21b-f17b08526873,,,,"cosPhiFixed:{(0.00,0.80)}",1000.0 +d350f4a1-c675-4f22-8fda-26ad0bd03edb,0.20000000298023224,-4.302062511444092,0.800000011920929,95.0,47.19122314453125,MS2_EEG_03,0.8999999761581421,1.0,false,69f7846e-d979-4c77-8a3b-e2ec2e1f6e76,,,,"cosPhiFixed:{(0.00,0.80)}",1000.0 +0c8bcc26-ce6e-4d2c-acdd-e304cfb3c02f,0.20000000298023224,-1.1688426733016968,0.8999999761581421,95.0,47.49247360229492,NS_NET146_F3_(4)_PV,0.8999999761581421,1.0,false,f66df6fa-3dfa-4515-85d7-54d0f429fde7,,,,"cosPhiFixed:{(0.00,0.90)}",10.0 +0818deae-c7d9-4252-ac4c-f147004e5752,0.20000000298023224,3.7626590728759766,0.800000011920929,98.0,39.33173751831055,MS2_EEG_05,0.8999999761581421,1.0,false,582ed42c-fd18-49ae-bdf5-6aa59353c7e3,,,,"cosPhiFixed:{(0.00,0.80)}",1000.0 +b938f0ab-e2c4-469e-9979-303d42224932,0.20000000298023224,3.1050832271575928,0.8999999761581421,98.0,31.573686599731445,NS_NET136_S3_2_PV,0.8999999761581421,1.0,false,b46d4395-6724-4830-ba55-357e81fc2814,,,,"cosPhiFixed:{(0.00,0.90)}",30.0 +9d7cd8e2-d859-4f4f-9c01-abba06ef2e2c,0.20000000298023224,-14.803051948547363,0.8999999761581421,96.0,42.391395568847656,NS_NET146_F4_(12)_PV,0.8999999761581421,1.0,false,f8dd541b-4a4d-417e-89ff-a9650ee3aac2,,,,"cosPhiFixed:{(0.00,0.90)}",10.0 +4e655530-909f-4acf-8ed9-d19f849265df,0.20000000298023224,13.844985008239746,0.8999999761581421,98.0,29.355819702148438,NS_NET146_F1_(21)_PV,0.8999999761581421,1.0,false,92cb5065-2e57-4099-8e29-75cbc0c80370,,,,"cosPhiFixed:{(0.00,0.90)}",10.0 +de40f0bd-3793-4b02-b663-31d282b33f61,0.20000000298023224,-2.511692762374878,0.8999999761581421,96.0,44.8326416015625,NS_NET146_F3_(27)_PV,0.8999999761581421,1.0,false,55caf2ec-a21b-4afd-8830-1e4009cce396,,,,"cosPhiFixed:{(0.00,0.90)}",30.0 +d142aeef-1b06-4910-88b5-0bce6ef7c1e2,0.20000000298023224,4.056053638458252,0.8999999761581421,97.0,37.51328659057617,NS_NET146_F1_(26)_PV(1),0.8999999761581421,1.0,false,154e9a99-467b-4f65-9928-8ebb14149baa,,,,"cosPhiFixed:{(0.00,0.90)}",10.0 +c023f6f8-c35c-46d4-9ab7-1d098994d65d,0.20000000298023224,0.6144548654556274,0.8999999761581421,97.0,34.94338607788086,NS_NET146_F1_(1)_PV,0.8999999761581421,1.0,false,4f28e734-5148-4caf-ac64-270231740cbf,,,,"cosPhiFixed:{(0.00,0.90)}",10.0 +62b0cca9-b44c-4eda-999f-ae2832319848,0.20000000298023224,-8.658151626586914,0.8999999761581421,97.0,37.54166030883789,NS_NET146_F3_(22)_PV,0.8999999761581421,1.0,false,616da4e5-e837-44ec-bbbc-0cd12b5da8f7,,,,"cosPhiFixed:{(0.00,0.90)}",30.0 +6a909b40-9c28-4e7a-9a86-f52bb0c9d7e9,0.20000000298023224,-11.42428207397461,0.8999999761581421,97.0,40.5459098815918,NS_NET146_F3_(10)_PV,0.8999999761581421,1.0,false,4632291f-80d7-4e4a-9dc9-5c0fd0c56312,,,,"cosPhiFixed:{(0.00,0.90)}",10.0 +19d949f2-54ff-483c-928b-2438fc760385,0.20000000298023224,-8.571032524108887,0.8999999761581421,96.0,33.3157844543457,NS_NET146_F3_(20)_PV,0.8999999761581421,1.0,false,0ebf0088-f596-4cd1-9ae0-5da02dc40335,,,,"cosPhiFixed:{(0.00,0.90)}",30.0 +819018d3-4601-4c39-9d41-4a911572d406,0.20000000298023224,10.485807418823242,0.800000011920929,96.0,36.37184143066406,MS3_EEG_07,0.8999999761581421,1.0,false,40b0f497-96a3-49d9-9503-8fa67a5b532a,,,,"cosPhiFixed:{(0.00,0.80)}",2000.0 +a364e957-2dcc-49c2-b213-2a68d9c3ee83,0.20000000298023224,20.24332618713379,0.800000011920929,97.0,32.75543975830078,MS2_EEG_07,0.8999999761581421,1.0,false,14a8dc4c-0906-402f-b073-6d6d4725d0cb,,,,"cosPhiFixed:{(0.00,0.80)}",2000.0 +1a738cc5-b8f0-41f0-9f60-85073dc80136,0.20000000298023224,3.0615782737731934,0.8999999761581421,96.0,32.88844299316406,NS_NET146_F1_(37)_PV,0.8999999761581421,1.0,false,450426ac-a560-4d17-b1fc-9e169530a655,,,,"cosPhiFixed:{(0.00,0.90)}",10.0 +287285e2-c0ac-40dc-a15f-82a5de6ef37f,0.20000000298023224,-4.0978522300720215,0.8999999761581421,97.0,36.18789291381836,NS_NET146_F2_(20)_PV,0.8999999761581421,1.0,false,2aa2d409-8bb2-477d-ac7a-6439552e136a,,,,"cosPhiFixed:{(0.00,0.90)}",10.0 +5a612315-ad74-4d98-b350-7e44630b8a6e,0.20000000298023224,19.121809005737305,0.8999999761581421,96.0,36.42670440673828,NS_NET146_F3_(1)_PV,0.8999999761581421,1.0,false,22e58399-428f-4633-9ee4-e5fa0db68d6d,,,,"cosPhiFixed:{(0.00,0.90)}",10.0 +90a5aeab-5a04-4580-bc1c-4d8ea399cc8c,0.20000000298023224,-9.382472038269043,0.8999999761581421,96.0,40.04149627685547,NS_NET146_F4_(6)_PV,0.8999999761581421,1.0,false,49dcfc70-76ca-4f6f-83f7-0bc2aab1ae34,,,,"cosPhiFixed:{(0.00,0.90)}",10.0 +a1eb7fc1-3bee-4b65-a387-ef3046644bf0,0.20000000298023224,-8.999500274658203,0.8999999761581421,98.0,37.14517593383789,NS_NET146_F2_(12)_PV,0.8999999761581421,1.0,false,8254d91b-e5da-4402-bb8f-301eafa09d28,,,,"cosPhiFixed:{(0.00,0.90)}",10.0 +dcc2950b-23cc-407d-b53f-0056234f7ee1,0.20000000298023224,-16.258031845092773,0.8999999761581421,96.0,31.165266036987305,NS_NET146_F2_(24)_PV,0.8999999761581421,1.0,false,970cf93c-36c5-4938-a7e4-3f184a7035f0,,,,"cosPhiFixed:{(0.00,0.90)}",30.0 +2f99a367-0fc2-4ca2-ab58-cb5d7004a6bd,0.20000000298023224,-22.032642364501953,0.8999999761581421,96.0,32.09359359741211,NS_NET146_F1_(34)_PV,0.8999999761581421,1.0,false,fd4f6232-c28d-4fc3-81dd-03b84aad695e,,,,"cosPhiFixed:{(0.00,0.90)}",10.0 +83f68d87-a893-4e7f-b21d-4874929f927d,0.20000000298023224,4.363753795623779,0.8999999761581421,95.0,35.53179168701172,NS_NET146_F3_(15)_PV,0.8999999761581421,1.0,false,d07dc1b0-e29a-452a-84c5-7df7b0bb3141,,,,"cosPhiFixed:{(0.00,0.90)}",10.0 +95b1b117-1c7b-4a69-b10e-8963fbced23a,0.20000000298023224,1.3804796934127808,0.800000011920929,98.0,40.089256286621094,MS3_EEG_03,0.8999999761581421,1.0,false,e4502c52-b4d7-4082-a583-b5688d8244e0,,,,"cosPhiFixed:{(0.00,0.80)}",1000.0 +75a4050d-bdfd-4ca4-a1fd-a5d729613ed5,0.20000000298023224,-8.951131820678711,0.800000011920929,95.0,35.71611022949219,MS4_EEG_07,0.8999999761581421,1.0,false,898d8295-bf35-4079-9374-99b059c2c956,,,,"cosPhiFixed:{(0.00,0.80)}",2000.0 +71e4f6f1-2b50-41ce-adb7-80a4e309bd63,0.20000000298023224,-7.6025238037109375,0.8999999761581421,96.0,38.04230499267578,NS_NET146_F4_(14)_PV,0.8999999761581421,1.0,false,f2d03b34-9595-4819-a00b-ff9ddd92eb07,,,,"cosPhiFixed:{(0.00,0.90)}",10.0 +0fbb53fd-cadb-4170-9f31-5af1cd05fd11,0.20000000298023224,0.9310876131057739,0.800000011920929,96.0,38.48886489868164,MS1_EEG_07,0.8999999761581421,1.0,false,7546df1d-8a62-4650-bf2e-d1e441b38d70,,,,"cosPhiFixed:{(0.00,0.80)}",2000.0 +41a126ec-6254-4b68-821b-ecebb98ad0fd,0.20000000298023224,5.3010125160217285,0.8999999761581421,95.0,39.12493896484375,NS_NET146_F4_(7)_PV,0.8999999761581421,1.0,false,bea7ca63-3ae4-4280-8127-fe2c7fd5ea2d,,,,"cosPhiFixed:{(0.00,0.90)}",10.0 +0a2cdd93-b055-4e0b-8fce-088968316df4,0.20000000298023224,11.104238510131836,0.8999999761581421,96.0,32.18717575073242,NS_NET146_F1_(20)_PV,0.8999999761581421,1.0,false,7d45f0ab-1e6b-452f-b665-c4846cf046f5,,,,"cosPhiFixed:{(0.00,0.90)}",10.0 +9b3ae847-e2ea-4598-b56e-35501f61f70c,0.20000000298023224,10.634596824645996,0.800000011920929,95.0,51.043861389160156,MS4_EEG_01,0.8999999761581421,1.0,false,77fc154f-f41c-4e75-bbb1-b7fca68b2f4e,,,,"cosPhiFixed:{(0.00,0.80)}",1000.0 +ef4764b4-27b9-44bd-8b7d-6903df8b4a72,0.20000000298023224,-7.34271240234375,0.8999999761581421,98.0,41.763492584228516,NS_NET146_F1_(11)_PV,0.8999999761581421,1.0,false,666757e2-292e-473c-ac9c-04c0786574bc,,,,"cosPhiFixed:{(0.00,0.90)}",10.0 +23e79154-30f9-44c5-b9c7-ab80ab7a4b6a,0.20000000298023224,-19.919971466064453,0.8999999761581421,97.0,38.07854080200195,NS_NET146_F2_(8)_PV,0.8999999761581421,1.0,false,792b505c-87ab-4665-a31d-b6035c5ece70,,,,"cosPhiFixed:{(0.00,0.90)}",10.0 +de8cfef5-7620-4b9e-9a10-1faebb5a80c0,0.20000000298023224,4.093344211578369,0.8999999761581421,97.0,37.69556427001953,NS_NET116_S1_5_PV,0.8999999761581421,1.0,false,92301422-94ae-48ab-89c7-a69eea9450b2,,,,"cosPhiFixed:{(0.00,0.90)}",30.0 +cb646f5c-890a-4317-81eb-c7aeffb86389,0.20000000298023224,-1.5687041282653809,0.8999999761581421,96.0,43.37920379638672,NS_NET146_F1_(15)_PV,0.8999999761581421,1.0,false,00bbc353-d47e-4865-a696-fe5d29b9e6a2,,,,"cosPhiFixed:{(0.00,0.90)}",10.0 +fa6d5184-b205-4b1b-839f-7b21ac956c28,0.20000000298023224,-1.5687041282653809,0.8999999761581421,96.0,43.37920379638672,NS_NET146_F1_(2000)_PV,0.8999999761581421,1.0,false,fa6d5184-b205-4b1b-839f-7b21ac956c29,,,,"cosPhiFixed:{(0.00,0.90)}",10.0 diff --git a/src/test/resources/edu/ie3/datamodel/io/source/csv/_joint_grid/storage_input.csv b/src/test/resources/edu/ie3/datamodel/io/source/csv/_joint_grid/storage_input.csv index 048f98e15..fcb6169a9 100644 --- a/src/test/resources/edu/ie3/datamodel/io/source/csv/_joint_grid/storage_input.csv +++ b/src/test/resources/edu/ie3/datamodel/io/source/csv/_joint_grid/storage_input.csv @@ -1,2 +1,2 @@ "uuid","id","node","operates_from","operates_until","operator","q_characteristics","type" -a2a92cfd-3492-465f-9587-e789f4620af8,Speicher_1,033d0230-4aee-47cf-91f9-81f5f40e60b0,,,,cosPhiFixed:{(0.00,0.98)},95d4c980-d9e1-4813-9f2a-b0942488a570 +a2a92cfd-3492-465f-9587-e789f4620af8,Speicher_1,033d0230-4aee-47cf-91f9-81f5f40e60b0,,,,"cosPhiFixed:{(0.00,0.98)}",95d4c980-d9e1-4813-9f2a-b0942488a570 From 921a51ee9adcbf37c42d7872e27045c0cb550c43 Mon Sep 17 00:00:00 2001 From: Sebastian Peter Date: Tue, 26 Nov 2024 13:21:10 +0100 Subject: [PATCH 5/5] Enhancement and simplification of CSV error management --- .../io/source/csv/CsvDataSource.java | 82 +++++++++++-------- .../io/source/csv/CsvIdCoordinateSource.java | 4 +- .../io/source/csv/CsvWeatherSource.java | 2 +- .../io/source/csv/CsvDataSourceTest.groovy | 44 ++++++---- 4 files changed, 76 insertions(+), 56 deletions(-) diff --git a/src/main/java/edu/ie3/datamodel/io/source/csv/CsvDataSource.java b/src/main/java/edu/ie3/datamodel/io/source/csv/CsvDataSource.java index 61f79ad27..48078465e 100644 --- a/src/main/java/edu/ie3/datamodel/io/source/csv/CsvDataSource.java +++ b/src/main/java/edu/ie3/datamodel/io/source/csv/CsvDataSource.java @@ -161,41 +161,44 @@ protected Set getIndividualTimeSeriesFilePaths() { * occurred */ protected Map buildFieldsToAttributes( - final String csvRow, final String[] headline) { + final String csvRow, final String[] headline) throws SourceException { TreeMap insensitiveFieldsToAttributes = new TreeMap<>(String.CASE_INSENSITIVE_ORDER); - try { - String[] fieldVals = parseCsvRow(csvRow, csvSep); + String[] fieldVals = parseCsvRow(csvRow, csvSep); + insensitiveFieldsToAttributes.putAll( + IntStream.range(0, Math.min(fieldVals.length, headline.length)) + .boxed() + .collect( + Collectors.toMap( + k -> StringUtils.snakeCaseToCamelCase(headline[k]), v -> fieldVals[v]))); - if (fieldVals.length != headline.length) { - throw new SourceException( - "The size of the headline does not fit to the size of the attribute fields.\nHeadline: " - + String.join(", ", headline) - + "\nCsvRow: " - + csvRow.trim() - + ".\nPlease check:" - + "\n - is the csv separator in the file matching the separator provided in the constructor ('" - + csvSep - + "')" - + "\n - does the number of columns match the number of headline fields " - + "\n - are you using a valid RFC 4180 formatted csv row?"); - } + if (fieldVals.length != headline.length) { + throw new SourceException( + "The size of the headline (" + + headline.length + + ") does not fit to the size of the attribute fields (" + + fieldVals.length + + ").\nHeadline: " + + String.join(", ", headline) + + "\nRow: " + + csvRow.trim() + + ".\nPlease check:" + + "\n - is the csv separator in the file matching the separator provided in the constructor ('" + + csvSep + + "')" + + "\n - does the number of columns match the number of headline fields " + + "\n - are you using a valid RFC 4180 formatted csv row?"); + } - insensitiveFieldsToAttributes.putAll( - IntStream.range(0, headline.length) - .boxed() - .collect( - Collectors.toMap( - k -> StringUtils.snakeCaseToCamelCase(headline[k]), v -> fieldVals[v]))); - } catch (SourceException e) { - log.error( - "Cannot build fields to attributes map for row '{}' with headline '{}'.", - csvRow.trim(), - String.join(",", headline), - e); + if (insensitiveFieldsToAttributes.size() != fieldVals.length) { + throw new SourceException( + "There might be duplicate headline elements.\nHeadline: " + + String.join(", ", headline) + + ".\nPlease keep in mind that headlines are case-insensitive and underscores from snake case are ignored."); } + return insensitiveFieldsToAttributes; } @@ -252,7 +255,7 @@ Try>, SourceException> buildStreamWithFieldsToAttribu // is wanted to avoid a lock on the file), but this causes a closing of the stream as well. // As we still want to consume the data at other places, we start a new stream instead of // returning the original one - return Success.of(csvRowFieldValueMapping(reader, headline).parallelStream()); + return csvRowFieldValueMapping(reader, headline); } catch (FileNotFoundException e) { if (allowFileNotExisting) { log.warn("Unable to find file '{}': {}", filePath, e.getMessage()); @@ -282,13 +285,20 @@ private Try getFilePath(Class entityCla * @param headline of the file * @return a list of mapping */ - protected List> csvRowFieldValueMapping( + protected Try>, SourceException> csvRowFieldValueMapping( BufferedReader reader, String[] headline) { - return reader - .lines() - .parallel() - .map(csvRow -> buildFieldsToAttributes(csvRow, headline)) - .filter(map -> !map.isEmpty()) - .toList(); + return Try.scanStream( + reader + .lines() + .parallel() + .map( + csvRow -> + Try.of( + () -> buildFieldsToAttributes(csvRow, headline), + SourceException.class)), + "Map") + .transform( + stream -> stream.filter(map -> !map.isEmpty()), + e -> new SourceException("Parsing csv row failed.", e)); } } diff --git a/src/main/java/edu/ie3/datamodel/io/source/csv/CsvIdCoordinateSource.java b/src/main/java/edu/ie3/datamodel/io/source/csv/CsvIdCoordinateSource.java index 7f7e0be78..199a4925d 100644 --- a/src/main/java/edu/ie3/datamodel/io/source/csv/CsvIdCoordinateSource.java +++ b/src/main/java/edu/ie3/datamodel/io/source/csv/CsvIdCoordinateSource.java @@ -179,7 +179,7 @@ public List findCornerPoints( } public int getCoordinateCount() { - return idToCoordinate.keySet().size(); + return idToCoordinate.size(); } private Collection getCoordinatesInBoundingBox( @@ -209,7 +209,7 @@ private Collection getCoordinatesInBoundingBox( // is wanted to avoid a lock on the file), but this causes a closing of the stream as well. // As we still want to consume the data at other places, we start a new stream instead of // returning the original one - return Success.of(dataSource.csvRowFieldValueMapping(reader, headline).parallelStream()); + return dataSource.csvRowFieldValueMapping(reader, headline); } catch (IOException e) { return Failure.of( new SourceException("Cannot read the file for coordinate id to coordinate mapping.", e)); diff --git a/src/main/java/edu/ie3/datamodel/io/source/csv/CsvWeatherSource.java b/src/main/java/edu/ie3/datamodel/io/source/csv/CsvWeatherSource.java index 2b8a368a7..ab565db80 100644 --- a/src/main/java/edu/ie3/datamodel/io/source/csv/CsvWeatherSource.java +++ b/src/main/java/edu/ie3/datamodel/io/source/csv/CsvWeatherSource.java @@ -240,7 +240,7 @@ private Try>, SourceException> buildStreamWithFieldsT // is wanted to avoid a lock on the file), but this causes a closing of the stream as well. // As we still want to consume the data at other places, we start a new stream instead of // returning the original one - return Success.of(dataSource.csvRowFieldValueMapping(reader, headline).parallelStream()); + return dataSource.csvRowFieldValueMapping(reader, headline); } catch (IOException e) { return Failure.of( new SourceException( diff --git a/src/test/groovy/edu/ie3/datamodel/io/source/csv/CsvDataSourceTest.groovy b/src/test/groovy/edu/ie3/datamodel/io/source/csv/CsvDataSourceTest.groovy index 24a55820d..8194241e0 100644 --- a/src/test/groovy/edu/ie3/datamodel/io/source/csv/CsvDataSourceTest.groovy +++ b/src/test/groovy/edu/ie3/datamodel/io/source/csv/CsvDataSourceTest.groovy @@ -5,6 +5,7 @@ */ package edu.ie3.datamodel.io.source.csv +import edu.ie3.datamodel.exceptions.SourceException import edu.ie3.datamodel.io.csv.CsvIndividualTimeSeriesMetaInformation import edu.ie3.datamodel.io.naming.FileNamingStrategy import edu.ie3.datamodel.io.naming.timeseries.ColumnScheme @@ -274,7 +275,7 @@ class CsvDataSourceTest extends Specification implements CsvTestDataMeta { ] } - def "A CsvDataSource should be able to handle several errors when the csvRow is invalid or cannot be processed"() { + def "A CsvDataSource should throw an exception if the headline and CSV row have different sizes"() { given: def validHeadline = [ "uuid", @@ -287,33 +288,42 @@ class CsvDataSourceTest extends Specification implements CsvTestDataMeta { "s_rated" ] as String[] - expect: - dummyCsvSource.buildFieldsToAttributes(invalidCsvRow, validHeadline) == [:] + when: + dummyCsvSource.buildFieldsToAttributes(invalidCsvRow, validHeadline) + + then: + def exception = thrown(SourceException) + exception.getMessage().startsWith("The size of the headline (8) does not fit to the size of the attribute fields") where: invalidCsvRow || explaination "5ebd8f7e-dedb-4017-bb86-6373c4b68eb8;25.0;100.0;0.95;98.0;test_bmTypeInput;50.0;25.0" || "wrong separator" - "5ebd8f7e-dedb-4017-bb86-6373c4b68eb8,25.0,100.0,0.95,98.0,test_bmTypeInput" || "too less columns" - "5ebd8f7e-dedb-4017-bb86-6373c4b68eb8,25.0,100.0,0.95,98.0,test_bmTypeInput,,,," || "too much columns" + "5ebd8f7e-dedb-4017-bb86-6373c4b68eb8,25.0,100.0,0.95,98.0,test_bmTypeInput" || "too little columns" + "5ebd8f7e-dedb-4017-bb86-6373c4b68eb8,25.0,100.0,0.95,98.0,test_bmTypeInput,,,," || "too many columns" } - def "A CsvDataSource should be able to handle invalid headlines"() { - given: - def validCsvRow = "5ebd8f7e-dedb-4017-bb86-6373c4b68eb8,0.95,test_bmTypeInput,25.0" - expect: - dummyCsvSource.buildFieldsToAttributes(validCsvRow, invalidHeadline) == [:] - - where: - invalidHeadline || explaination - ["uuid", "cosphi_rated", "id"] as String[] || "headline too short" - [ + def "A CsvDataSource should throw an exception if there are duplicate headlines"() { + given: + def invalidHeadline = [ "uuid", + "active_power_gradient", + "Active_Power_Gradient", + "capex", "cosphi_rated", + "eta_conv", "id", + "opex", "s_rated", - "capex" - ] as String[] || "headline too long" + ] as String[] + def validCsvRow = "5ebd8f7e-dedb-4017-bb86-6373c4b68eb8,25.0,25.0,100.0,0.95,98.0,test_bmTypeInput,50.0,25.0" + + when: + dummyCsvSource.buildFieldsToAttributes(validCsvRow, invalidHeadline) + + then: + def exception = thrown(SourceException) + exception.getMessage().startsWith("There might be duplicate headline elements.") } def "The CsvDataSource is able to provide correct paths to time series files"() {