diff --git a/rdf-improved/Makefile b/rdf-improved/Makefile new file mode 100644 index 0000000..65afd95 --- /dev/null +++ b/rdf-improved/Makefile @@ -0,0 +1,7 @@ +RDF = $(wildcard test/rdf/*) +TRIG = $(patsubst test/rdf/%.xml, test/trig/%.trig, $(RDF)) + +all: $(TRIG) + +test/trig/%.trig: cim-trig.pl test/rdf/%.xml + perl $^ $@ diff --git a/rdf-improved/README.md b/rdf-improved/README.md new file mode 100644 index 0000000..b68b4d0 --- /dev/null +++ b/rdf-improved/README.md @@ -0,0 +1,32 @@ + +## Add Datatypes To Instance Data +https://github.com/Sveino/Inst4CIM-KG/issues/49 + +In CGMES instance data, all literals are string, but should be marked with the appropriate datatype. +- E.g. `cim:ACDCConverter.baseS` should be marked `^^xsd:float` +- Otherwise sort won't work and range queries will be slower. +- This pertains to `boolean, dateTme, float, gMonthDay, integer` as `string` is the default datatype + +This query counts props by XSD datatype: +```sparql +PREFIX xsd: +PREFIX rdfs: + +select ?range (count(*) as ?c) { + ?x rdfs:range ?range + filter(strstarts(str(?range), str(xsd:))) +} group by ?range order by ?range +``` + +Here are the current results, but it should be rerun after fixes to ontology: see col "comment" +| range | c | comment | +|---------------|-----|-------------------------------------------------------------------------------------| +| xsd:boolean | 218 | Inflated because meta-data props are duplicated, and many are boolean | +| xsd:dateTime | 5 | | +| xsd:decimal | 1 | | +| xsd:float | 310 | Deflated because eg `cim:ActivePower.value` may be used by hundreds of "real" props | +| xsd:gMonthDay | 2 | | +| xsd:integer | 36 | | +| xsd:string | 51 | | + +I have a tentative SPARQL Update, but need to revise it. diff --git a/rdf-improved/cim-trig.pl b/rdf-improved/cim-trig.pl new file mode 100644 index 0000000..c0a5523 --- /dev/null +++ b/rdf-improved/cim-trig.pl @@ -0,0 +1,104 @@ +#!perl -w +# Convert CIM xml file to trig (turtle with graphs). + +# Assumptions: +# - Relies on a repeatable CIM XML layout as lines (uses simple string manipulation). +# If needed, I can change it to work with proper XML access. This module seems suitable: +# use XML::DT; # https://metacpan.org/pod/XML::DT +# - A file has exactly one model: md:FullModel or dm:DifferenceModel +# - dm:DifferenceModel has exactly two sections dm:reverseDifferences and dm:forwardDifferences in this order +# - Uses "owl write" (non-streaming) for nicer formatting +# - Or jena riot in --formatted mode (non-streaming). For very large files, we should switch to --output + +use warnings; +use autodie; +use UUID qw(uuid4); # https://metacpan.org/pod/UUID + # CIM UUIDs are version 4: https://github.com/Sveino/Spec4CIM-KG/issues/10 + +# owl.bat prints some junk on STDERR that I can't suppress on Cygwin, so we need to use explicit in/out filenames +my $in = shift; +my $out = shift or die "Usage: $0 in.rdf out.trig\n"; +open(STDIN,$in); + +# slurp STDIN +$/ = undef; +my $xml = ; + +# remove parasitic underscore from start of relative URLs +$xml =~ s{(rdf:(about|resource)=\"#)_+}{$1}g; + +# break it up +my ($rdf_open, $body, $rdf_close) = + $xml =~ m{(.*?)(.*?)()}s + or die "Can't find rdf:RDF element\n"; +my ($model, $model_type, $model_uri, $rest) = + $body =~ m{(<(md:FullModel|dm:DifferenceModel) rdf:about="(.*?)".*?)(.*)}s + or die "Can't find md:FullModel or dm:DifferenceModel\n"; + +# Add base +my ($base) = + $model =~ m{(.*?)<} + or die "Can't find md:Model.modelingAuthoritySet\n"; +$rdf_open =~ s{(.*?) +\s*(.*?) +(.*)}s + or die "Can't find dm:reverseDifferences FOLLOWED BY dm:forwardDifferences\n"; + my $reverse_uri = "urn:uri:" . uuid4(); + my $forward_uri = "urn:uri:" . uuid4(); + my $reverse_ref = qq{}; + my $forward_ref = qq{}; + $model = ttl("$rdf_open$model_open$reverse_ref$forward_ref$model_close$rdf_close"); + $reverse = ttl_no_prefixes("$rdf_open$reverse$rdf_close"); + $forward = ttl_no_prefixes("$rdf_open$forward$rdf_close"); + $output = qq{ +$model +<$reverse_uri> { # reverseDifferences +$reverse +} + +<$forward_uri> { # forwardDifferences +$forward +}}} else { + $model = ttl("$rdf_open$model$rdf_close"); + $rest = ttl_no_prefixes("$rdf_open$rest$rdf_close"); + $output = qq{ +$model + +<$model_uri> { # model content + +$rest +}}}; + +open(STDOUT,">$out"); +print $output; + +sub ttl { + # https://perldoc.perl.org/functions/open#Opening-a-filehandle-into-a-command + my $input = shift; + my $fh; + my $tmp = "tmp$$"; + open ($fh,">$tmp.rdf"); + print $fh $input; + close $fh; + system("owl.bat write --keepUnusedPrefixes -i rdfxml $tmp.rdf $tmp.ttl"); + ## riot.bat --syntax=rdfxml --formatted=ttl $infile > $outfile + open ($fh, "$tmp.ttl"); + my $output = <$fh>; # $/ is undef, so it slurps + close $fh; + unlink "$tmp.rdf"; + unlink "$tmp.ttl"; + $output +} + +sub ttl_no_prefixes { + my $x = ttl(shift); + $x =~ s{\@prefix.*}{}g; + $x =~ s{^\n+}{}g; + $x =~ s{\n+$}{}g; + $x +} diff --git a/rdf-improved/test/rdf/FullGrid_OP.xml b/rdf-improved/test/rdf/FullGrid_OP.xml new file mode 100644 index 0000000..7d3aecd --- /dev/null +++ b/rdf-improved/test/rdf/FullGrid_OP.xml @@ -0,0 +1,224 @@ + + + + http://fullgrid.eu/CGMES/3.0 + + http://iec.ch/TC57/ns/CIM/Operation-EU/3.0 + CGMES Conformity Assessment Test Configuration. The Test Configuration is owned by ENTSO-E and is provided by ENTSO-E “as it is”. To the fullest extent permitted by law, ENTSO-E shall not be liable for any damages of any kind arising out of the use of the model (including any of its subsequent modifications). ENTSO-E neither warrants, nor represents that the use of the model will not infringe the rights of third parties. Any use of the model shall include a reference to ENTSO-E. ENTSO-E web site is the only official source of information related to the model. + 1 + 2021-02-09T19:30:00Z + 2020-12-10T00:21:43Z + + + f37786d0-b118-4b92-bafb-326eac2a3877 + ACCUM_LIM_1 + 99 + + ACCUM_LIM_1 + + + + + + ThreePhasePower + + + caa5c91e-d25c-4dd2-8ac2-c36c4eeaa40e + STR_MEAS_1 + STR_MEAS_1 + + + 2015-12-02T16:06:06 + + 0 + f088ed67-3917-4153-9418-2acbb10024a5 + + CMD_1 + true + + CMD_1 + + SwitchPosition + 0 + + + + e3883f88-b2d8-4732-95a9-4fd9204a2300 + ANA_VALUE_1 + 2015-12-02T16:06:06 + 98.0 + + + ANA_VALUE_1 + + + d7848aed-83b4-43b5-b54f-c96d1ebe03d5 + ICCP + ICCP + + + + 13dacabf-aa4c-4a78-806e-c7c4c6949718 + + DIS_1 + SwitchPosition + + DIS_1 + + + + + 44e63d79-6b05-4c64-b490-d181863af7da + ACC_LIMSET_1 + false + + ACC_LIMSET_1 + + + 66d4d5fc-bad5-4654-b4fe-6ed133bf6096 + ANA_LIMSET_1 + false + + ANA_LIMSET_1 + + + ACC_RESET_1 + true + 2015-12-02T16:06:06 + ThreePhaseActivePower + + + + 2a593d4f-90a7-4dd6-a35f-de1900b24df8 + ACC_RESET_1 + + + + 74b45ece-3d90-4356-86ab-985a86bc0064 + ACCUM_1 + + ACCUM_1 + ActiveEnergy + + + + + + + 56f7410b-7c71-4ea4-b25f-6e0b2fe9b1f6 + ANA_VALUE_1 + 2015-12-02T16:06:06 + 98.0 + + + ANA_VALUE_2 + + + ThreePhaseActivePower + + 87478acb-cd1f-40a6-b4a7-59ec99f8b063 + true + 120.0 + 320.0 + + SET_PNT_1 + SET_PNT_1 + 156.00 + 2015-12-02T16:06:06 + + + 250.0 + + + 472aa91b-8524-4e17-ba84-ef74eacd507e + ACC_VALUE_1 + 2015-12-02T16:06:06 + 98 + + + ACC_VALUE_1 + + + + true + + true + false + false + + true + false + true + false + true + false + + + bbb0ad5d-97e7-449c-9840-115cfca328cc + STR_MEA_V_1 + 2015-12-02T16:06:06 + 97.00 + + + STR_MEA_V_1 + + + fc908c16-468f-4a64-ba74-6f57175e0005 + ANA_LIM_1 + 99 + + ANA_LIM_1 + + + 1a457323-2094-440f-8d30-dc93adf0cdb3 + VAL_SET_1 + VAL_SET_1 + + + + + + + + ANA_1 + true + Analog_1 + ThreePhaseActivePower + 8ad6521e-06a9-4ce9-be0e-00a686fb29e3 + + + + + 2015-12-02T16:06:06 + + + + true + 8176be1d-346d-4869-a3f7-6ba57de63f2f + 39.99 + 19.99 + ThreePhaseActivePower + CMD_RL_1 + CMD_RL_1 + + + ec43b60a-0741-4788-9079-bdac365110f4 + DIS_VALUE_1 + 98 + 2015-12-02T16:06:06 + + + DIS_VALUE_1 + + + 1d70075e-6010-4f62-8f38-9fc3bba6b30b + VAL_TO_ALI_1 + 0 + + VAL_TO_ALI_1 + + diff --git a/rdf-improved/test/rdf/FullGrid_OP_diff.xml b/rdf-improved/test/rdf/FullGrid_OP_diff.xml new file mode 100644 index 0000000..f92fb2d --- /dev/null +++ b/rdf-improved/test/rdf/FullGrid_OP_diff.xml @@ -0,0 +1,29 @@ + + + + 2021-11-19T23:16:27Z + 2021-02-09T19:30:00Z + CGMES Conformity Assessment Test Configuration. The Test Configuration is owned by ENTSO-E and is provided by ENTSO-E “as it is”. To the fullest extent permitted by law, ENTSO-E shall not be liable for any damages of any kind arising out of the use of the model (including any of its subsequent modifications). ENTSO-E neither warrants, nor represents that the use of the model will not infringe the rights of third parties. Any use of the model shall include a reference to ENTSO-E. ENTSO-E web site is the only official source of information related to the model. + http://fullgrid.eu/CGMES/3.0 + http://iec.ch/TC57/ns/CIM/Operation-EU/3.0 + 001 + + + + + SET_PNT_1 + + + 99 + + + + + SET_PNT_1 test + + + 100 + + + + diff --git a/rdf-improved/test/rdf/FullGrid_SC_diff.xml b/rdf-improved/test/rdf/FullGrid_SC_diff.xml new file mode 100644 index 0000000..a836083 --- /dev/null +++ b/rdf-improved/test/rdf/FullGrid_SC_diff.xml @@ -0,0 +1,29 @@ + + + + 2021-11-19T23:16:27Z + 2021-02-09T19:30:00Z + CGMES Conformity Assessment Test Configuration. The Test Configuration is owned by ENTSO-E and is provided by ENTSO-E “as it is”. To the fullest extent permitted by law, ENTSO-E shall not be liable for any damages of any kind arising out of the use of the model (including any of its subsequent modifications). ENTSO-E neither warrants, nor represents that the use of the model will not infringe the rights of third parties. Any use of the model shall include a reference to ENTSO-E. ENTSO-E web site is the only official source of information related to the model. + http://fullgrid.eu/CGMES/3.0 + http://iec.ch/TC57/ns/CIM/ShortCircuit-EU/3.0 + 001 + + + + + 9.99 + + + true + + + + + 10 + + + false + + + + diff --git a/rdf-improved/test/rdf/MicroGrid-Assembled-DL_diff.xml b/rdf-improved/test/rdf/MicroGrid-Assembled-DL_diff.xml new file mode 100644 index 0000000..fad861e --- /dev/null +++ b/rdf-improved/test/rdf/MicroGrid-Assembled-DL_diff.xml @@ -0,0 +1,8959 @@ + + + + 2021-11-19T23:16:27Z + 2021-03-25T15:30:00Z + CGMES Conformity Assessment Test Configuration. The Test Configuration is owned by ENTSO-E and is provided by ENTSO-E “as it is”. To the fullest extent permitted by law, ENTSO-E shall not be liable for any damages of any kind arising out of the use of the model (including any of its subsequent modifications). ENTSO-E neither warrants, nor represents that the use of the model will not infringe the rights of third parties. Any use of the model shall include a reference to ENTSO-E. ENTSO-E web site is the only official source of information related to the model. + http://tennet.nl/CGMES + http://iec.ch/TC57/ns/CIM/DiagramLayout-EU/3.0 + 001 + + + + + + 3 + 661.1736 + 206.375 + + + + 1 + 430 + 214 + + + + none + 0 + + + 019ef9d5-4c45-f74d-5132-39fb7da2af81 + + + 3 + 663.3358 + 114.0391 + + + + 1 + 256 + 196 + + + + 2 + 643.9958 + 116 + + + + 2 + 336 + 256 + + + + 2 + 437.8854 + 157.4271 + + + + 4 + 643.9958 + 206.375 + + + + GR-BE-Inj-XCA_AL11-1413600188 + 90 + + + 06860db8-e1c6-e18f-4e4d-39fb7da2af84 + + + none + 0 + + + 099f9e11-34a6-f1b5-e1de-39fb7da2af81 + + + 2 + 100 + 190 + + + + none + 0 + + + 0bbca635-cbcb-4638-0d60-39fb7da2af81 + + + GR-BE-Load_1-1132341825 + 90 + + + 0c0392c2-6ba8-dc84-f2e2-39fb7da2af84 + + + G-Link-354409038 + 0 + + + 0c305168-ac23-44c5-f406-39fb7da2af86 + + + 1 + 301.7 + 86 + + + + 2 + 270 + 172 + + + + 1 + 426.2 + 214 + + + + GR-BE_S1-265097752 + 90 + + + 1163f3fd-2c34-9374-da3b-39fb7da2af85 + + + 2 + 283.2062 + 156 + + + + GR-L-412002467 + 0 + + + 126b9b98-0957-8c1d-6167-39fb7da2af85 + + + GR-L-1712449918 + 0 + + + 130a8dfd-959e-e7e4-d4cf-39fb7da2af84 + + + 2 + 437.8854 + 130 + + + + 2 + 438 + 216 + + + + GR-BE-Line_7-1366516707 + 0 + + + 160b8549-e559-e056-4128-39fb7da2af85 + + + 3 + 302.7938 + 145.5208 + + + + 1 + 230 + 216 + + + + GR-NL_TR2_2-25822384 + -89.8 + + + 17045431-5186-7322-809b-39fb7da2af85 + + + 2 + 437.8854 + 96.57291 + + + + 2 + 438 + 170 + + + + 2 + 738 + 175.2 + + + + GR-BE-TR3_1-2077564634 + -90 + + + 1aa864ff-bdea-4937-db50-39fb7da2af84 + + + 1 + 302 + 148 + + + + GR-L-1519229870 + 0 + + + 1c24a6b6-106d-5f14-2a6b-39fb7da2af84 + + + GR-L-1326432400 + 0 + + + 1cd51f72-e422-f42f-164b-39fb7da2af85 + + + 2 + 284 + 182 + + + + 2 + 180 + 86 + + + + GR-L-1163897995 + 0 + + + 1f82307b-224c-5b52-8477-39fb7da2af84 + + + 2 + 438 + 124 + + + + G-Link-354408595 + 0 + + + 1ff716d4-9ec2-de73-6bbc-39fb7da2af86 + + + 1 + 444 + 100 + + + + 1 + 567.7958 + 93.92693 + + + + 1 + 293 + 156 + + + + GR-NL-Load_1-704664914 + -90 + + + 222ab4d4-8a49-06f3-ec97-39fb7da2af85 + + + 1 + 567.7958 + 129.6451 + + + + 1 + 240 + 110 + + + + 2 + 100 + 166 + + + + 1 + 322 + 78 + + + + 4 + 643.9958 + 114.0391 + + + + 2 + 200.1557 + 216 + + + + 1 + 445.8 + 214 + + + + 2 + 437.8854 + 215.2473 + + + + none + 0 + + + 2f14d750-5f1c-c7f0-828f-39fb7da2af81 + + + G-Link-354408513 + 0 + + + 30273e63-d259-660a-e2e3-39fb7da2af86 + + + 1 + 644 + 81.3 + + + + none + 0 + + + 317503ed-2414-da1c-24ed-39fb7da2af81 + + + GR-NL-G1-145382758 + -90 + + + 327060bc-1576-7ee2-fdd3-39fb7da2af85 + + + 1 + 438 + 88 + + + + none + 0 + + + 3333a803-f5b3-105f-15de-39fb7da2af81 + + + 1 + 146 + 190 + + + + GR-BE-Inj-XZE_ST24-78955718 + 90 + + + 35618b32-037a-0171-912a-39fb7da2af84 + + + GR-BE_S2-252010594 + 90 + + + 360f54e8-158e-16ff-0bfb-39fb7da2af85 + + + 1 + 222.2 + 152 + + + + GR-BE-Load_2-664013061 + 90 + + + 37cb9d70-0f47-0251-6073-39fb7da2af85 + + + GR-L-1259515836 + 0 + + + 390b0090-fd77-d447-d30e-39fb7da2af85 + + + GR-L-1962060451 + 0 + + + 3a7c07a4-981d-01d7-8816-39fb7da2af84 + + + 1 + 284 + 164 + + + + 2 + 568 + 147.9 + + + + none + 0 + + + 3da63568-6c5e-54dc-11e9-39fb7da2af81 + + + GR-L-1414387645 + 0 + + + 3e3a5430-e16e-7428-ffc0-39fb7da2af85 + + + 2 + 290.931 + 110 + + + + 3 + 162.7188 + 189.1771 + + + + G-Link-354409015 + 0 + + + 3f5fcd49-4e27-5c8c-7af0-39fb7da2af7e + + + 1 + 643.9958 + 243.4174 + + + + 2 + 335.7563 + 234.1563 + + + + GR-NL-Line_3-1522111161 + 0 + + + 4556aeff-1a4a-fd71-11be-39fb7da2af85 + + + 2 + 367.7708 + 243.4167 + + + + 1 + 688 + 216 + + + + G-Link-354408573 + 0 + + + 467d3d1e-f96f-acb5-c8b8-39fb7da2af80 + + + 4 + 179.9167 + 189.1771 + + + + GR-NL-TR2_1-1902947644 + -89.5 + + + 47f63ddd-965b-d6fd-e0d7-39fb7da2af85 + + + 1 + 444 + 166 + + + + 1 + 765.3542 + 191.8229 + + + + GR-BE-Line_2-1618371762 + 0 + + + 4a309c3b-78a7-8ca8-9e59-39fb7da2af85 + + + 1 + 580 + 166 + + + + GR-L-956945829 + 0 + + + 4cbecbba-54c6-3ce8-7659-39fb7da2af85 + + + 3 + 717.9335 + 215.6354 + + + + 1 + 368 + 252 + + + + GR-BE-TR2_3-266970206 + 90 + + + 4d428912-7981-161b-a501-39fb7da2af85 + + + 3 + 290.931 + 109.8021 + + + + 1 + 240 + 216 + + + + 2 + 438 + 247.9 + + + + 3 + 254.9966 + 215.6354 + + + + GR-L-1997329201 + 0 + + + 504175f2-4ba9-2078-dbd8-39fb7da2af85 + + + GR-NL-Inj-XWI_GY11-486907852 + -90 + + + 5073a386-d357-79b8-a068-39fb7da2af85 + + + 2 + 335.7563 + 203.7292 + + + + 2 + 335.7563 + 252 + + + + G-Link-354409049 + 0 + + + 51fa4360-9e0a-f493-e002-39fb7da2af86 + + + GR-BE-G1-330853274 + 90 + + + 521430de-90d7-0417-a0dd-39fb7da2af84 + + + 1 + 438 + 250.2 + + + + 2 + 438 + 166 + + + + GR-NL-Inj-XKA_MA11-182978626 + -90 + + + 527833a7-b84b-8661-4285-39fb7da2af84 + + + GR-L-751811171 + 0 + + + 529bc239-186c-5ef9-ac0d-39fb7da2af85 + + + 1 + 759.3542 + 191.8229 + + + + GR-NL_TR2_3-1833298703 + -89.2 + + + 53eb83ca-b82b-9d4e-fbfa-39fb7da2af84 + + + 1 + 643.9958 + 214.3137 + + + + 2 + 737.9229 + 244 + + + + 1 + 252.2 + 196 + + + + 1 + 682.625 + 113.7708 + + + + none + 0 + + + 57e6bfd4-dd22-64a7-d1c5-39fb7da2af81 + + + 2 + 180 + 76 + + + + GR-SVC-1230797516-321439582 + 0 + + + 58a55440-3afa-4369-3dae-39fb7da2af84 + + + none + 0 + + + 58c4516e-0bf9-bd01-5499-39fb7da2af81 + + + 1 + 567.7958 + 157.4271 + + + + G-Link-354408554 + 0 + + + 5a037b6f-92a5-4dea-741c-39fb7da2af86 + + + 4 + 269.875 + 215.6354 + + + + 1 + 180 + 238 + + + + GR-BE-Inj-XKA_MA11-1735199274 + 90 + + + 5b42c603-e8ce-b062-4139-39fb7da2af85 + + + 1 + 655.8 + 88 + + + + GR-L-444386168 + 0 + + + 5df00684-9350-95be-df85-39fb7da2af85 + + + 1 + 309.5 + 86 + + + + GR-BE-Inj-XZE_ST23-1448023129 + 90 + + + 5f069b7a-3de0-9631-eddb-39fb7da2af84 + + + 2 + 437.8854 + 94 + + + + 1 + 177.5 + 86 + + + + GR-BE-Line_6-2084691096 + 0 + + + 62ee083b-e703-4e52-6aa1-39fb7da2af85 + + + Assembled + + 634dea3f-e2a6-36d0-d25c-39fb7da2af7d + + + 1 + 353.9583 + 244.7396 + + + + GR-BE-TR2_2-1357561524 + 90 + + + 63ae4d75-b66c-0faa-b7b5-39fb7da2af84 + + + 1 + 568 + 176.5 + + + + 1 + 228 + 152 + + + + 1 + 613.9996 + 116.1873 + + + + 1 + 438 + 198 + + + + G-Link-354408541 + 0 + + + 67d1141f-e4e8-58f6-b501-39fb7da2af86 + + + GR-L-108027093 + 0 + + + 68b8b7d0-b858-4b32-69b1-39fb7da2af85 + + + G-Link-354409027 + 0 + + + 69737775-5a6c-5ac7-1953-39fb7da2af86 + + + 1 + 321.4688 + 251.3542 + + + + 2 + 568 + 166 + + + + 2 + 322 + 86 + + + + 3 + 210.0364 + 109.9902 + + + + GR-L-590160729 + 0 + + + 6e33646a-c005-a677-a091-39fb7da2af84 + + + 1 + 426 + 100 + + + + 1 + 757.8 + 204 + + + + GR-L-82826021 + 0 + + + 7451f968-de50-1a23-2527-39fb7da2af84 + + + 2 + 335.7563 + 215.6354 + + + + 1 + 422.2 + 100 + + + + 1 + 250 + 110 + + + + 2 + 368 + 234 + + + + 1 + 697.9999 + 216.0349 + + + + 1 + 426 + 138 + + + + GR-L-501948729 + 0 + + + 789399cf-2f9b-0e28-fae2-39fb7da2af85 + + + GR-L-1230804819-795098234 + 0 + + + 7996889d-b7e0-b3bd-055d-39fb7da2af81 + + + 1 + 437.8854 + 244 + + + + 1 + 270 + 246 + + + + 2 + 438 + 99.9 + + + + 2 + 438 + 138.1 + + + + 1 + 702.623 + 114.0501 + + + + 1 + 240 + 155 + + + + GR-NL-Line_2-1694985016 + 0 + + + 7fee9664-b00b-5cc0-91ed-39fb7da2af85 + + + 4 + 321.9979 + 150.8125 + + + + 4 + 737.9229 + 181.2396 + + + + GR-L-1192632359 + 0 + + + 837a7d94-c576-34c6-d8d7-39fb7da2af85 + + + 1 + 447.8 + 248 + + + + 2 + 438 + 166 + + + + GR-NL-S1-23474354 + -90 + + + 85439b66-c718-55b1-56aa-39fb7da2af84 + + + 1 + 321.9979 + 96.57291 + + + + 1 + 444 + 248 + + + + GR-L-1994603755 + 0 + + + 8694b1f7-ba70-1bf6-707b-39fb7da2af84 + + + GR-NL-Inj-XZE_ST23-435758727 + -90 + + + 87a1a7a2-7692-e053-30f4-39fb7da2af85 + + + 1 + 424.2 + 248 + + + + 2 + 254.9966 + 216 + + + + 1 + 330 + 259.8 + + + + GR-NL-G2-1540646227 + -90 + + + 8c0282f9-7de1-41bb-ca78-39fb7da2af85 + + + 1 + 428 + 166 + + + + GR-NL-Line_1-1770209197 + 0 + + + 8ce7df60-0510-5f4c-bcaf-39fb7da2af85 + + + 1 + 763.8 + 204 + + + + 1 + 284 + 156 + + + + 2 + 643.9958 + 88 + + + + 1 + 437.8854 + 204 + + + + 2 + 438 + 99.9 + + + + G-Link-354408421 + 0 + + + 9578ce66-d8aa-97b1-e45e-39fb7da2af86 + + + 1 + 438 + 152 + + + + GR-L-1006053890 + 0 + + + 98c2cd9c-0736-8fab-c7a3-39fb7da2af84 + + + 1 + 160.2 + 132 + + + + 1 + 422.2 + 138 + + + + GR-BE-G2-569000708 + 90 + + + 9a2479b6-0ee9-e1a5-09a4-39fb7da2af85 + + + 3 + 283.2062 + 150.8125 + + + + 1 + 678.0001 + 215.9651 + + + + 2 + 438 + 104 + + + + none + 0 + + + 9b802cf4-9855-cb9a-03ed-39fb7da2af81 + + + 2 + 438 + 138.1 + + + + GR-L-1648984860 + 0 + + + 9ba97fe9-1a9b-62e6-785d-39fb7da2af85 + + + 2 + 437.8854 + 130 + + + + GR-NL-Inj-XZE_ST24-835537239 + -90 + + + 9d9ce49c-954f-930c-fe32-39fb7da2af85 + + + GR-BE-Line_1-1392653407 + 0 + + + 9f3fc709-7799-dc2a-fbc5-39fb7da2af85 + + + GR-NL-Line_4-1027009775 + 0 + + + 9f578172-e608-ca43-3663-39fb7da2af85 + + + 1 + 363.9583 + 244.7396 + + + + 2 + 100 + 190 + + + + 2 + 438 + 247.9 + + + + GR-BE-Inj-XWI_GY11-1033807006 + 90 + + + a1f5fa4a-252b-3a25-dac0-39fb7da2af85 + + + 1 + 260 + 110 + + + + 1 + 583.8 + 148 + + + + none + 0 + + + a40e4afc-2b15-a171-f011-39fb7da2af81 + + + 2 + 336 + 258 + + + + 1 + 444 + 138 + + + + 1 + 581.7 + 134.4 + + + + 1 + 580 + 148 + + + + 1 + 269.875 + 215.6354 + + + + GR-SER-RLC-1230822986-763959145 + 270 + + + ab7515c4-6ca1-5747-fd53-39fb7da2af85 + + + 1 + 447.8 + 100 + + + + 4 + 737.9229 + 215.6354 + + + + 2 + 663.3358 + 113.7708 + + + + 1 + 321.9979 + 129.6474 + + + + none + 0 + + + b2e504c0-348d-7fad-5e09-39fb7da2af81 + + + 2 + 240 + 142 + + + + GR-BE-Line_4-687714713 + 0 + + + b668f530-d16f-498c-fc96-39fb7da2af85 + + + 2 + 438 + 213.9 + + + + 2 + 568 + 134.6 + + + + 1 + 126 + 190 + + + + 2 + 437.8854 + 244 + + + + 1 + 692.624 + 113.9105 + + + + 2 + 737.9229 + 204 + + + + G-Link-354408484 + 0 + + + bb421b7f-ac60-6476-5e51-39fb7da2af86 + + + 2 + 438 + 213.9 + + + + GR-NL-Load_2-199595741 + -90 + + + bff6eeab-84d4-9448-ae75-39fb7da2af85 + + + 2 + 302.7938 + 148 + + + + 2 + 270 + 196 + + + + 1 + 330 + 256 + + + + 1 + 428 + 248 + + + + 2 + 240 + 152 + + + + GR-NL-G3-1272157758 + -90 + + + c6517348-5a20-082a-de47-39fb7da2af85 + + + 1 + 594 + 116 + + + + 4 + 239.9771 + 145.5208 + + + + GR-L-1633734589 + 0 + + + ca9165d3-17dd-6a20-865a-39fb7da2af85 + + + GR-L-1977885975 + 0 + + + cbb01f94-c042-6779-07fb-39fb7da2af85 + + + 1 + 164 + 132 + + + + 2 + 438 + 240 + + + + 1 + 424.2 + 166 + + + + 1 + 447.8 + 138 + + + + 2 + 737.9229 + 191.8229 + + + + 2 + 180 + 132 + + + + 1 + 322 + 158 + + + + 1 + 583.8 + 166 + + + + 1 + 447.8 + 166 + + + + 1 + 438 + 140 + + + + 2 + 438 + 158 + + + + 3 + 720.7014 + 181.2396 + + + + 3 + 200.1557 + 215.6354 + + + + 1 + 343.9583 + 244.7396 + + + + 1 + 136 + 190 + + + + 1 + 659.8 + 88 + + + + 1 + 757.8 + 244 + + + + GR-L-633459252 + 0 + + + d49995f0-556b-74c3-59fe-39fb7da2af84 + + + 1 + 573.9 + 134.4 + + + + 1 + 100 + 210 + + + + GR-L-1522016781 + 0 + + + d77f1c30-229e-7304-d55b-39fb7da2af84 + + + 4 + 179.9167 + 109.9902 + + + + GR-BE-TR2_1-1574014072 + 90 + + + d7ac5983-b49d-5ce2-f8e1-39fb7da2af85 + + + 2 + 720.7014 + 114.0501 + + + + 2 + 162.7188 + 190 + + + + 2 + 367.7708 + 244 + + + + GR-L-2070108204 + 0 + + + d9d4abdd-1ed5-376b-225f-39fb7da2af85 + + + 2 + 717.9335 + 216.0349 + + + + 1 + 763.8 + 244 + + + + 4 + 321.9979 + 109.8021 + + + + 1 + 738 + 260 + + + + 1 + 321.4688 + 261.8542 + + + + none + 0 + + + e18b4ed3-593d-5edb-d42d-39fb7da2af81 + + + 2 + 335.7563 + 244 + + + + 1 + 336 + 188 + + + + 4 + 179.9167 + 215.6354 + + + + GR-NL-Load_3-631391046 + -90 + + + e2bb743e-aba7-e510-d8ca-39fb7da2af84 + + + 1 + 220 + 216 + + + + 2 + 661.1736 + 215.9651 + + + + GR-NL-Line_5-1375941741 + 0 + + + e336f788-fbfd-0176-4249-39fb7da2af85 + + + GR-L-958549789 + 0 + + + e47c3a1d-aa70-88a7-0f40-39fb7da2af85 + + + GR-L-1691614453 + 0 + + + e52f38e1-6db7-40f8-5831-39fb7da2af85 + + + GR-L-476899861 + 0 + + + e649a5a2-5270-f047-0550-39fb7da2af85 + + + 1 + 269.875 + 234.1563 + + + + 3 + 270 + 182 + + + + none + 0 + + + e7470557-0f67-c8e9-e796-39fb7da2af80 + + + 2 + 568 + 84.5 + + + + 1 + 78.2 + 190 + + + + 1 + 442 + 214 + + + + 2 + 644 + 263.2603 + + + + 1 + 84 + 190 + + + + GR-BE-Line_5-1020037632 + 0 + + + eeadbd0c-bd85-8d39-a0ea-39fb7da2af86 + + + 2 + 210.0364 + 110 + + + + none + 0 + + + f2161998-0632-ac5d-7e98-39fb7da2af81 + + + 2 + 322 + 166 + + + + GR-L-805648696 + 0 + + + f48a3c56-8e3e-aca3-88f6-39fb7da2af85 + + + GR-NL-Inj-XCA_AL11-385950181 + -90 + + + f493dd76-d32f-d501-eba1-39fb7da2af84 + + + 1 + 604 + 116.1 + + + + GR-L-52575670 + 0 + + + fa169583-ce02-9c1b-27c3-39fb7da2af84 + + + GR-L-254699869 + 0 + + + fc229451-1303-82d9-aabc-39fb7da2af84 + + + 1 + 169.7 + 86 + + + + GR-BE-Line_3-1247633054 + 0 + + + fc9bd44d-54d6-eca6-0ba7-39fb7da2af85 + + + 2 + 568 + 116 + + + + + + 1 + 308.1 + 202.8 + + + + GR-L-1230804819-2080259393 + 0 + + + 00334e12-b4f3-5716-f898-39fc10f99da8 + + + GR-NL-G2-1874813721 + -90 + + + 005021df-2e47-777c-c1e7-39fc10f99daa + + + 1 + 241.5 + 124.4 + + + + 1 + 406.1354 + 266.7082 + + + + none + 0 + + + 00f70bcb-3e6c-1c84-3a2a-39fc10f99da8 + + + 2 + 120.1 + 136.8 + + + + 1 + 329.5 + 230.4 + + + + 4 + 381 + 244.7396 + + + + 1 + 274 + 216 + + + + 2 + 616 + 206 + + + + 1 + 120.1 + 148.8 + + + + GR-BE_Breaker_10-35012999 + 90 + + + 01c6b31f-aa3f-b21d-e53c-39fc10f99da8 + + + 2 + 240 + 142 + + + + 1 + 318 + 231 + + + + GR-L-1608961504 + 0 + + + 02114dca-76f7-124b-157c-39fc10f99da9 + + + GR-L-1556730743 + 0 + + + 02a71b41-f5e7-f001-d6eb-39fc10f99da7 + + + none + 0 + + + 03180e66-9f2d-6420-f761-39fc10f99da4 + + + 1 + 305.5 + 230.4 + + + + GR-BE-Line_4-1062505759 + 0 + + + 039d2619-9f60-1ce7-3a89-39fc10f99daa + + + 1 + 644 + 180.3 + + + + 1 + 250 + 110 + + + + none + 0 + + + 03fc1920-e70b-524c-a7f2-39fc10f99da8 + + + 1 + 483.3937 + 258.4 + + + + 2 + 401.5 + 150.4 + + + + 2 + 356 + 124 + + + + 2 + 311.5 + 162.4 + + + + 2 + 363.5 + 230.4 + + + + GR-BE-TR2_3-419525394 + 90 + + + 0635ab43-3ac3-8775-936b-39fc10f99daa + + + 1 + 250 + 210 + + + + GR-BE-TR2_2-356084595 + 90 + + + 06558b2b-aea5-3505-0524-39fc10f99da9 + + + 2 + 120.1 + 202.8 + + + + GR-L-373414114 + 0 + + + 06f387e4-3f1b-081c-87d5-39fc10f99daa + + + 1 + 316.1 + 202.8 + + + + none + 0 + + + 06fd4364-56ec-d0dc-6795-39fc10f99da8 + + + GR-L-1538410300 + 0 + + + 078c88e7-a150-edc5-2181-39fc10f99da7 + + + 1 + 420.1 + 256.8 + + + + 1 + 360.1 + 212.8 + + + + 1 + 568 + 176.5 + + + + 1 + 350 + 204 + + + + 1 + 180 + 238 + + + + 2 + 314.8542 + 247.3854 + + + + GR-L-122721049 + 0 + + + 09375380-aa4e-855a-6e1b-39fc10f99daa + + + 2 + 145.5 + 180.4 + + + + GR-BE_S2-1430793357 + 90 + + + 09f60baa-abc9-f497-e443-39fc10f99da5 + + + 1 + 381 + 238.125 + + + + 1 + 426 + 138 + + + + none + 0 + + + 0a57a674-58e9-0661-e604-39fc10f99da4 + + + GR-BE-TR2_1-2017844582 + 90 + + + 0a6d141b-715c-3e5e-eaed-39fc10f99daa + + + 1 + 483.5 + 138.4 + + + + GR-BE-Line_5-1231550614 + 0 + + + 0b20451a-dcf7-b8dd-6371-39fc10f99daa + + + GR-L-1770078348 + 0 + + + 0b71568c-e4c2-dcef-be67-39fc10f99da7 + + + GR-NL-TR2_1-829109738 + -89.5 + + + 0bdb155f-eb23-ca2f-c5bd-39fc10f99da9 + + + GR-BE-Load_2-26861723 + 90 + + + 0c2bf7c6-8467-8056-9a8b-39fc10f99da4 + + + none + 0 + + + 0cc5bffe-10b3-5e09-ada4-39fc10f99da4 + + + 2 + 322 + 110 + + + + 1 + 356.1 + 112.8 + + + + GR-L-196199007 + 0 + + + 0e5af00b-9c35-c4fb-5017-39fc10f99da7 + + + 2 + 644 + 116 + + + + 2 + 285.5 + 166.4 + + + + 1 + 391.5 + 218.4 + + + + 1 + 256 + 131.2 + + + + GR-L-144407520 + 0 + + + 10161036-db61-9b10-5519-39fc10f99da4 + + + 2 + 284 + 110 + + + + GR-L-465039689 + 0 + + + 104159f3-66f8-01ed-a60d-39fc10f99daa + + + 1 + 658 + 216 + + + + 3 + 409.7326 + 257.9688 + + + + none + 0 + + + 10b8669b-6eb6-2e2b-f3ea-39fc10f99da8 + + + 1 + 236.1 + 154.8 + + + + 3 + 383.2452 + 257.9688 + + + + 1 + 678 + 216 + + + + GR-NL-Line_5-148057063 + 0 + + + 118692fa-2b8f-daff-5f3d-39fc10f99daa + + + 1 + 373.5 + 230.4 + + + + 2 + 362.5539 + 244.7396 + + + + 1 + 345.6 + 160.1 + + + + 2 + 318 + 237 + + + + none + 0 + + + 123214fa-5d77-5929-f71f-39fc10f99da6 + + + 2 + 738 + 216.1 + + + + none + 0 + + + 12fda66d-889b-f02c-75a9-39fc10f99da8 + + + GR-BE_Breaker_5-1123996046 + 90 + + + 1366107c-990b-f72d-d66b-39fc10f99da5 + + + 2 + 568 + 129.9 + + + + 2 + 748.9 + 143.9 + + + + 2 + 358.5104 + 235.4792 + + + + GR-L-1926445802 + 0 + + + 14172afc-b2cb-5500-b944-39fc10f99da7 + + + 2 + 326.1 + 149.6 + + + + GR-L-1293699286 + 0 + + + 147fefb7-5d02-04ee-565a-39fc10f99da9 + + + GR-NL_BREAKER_4-732324671 + 90 + + + 1488b23f-cc27-158c-242b-39fc10f99da9 + + + 1 + 308.1 + 240.8 + + + + 1 + 356 + 136 + + + + 3 + 276.9733 + 181.2396 + + + + GR-L-1597761217 + 0 + + + 15d52275-0b9d-4798-3e90-39fc10f99da9 + + + none + 0 + + + 16a89408-4520-4fad-f074-39fc10f99da8 + + + 1 + 360 + 200 + + + + GR-L-429299186 + 0 + + + 16f1b441-71bf-170e-15ca-39fc10f99da4 + + + 1 + 298.1 + 198.8 + + + + 1 + 190 + 216 + + + + 1 + 445.8 + 214 + + + + GR-NL-G3-18037631 + -90 + + + 18010937-7fc9-2cbe-c1f5-39fc10f99da7 + + + GR-L-825612596 + 0 + + + 184270bc-5268-0c48-aa53-39fc10f99da5 + + + GR-CIRCB-1230992249-1074301810 + 90 + + + 190d9bc8-bbb8-6dd3-5fb2-39fc10f99da9 + + + G-Link-356885633 + 0 + + + 191547d2-3f4e-baf8-f970-39fc10f99da6 + + + 1 + 243.5 + 230.4 + + + + GR-L-1373312335 + 0 + + + 19dd957c-1343-44b3-23b4-39fc10f99da5 + + + 1 + 293 + 156 + + + + GR-CIRCB-1230991526-1267186163 + 270 + + + 1a1bc172-cdd0-4757-ec09-39fc10f99da4 + + + 1 + 146 + 190 + + + + 1 + 332 + 234 + + + + 1 + 318 + 156 + + + + 2 + 738 + 244 + + + + none + 0 + + + 1b4f493f-713f-db09-08c2-39fc10f99da6 + + + 1 + 328 + 216 + + + + 1 + 367.5 + 180.4 + + + + 1 + 447.8 + 100 + + + + 1 + 230.1 + 126.8 + + + + GR-L-1642165487 + 0 + + + 1c5649f2-15d9-0c12-7f46-39fc10f99daa + + + 1 + 285.5 + 169.4 + + + + 1 + 262.1 + 144.8 + + + + GR-L-1705110502 + 0 + + + 1cc910b8-c430-5b06-7fd4-39fc10f99daa + + + GR-L-1233793532 + 0 + + + 1cef689a-5572-3253-e788-39fc10f99da4 + + + 1 + 614 + 116.2 + + + + 2 + 425.6693 + 258.4 + + + + GR-BE-Inj-XWI_GY11-786883407 + 90 + + + 1d4aea30-0877-4ce4-f18c-39fc10f99da8 + + + GR-CIRCB-1230992174-2113095994 + 90 + + + 1d7e1389-0c79-9d62-22fa-39fc10f99daa + + + 2 + 438 + 166 + + + + 2 + 326.7604 + 253.2182 + + + + 2 + 120.1 + 154.8 + + + + 2 + 568 + 147.9 + + + + none + 0 + + + 1f2ee65e-a642-462a-fdd9-39fc10f99da6 + + + GR-L-525741817 + 0 + + + 1f6d91ce-0eab-0720-0823-39fc10f99daa + + + 1 + 292 + 110 + + + + 1 + 322 + 158 + + + + GR-BE-Line_7-1526624498 + 0 + + + 2051adbd-f27d-9200-e670-39fc10f99da5 + + + 1 + 367.5 + 172.4 + + + + none + 0 + + + 208025f3-61e8-54f7-f3d6-39fc10f99da4 + + + 2 + 438 + 94 + + + + 1 + 282 + 234 + + + + 2 + 644 + 88 + + + + 1 + 431.2 + 167.2 + + + + GR-L-1590697942 + 0 + + + 22033e4b-85cc-db29-4ba0-39fc10f99da5 + + + GR-CIRCB-1230992192-1632580458 + 90 + + + 2235dd8c-73a7-3885-1fc6-39fc10f99da7 + + + 2 + 270 + 216 + + + + GR-L-708321500 + 0 + + + 2369e793-3cd1-d51d-7c04-39fc10f99da7 + + + 1 + 438 + 198 + + + + GR-L-1260364722 + 0 + + + 24142b65-dfcf-247c-888a-39fc10f99da9 + + + GR-BE-Line_2-2078706704 + 0 + + + 24226800-a9ed-29bd-4ec7-39fc10f99da5 + + + GR-BE-Inj-XKA_MA11-1410070492 + 90 + + + 244a18fd-95ad-2fbe-89fb-39fc10f99daa + + + 2 + 644 + 152.8 + + + + 1 + 329.5 + 246.4 + + + + GR-L-1557823234 + 0 + + + 2483ab97-c0a8-b880-4738-39fc10f99daa + + + GR-NL_BREAKER_1-1287044078 + 90 + + + 2485c775-516d-cb24-19af-39fc10f99da7 + + + GR-L-1460654067 + 0 + + + 2489b105-c1bc-7972-7b8b-39fc10f99da9 + + + 1 + 346 + 204 + + + + 2 + 644 + 216.1 + + + + 2 + 329.5 + 248.4 + + + + 2 + 240 + 148.1 + + + + 2 + 326.1 + 84.8 + + + + 1 + 263.5 + 134.4 + + + + 1 + 314 + 156 + + + + 1 + 758 + 244 + + + + GR-NL_BREAKER_3-1728568693 + 90 + + + 28724e67-85f1-b222-481d-39fc10f99daa + + + 1 + 385.5 + 144.4 + + + + 1 + 369.5 + 248.4 + + + + GR-NL-TR2_1-1955824672 + -89.5 + + + 2902d987-039c-66db-d8d8-39fc10f99da7 + + + 1 + 329.5 + 248.4 + + + + 3 + 738.4 + 143.9 + + + + none + 0 + + + 2939db02-8135-3895-c204-39fc10f99da8 + + + none + 0 + + + 297e7107-2991-fa24-e66b-39fc10f99da6 + + + none + 0 + + + 299ae77c-9674-b0da-9cb0-39fc10f99da4 + + + 3 + 335.3798 + 253.2182 + + + + 2 + 120.1 + 236.8 + + + + 1 + 284 + 148 + + + + 1 + 381.5 + 202.4 + + + + 1 + 399.9 + 212.9 + + + + 1 + 120.1 + 120.8 + + + + 1 + 550 + 94 + + + + GR-L-1976101972 + 0 + + + 2bcd2d0c-aa41-66a7-fc2e-39fc10f99daa + + + GR-NL-G2-815968219 + -90 + + + 2bf80f37-526d-e531-71fc-39fc10f99da7 + + + GR-BE-Inj-XCA_AL11-431878571 + 90 + + + 2bfb2cf9-57b2-4192-ae20-39fc10f99da9 + + + GR-L-513913700 + 0 + + + 2c49a451-0f34-eb0b-4962-39fc10f99da8 + + + 1 + 295.5 + 238.4 + + + + 1 + 674 + 116 + + + + GR-CIRCB-1230991736-1150308873 + 90 + + + 2ce5c698-af01-f2bd-c492-39fc10f99da9 + + + 2 + 120.1 + 166.8 + + + + 1 + 428 + 248 + + + + GR-NL-Line_1-1263765796 + 0 + + + 2d9edc5e-9721-1c0d-ab77-39fc10f99daa + + + 2 + 218 + 110 + + + + none + 0 + + + 2f55c56a-284c-0a43-2b84-39fc10f99da8 + + + 1 + 298.1 + 236.8 + + + + GR-L-1724199943 + 0 + + + 30486768-1292-11aa-e823-39fc10f99da7 + + + 2 + 398.1 + 106.8 + + + + GR-L-1914853851 + 0 + + + 3094bff5-5642-a8eb-06df-39fc10f99da9 + + + GR-L-1292777021 + 0 + + + 3112f3e2-7e2d-d4d9-c465-39fc10f99daa + + + 1 + 369.5 + 264.4 + + + + 2 + 263.5 + 124.4 + + + + GR-BE_Breaker_12-485990510 + 90 + + + 31a10ef8-37c2-21cf-2379-39fc10f99da9 + + + G-Link-356885183 + 0 + + + 31f59ac8-f7b3-c2c0-e126-39fc10f99daa + + + 1 + 310 + 156 + + + + 1 + 437.8854 + 244 + + + + 2 + 329.5 + 124.4 + + + + 1 + 357.3438 + 244.7396 + + + + 2 + 568 + 94.1 + + + + 2 + 326.1 + 240.7 + + + + 1 + 483.5 + 218.4 + + + + 2 + 662 + 116 + + + + none + 0 + + + 335c29ec-c40b-a8ca-31cf-39fc10f99da4 + + + none + 0 + + + 33eb422c-848d-c32e-a790-39fc10f99da8 + + + GR-L-1090879252 + 0 + + + 344d1b06-3d22-1e06-0151-39fc10f99da7 + + + 1 + 126 + 190 + + + + 1 + 698 + 216 + + + + 1 + 401.5 + 138.4 + + + + 2 + 225.5 + 230.4 + + + + 2 + 180 + 132 + + + + GR-L-8136266 + 0 + + + 3673ab87-2b69-4fa4-e478-39fc10f99da8 + + + 2 + 367.5 + 124.4 + + + + GR-L-1348862851 + 0 + + + 371b72be-a0f7-3bce-c64e-39fc10f99da9 + + + GR-BE-Line_3-39937983 + 0 + + + 3722da1c-32c9-ea77-5a73-39fc10f99daa + + + 1 + 329.5 + 178.4 + + + + 2 + 322 + 156 + + + + GR-L-1014928263 + 0 + + + 37fdeb74-a180-c690-3b11-39fc10f99da6 + + + none + 0 + + + 38038f93-e783-8c2b-9444-39fc10f99da6 + + + 1 + 275.5 + 230.4 + + + + 1 + 191.5 + 204.4 + + + + GR-L-177215107 + 0 + + + 39b4dba1-6e62-bf93-4fa3-39fc10f99daa + + + GR-CIRCB-1230991718-511018887 + 90 + + + 3a85a9d0-3994-9187-ac94-39fc10f99da5 + + + 1 + 323.5 + 230.4 + + + + 2 + 218 + 110 + + + + G-Link-356885584 + 0 + + + 3abc048a-6555-f344-a38a-39fc10f99da6 + + + 2 + 305.8583 + 156 + + + + GR-NL-Inj-XKA_MA11-1446471745 + -90 + + + 3b02fd92-c6bd-8fdf-b418-39fc10f99da9 + + + GR-L-542806539 + 0 + + + 3b44f588-4c63-915d-d14f-39fc10f99da5 + + + GR-L-794533391 + 0 + + + 3b5e4b6d-20f6-545b-8631-39fc10f99da7 + + + 2 + 180 + 190 + + + + GR-L-9901528 + 0 + + + 3c1d2440-cb45-39b4-440b-39fc10f99da9 + + + 2 + 270 + 172 + + + + GR-L-1117404304 + 0 + + + 3d547fd2-267c-c598-4221-39fc10f99daa + + + 2 + 266 + 148 + + + + GR-L-891225100 + 0 + + + 3d9a1c76-fc93-6383-a0a0-39fc10f99daa + + + 1 + 284 + 216 + + + + GR-L-1784863818 + 0 + + + 3e202977-9443-8ff5-b227-39fc10f99da7 + + + 1 + 630 + 206 + + + + 1 + 356 + 130 + + + + 1 + 630 + 244 + + + + 2 + 329.5 + 124.4 + + + + 2 + 367.5 + 100.4 + + + + 2 + 346.1 + 212.8 + + + + 2 + 438 + 216 + + + + GR-L-43618804 + 0 + + + 40407f49-dae9-d919-384b-39fc10f99da8 + + + 3 + 335.7563 + 247.3854 + + + + 1 + 552 + 130 + + + + 2 + 356 + 88 + + + + 1 + 554 + 94 + + + + GR-L-1223448061 + 0 + + + 40afb2a5-e471-764e-5a85-39fc10f99daa + + + 2 + 315.5 + 186.4 + + + + 1 + 428 + 166 + + + + GR-busbarcoupler 1-1012598411 + -1.2 + + + 417ceeba-c8f5-a5b1-7d25-39fc10f99daa + + + 2 + 180 + 76 + + + + none + 0 + + + 42342a6a-b588-2cb6-e16b-39fc10f99da4 + + + 1 + 405.5 + 222.4 + + + + 1 + 351.5 + 166.4 + + + + 2 + 534 + 158 + + + + 1 + 267.7 + 166.4 + + + + 2 + 284 + 214 + + + + 1 + 337.5 + 124.4 + + + + G-Link-356885354 + 0 + + + 438f0e17-d5bc-03c8-c284-39fc10f99dab + + + 2 + 358.5104 + 245.3229 + + + + GR-L-1864264068 + 0 + + + 43a9c2b8-abf1-76f7-1f3d-39fc10f99da5 + + + 2 + 250 + 216 + + + + 1 + 319.5 + 230.4 + + + + 1 + 206 + 224 + + + + 2 + 392.1 + 212.9 + + + + 1 + 536 + 90 + + + + none + 0 + + + 447c60d0-632e-de6c-d07e-39fc10f99da4 + + + GR-L-559158381 + 0 + + + 44a3c9e0-111b-a64b-c339-39fc10f99daa + + + GR-L-170854790 + 0 + + + 44e061bf-e429-e654-aee0-39fc10f99da9 + + + 2 + 438 + 124 + + + + 2 + 284 + 236 + + + + 1 + 391.5 + 108.4 + + + + 2 + 120.1 + 90.8 + + + + 1 + 120.1 + 247 + + + + GR-L-479069864 + 0 + + + 46047e9e-1e6a-0af8-d3e8-39fc10f99da7 + + + GR-NL-G3-308158943 + -90 + + + 46547e47-1443-49c1-131c-39fc10f99daa + + + 1 + 252 + 148 + + + + 2 + 425.9792 + 252.6771 + + + + none + 0 + + + 4713f3d1-0201-42cc-9cb4-39fc10f99da7 + + + 2 + 205.5 + 198.4 + + + + 1 + 650 + 216 + + + + 2 + 318 + 216 + + + + 1 + 228.1 + 154.8 + + + + 2 + 483.5 + 172.4 + + + + none + 0 + + + 47ff5b36-76aa-a6b4-aef5-39fc10f99da8 + + + GR-L-1458467816 + 0 + + + 48281318-a308-873b-be0c-39fc10f99da9 + + + 1 + 650 + 116 + + + + 1 + 355 + 100.4 + + + + 1 + 445.9 + 200.8 + + + + 1 + 225.5 + 252.4 + + + + 2 + 318 + 216 + + + + 2 + 326.1 + 202.8 + + + + 1 + 181.5 + 204.4 + + + + 2 + 322.526 + 162.4 + + + + GR-L-92824994 + 0 + + + 4a0efeee-93bb-774a-1389-39fc10f99daa + + + 1 + 164 + 132 + + + + 2 + 663.5 + 182.3 + + + + GR-L-61551962 + 0 + + + 4b00b68c-0cc1-fef3-4c8a-39fc10f99da7 + + + GR-L-2096354637 + 0 + + + 4b6ec43d-b7e5-d438-2208-39fc10f99da8 + + + GR-BE_Breaker_4-10356555 + 90 + + + 4b77a1b0-6e7d-a20f-2cf5-39fc10f99daa + + + none + 0 + + + 4bc09331-bbd9-cd25-1a78-39fc10f99da8 + + + 1 + 160 + 184 + + + + GR-L-979942878 + 0 + + + 4cc24de4-3656-ebfb-a6cc-39fc10f99daa + + + 1 + 583.8 + 166 + + + + GR-L-1999011679 + 0 + + + 4d2bb645-8eb9-d69f-19b3-39fc10f99da9 + + + 1 + 395.5 + 218.4 + + + + GR-NL-Line_2-1375218240 + 0 + + + 4da6229a-f66b-6e91-a7ee-39fc10f99daa + + + 1 + 370.4479 + 244.7396 + + + + 2 + 483.5 + 230.4 + + + + GR-CIRCB-1230992408-1668502453 + 90 + + + 4e088cb4-9e7c-0150-460e-39fc10f99da5 + + + 1 + 316.1 + 240.8 + + + + 1 + 232.1 + 154.8 + + + + 1 + 376.1 + 113 + + + + 1 + 323.5 + 248.4 + + + + 1 + 381.5 + 144.4 + + + + GR-L-1093257539 + 0 + + + 4ff7f580-513c-7afd-27b0-39fc10f99da9 + + + 1 + 340.1 + 212.8 + + + + GR-NL-Load_1-1322566341 + -90 + + + 5042ea9c-27d6-520a-b4ca-39fc10f99da7 + + + 1 + 534 + 158 + + + + GR-L-878485139 + 0 + + + 50c8a0d1-c65f-e195-e6b1-39fc10f99da9 + + + 1 + 416.75 + 257.9688 + + + + none + 0 + + + 5146471e-4691-9775-4ef0-39fc10f99da8 + + + 2 + 381.5 + 230.4 + + + + 3 + 420.1 + 182.8 + + + + MAS BE + + 51bc73a1-777e-8dd1-4566-39fc10f99d9e + + + GR-L-1764137926 + 0 + + + 51d69f76-06e1-8025-84a7-39fc10f99daa + + + 1 + 198 + 216 + + + + 2 + 306 + 160 + + + + 2 + 568 + 84.5 + + + + 1 + 658 + 116 + + + + 2 + 356 + 93.9 + + + + none + 0 + + + 53156808-438a-b955-2e0f-39fc10f99da8 + + + 1 + 722 + 116 + + + + 2 + 218.1 + 96.8 + + + + 1 + 616 + 240 + + + + 2 + 438 + 247.9 + + + + GR-BE_Breaker_5-973824332 + 90 + + + 53e8e73f-e5d0-6249-b2a6-39fc10f99daa + + + 1 + 340 + 130 + + + + 1 + 301.5 + 162.4 + + + + GR-L-1648451472 + 0 + + + 54d5fe1d-112d-8cc7-1854-39fc10f99da5 + + + GR-L-1008211985 + 0 + + + 5502a4f2-a62a-71b3-99f0-39fc10f99daa + + + 2 + 285.5 + 162.5 + + + + 1 + 342 + 94 + + + + 1 + 218.1 + 90.8 + + + + 1 + 384.9688 + 257.9688 + + + + GR-CIRCB-1230991736-1279589578 + 90 + + + 562d6e89-8930-2665-48ff-39fc10f99da4 + + + GR-Bus-356885584 + 0 + + + 5670e7ab-0718-3515-8117-39fc10f99da6 + + + Assembled + + 567edf3a-f070-aa0b-63a9-39fc10f99da7 + + + 1 + 262.1 + 162.8 + + + + GR-NL_BREAKER_1-1592629979 + 90 + + + 5796d0d7-71c8-736a-8d39-39fc10f99da9 + + + 2 + 363.5 + 230.4 + + + + 1 + 644 + 81.3 + + + + GR-L-2006963402 + 0 + + + 581892af-e377-1566-6253-39fc10f99da9 + + + 1 + 236.1 + 90.8 + + + + GR-NL-Inj-XWI_GY11-440951891 + -90 + + + 5838a895-a496-c3ff-0cfb-39fc10f99daa + + + none + 0 + + + 585a1d8e-630f-5a3a-d8d0-39fc10f99da4 + + + 1 + 663.5 + 163.3 + + + + 1 + 169.7 + 86 + + + + 1 + 431.1 + 163.2 + + + + 1 + 358.5104 + 253.479 + + + + GR-L-1548353903 + 0 + + + 590f9f2c-1e58-d386-de8f-39fc10f99da5 + + + 2 + 336 + 258 + + + + GR-L-770570815 + 0 + + + 593c74c4-3424-1da1-5786-39fc10f99daa + + + 2 + 120.1 + 240.8 + + + + GR-L-2133237091 + 0 + + + 59db81c1-e343-104d-9d15-39fc10f99da9 + + + 2 + 438 + 158 + + + + 2 + 295.5 + 230.4 + + + + 2 + 438 + 99.9 + + + + GR-NL_TR2_3-28892839 + -89.2 + + + 5bff939f-95ea-c437-c35c-39fc10f99da9 + + + 2 + 738.4 + 100.1 + + + + GR-NL-Inj-XZE_ST23-1469737826 + -90 + + + 5cefddca-692d-d063-bacb-39fc10f99daa + + + none + 0 + + + 5d46b6f4-6c2a-55c5-e727-39fc10f99da8 + + + 2 + 392.1 + 216.8 + + + + 1 + 84 + 190 + + + + GR-NL-G1-685269184 + -90 + + + 5dcf5b66-48b8-504a-d7c5-39fc10f99daa + + + none + 0 + + + 5e64fbbf-8d7c-dd21-bfd8-39fc10f99da8 + + + 1 + 215.5 + 204.4 + + + + 2 + 381.5 + 218.4 + + + + GR-BE-TR2_3-2038117741 + 90 + + + 5ff0cdbe-33c3-094e-a8ba-39fc10f99da5 + + + GR-L-1813901381 + 0 + + + 604bf54b-948f-fd79-26b3-39fc10f99da4 + + + GR-L-1725618470 + 0 + + + 6053eeac-7ba0-5665-7d36-39fc10f99da9 + + + GR-L-84065218 + 0 + + + 60ce2692-23a7-8f5d-b0a1-39fc10f99da9 + + + 1 + 634 + 206 + + + + GR-L-1491201112 + 0 + + + 61b94510-43ac-10bf-c22e-39fc10f99da4 + + + 2 + 180 + 216 + + + + 1 + 228 + 152 + + + + 1 + 626 + 206 + + + + GR-L-1315321678 + 0 + + + 628007be-120c-0892-16c5-39fc10f99da5 + + + 2 + 218 + 100 + + + + none + 0 + + + 62a91640-9a0a-e460-adb7-39fc10f99da8 + + + 1 + 338 + 94 + + + + 2 + 180 + 216 + + + + GR-L-1929178012 + 0 + + + 6342c065-5d6b-ff31-ca09-39fc10f99da9 + + + 1 + 196 + 110 + + + + none + 0 + + + 63b861c8-34d4-55a5-7784-39fc10f99da6 + + + 1 + 389.5 + 144.4 + + + + 2 + 401.5 + 144.4 + + + + GR-L-454960899 + 0 + + + 64ce5475-9d4e-cb91-8257-39fc10f99da5 + + + 4 + 381.2646 + 257.9688 + + + + 1 + 234.1 + 126.8 + + + + 1 + 297.7 + 210.4 + + + + 1 + 394.9688 + 257.9688 + + + + G-Link-356885637 + 0 + + + 65d9275d-1dc9-405c-d0f6-39fc10f99d9f + + + 1 + 420.75 + 257.9688 + + + + none + 0 + + + 66373e76-2874-f670-5bf3-39fc10f99da4 + + + 1 + 483.5 + 184.4 + + + + none + 0 + + + 664aeeee-0ead-f6fd-dac0-39fc10f99da8 + + + 2 + 344.1 + 104.8 + + + + 2 + 644 + 257.7 + + + + GR-L-882535031 + 0 + + + 6730168b-1b01-6616-f3c9-39fc10f99da7 + + + 1 + 721.8 + 216.1 + + + + GR-L-1312344377 + 0 + + + 68022bbe-07c0-bca8-3816-39fc10f99daa + + + 1 + 329.5 + 162.4 + + + + 2 + 438 + 206 + + + + 1 + 341.9 + 84.8 + + + + 2 + 100 + 190 + + + + GR-L-1619637910 + 0 + + + 68f265bd-3f31-f572-2461-39fc10f99da5 + + + GR-L-1024932587 + 0 + + + 69010536-0282-1236-c6c9-39fc10f99da4 + + + GR-L-800539026 + 0 + + + 695f14df-546d-b4f4-9d4c-39fc10f99da5 + + + none + 0 + + + 6a03ab3b-4400-34ab-eb9a-39fc10f99da6 + + + 1 + 716 + 124 + + + + GR-NL-S1-2064920766 + -90 + + + 6a272462-ba65-81ae-29b9-39fc10f99da7 + + + 1 + 314.8542 + 261.8542 + + + + 1 + 170 + 190 + + + + 1 + 356 + 94 + + + + 1 + 425.9792 + 264.677 + + + + GR-CIRCB-1230992192-825149665 + 90 + + + 6b03d5c1-abff-d54d-366e-39fc10f99da8 + + + GR-L-1770373406 + 0 + + + 6b8b4624-86ce-e291-2bf7-39fc10f99da7 + + + GR-L-65065093 + 0 + + + 6bccff91-74c8-f78f-b65f-39fc10f99daa + + + 1 + 284 + 234 + + + + GR-L-1289827234 + 0 + + + 6bd54595-b507-59f3-eeaa-39fc10f99da9 + + + GR-SerieRLC-356885584 + 270 + + + 6c2cce4d-619c-e3de-b504-39fc10f99da1 + + + none + 0 + + + 6c31831c-2bc2-437f-246d-39fc10f99da8 + + + G-Link-356885643 + 0 + + + 6cb1f642-6e39-0578-9a20-39fc10f99da3 + + + 1 + 274 + 234 + + + + 1 + 604 + 116.1 + + + + none + 0 + + + 6e11ea5f-e48a-a66a-c0d0-39fc10f99da8 + + + GR-L-1527982208 + 0 + + + 6e7c964f-0989-2ccf-7337-39fc10f99da4 + + + 1 + 245.5 + 124.4 + + + + 2 + 483.5 + 144.4 + + + + 2 + 438 + 166 + + + + GR-L-681126068 + 0 + + + 6f067007-fa77-86c0-7a84-39fc10f99da6 + + + none + 0 + + + 6f3b6330-3e5a-c5c0-4e6d-39fc10f99da4 + + + none + 0 + + + 6f3c3182-1961-09ad-a866-39fc10f99da6 + + + GR-L-394286187 + 0 + + + 6f70cccd-45dd-131e-6410-39fc10f99da5 + + + 2 + 662 + 124 + + + + 1 + 366.1 + 112.9 + + + + GR-B1-1200172373 + 180.4 + + + 6ff2e1a5-2c9e-bb34-1110-39fc10f99da7 + + + 1 + 749 + 166.4 + + + + 2 + 205.5 + 204.4 + + + + 1 + 332.1 + 112.8 + + + + 2 + 536 + 100 + + + + 1 + 401.5 + 102.4 + + + + GR-BE_S1-561027924 + 90 + + + 710927d7-0c07-ccea-b9e8-39fc10f99da9 + + + 1 + 662 + 108 + + + + 1 + 205.5 + 210.4 + + + + 1 + 219.5 + 204.4 + + + + 2 + 311.5 + 156.3 + + + + 1 + 546 + 94 + + + + 2 + 180 + 110 + + + + 1 + 218.1 + 86.8 + + + + GR-L-223023684 + 0 + + + 72706e8a-f5c7-cc81-b2a0-39fc10f99da9 + + + GR-L-1860567165 + 0 + + + 7290e384-0522-4f76-0250-39fc10f99da9 + + + GR-L-924674887 + 0 + + + 72a0f141-be06-a173-8896-39fc10f99da7 + + + 4 + 315.3833 + 202.4063 + + + + 4 + 358.5104 + 244.7396 + + + + 1 + 324 + 216 + + + + GR-BE-Inj-XZE_ST24-1298480714 + 90 + + + 7352d5a1-bf3f-1a2a-22cf-39fc10f99da9 + + + GR-L-1291346287 + 0 + + + 7385480d-bfb1-8a43-fb1f-39fc10f99daa + + + none + 0 + + + 741fc374-a623-0394-095e-39fc10f99da8 + + + 2 + 405.5 + 218.4 + + + + 2 + 298.1 + 244.8 + + + + GR-CIRCB-1230992183-1368628500 + 90 + + + 74564e05-4be6-7145-8d91-39fc10f99daa + + + 1 + 634 + 244 + + + + 4 + 311.4146 + 166.6875 + + + + GR-L-1010325905 + 0 + + + 75529453-379a-b48a-0668-39fc10f99daa + + + 1 + 444 + 166 + + + + GR-L-633787648 + 0 + + + 7574c48f-f97f-bbed-4466-39fc10f99da9 + + + none + 0 + + + 75788a8b-5c5e-e95c-ac6b-39fc10f99da8 + + + 2 + 266 + 155.9 + + + + 4 + 335.3798 + 254 + + + + 1 + 346 + 94 + + + + 1 + 359.5 + 170.4 + + + + 2 + 716 + 116 + + + + 1 + 377.5 + 248.4 + + + + GR-BE_Breaker_4-1567739126 + 90 + + + 764e4145-46cb-57f8-b6b1-39fc10f99da5 + + + 1 + 398.1 + 120.8 + + + + 1 + 305.5 + 124.4 + + + + 2 + 738.4 + 115.9 + + + + 2 + 295.5 + 230.4 + + + + none + 0 + + + 768837ca-1cc2-8f0a-0096-39fc10f99da8 + + + 1 + 407.9 + 212.9 + + + + 2 + 318 + 218 + + + + 1 + 273.5 + 166.4 + + + + 1 + 218 + 120 + + + + 2 + 120.1 + 126.8 + + + + none + 0 + + + 7774e0dc-9996-f66a-9b61-39fc10f99da6 + + + 1 + 430 + 214 + + + + 2 + 420.1 + 200.8 + + + + GR-BE-Line_1-157271322 + 0 + + + 78e4067c-9876-97fe-8748-39fc10f99daa + + + 2 + 251.5 + 230.4 + + + + 1 + 216.1 + 154.8 + + + + 1 + 694 + 116.2 + + + + none + 0 + + + 79aa8473-5d91-a221-f938-39fc10f99da8 + + + GR-BE-G1-756286507 + 90 + + + 79fd75a5-b269-712f-bfcc-39fc10f99da8 + + + 1 + 302 + 156 + + + + 1 + 136 + 190 + + + + 2 + 120.1 + 84.8 + + + + 2 + 329.5 + 230.4 + + + + GR-NL-Load_3-158983843 + -90 + + + 7b0a4874-a997-1b2e-e360-39fc10f99da9 + + + 1 + 296.1 + 113 + + + + 1 + 447.8 + 248 + + + + 1 + 240 + 155 + + + + 1 + 232.1 + 90.8 + + + + 1 + 354 + 204 + + + + GR-SER-RLC-1230822986-224492967 + 270 + + + 7c082d75-2d5e-4867-343c-39fc10f99daa + + + 5 + 335.7563 + 254 + + + + GR-L-1522241185 + 0 + + + 7c624d48-aca0-03d9-33f0-39fc10f99da4 + + + GR-CIRCB-1230991544-1358940482 + 90 + + + 7c8d7655-48de-8d6c-5949-39fc10f99da4 + + + 1 + 300 + 110 + + + + 1 + 160.2 + 132 + + + + GR-L-1149456547 + 0 + + + 7ea5ae1a-3567-3fad-b689-39fc10f99da5 + + + GR-L-1868703431 + 0 + + + 7eac9520-0b97-244e-4bd1-39fc10f99da5 + + + 1 + 725.8 + 216.1 + + + + GR-L-1432385497 + 0 + + + 7f6ee618-d8fe-645a-d723-39fc10f99da5 + + + 2 + 205.5 + 204.4 + + + + 2 + 363.5 + 248.4 + + + + GR-L-864290974 + 0 + + + 805a00f0-40d5-b82a-9a88-39fc10f99da9 + + + 1 + 296 + 110 + + + + 1 + 730 + 116 + + + + none + 0 + + + 809747d2-4fb3-0035-0c07-39fc10f99da8 + + + 1 + 145.5 + 224.4 + + + + 1 + 663.5 + 167.3 + + + + 2 + 483.5 + 264.6 + + + + 1 + 616 + 206 + + + + 2 + 360 + 208 + + + + 2 + 145.5 + 204.4 + + + + none + 0 + + + 82a1e367-82df-f6c4-7dcc-39fc10f99da4 + + + 2 + 326.1 + 112.8 + + + + 2 + 381.5 + 248.4 + + + + GR-L-1825689888 + 0 + + + 8328a113-b787-14f6-6626-39fc10f99daa + + + none + 0 + + + 83634d89-092f-cd1e-57aa-39fc10f99da8 + + + GR-L-1639924301 + 0 + + + 83ae37fc-54ff-ff5b-e134-39fc10f99da7 + + + 2 + 662 + 115.9 + + + + none + 0 + + + 8400d26d-e85c-3b00-8373-39fc10f99da4 + + + none + 0 + + + 8432828e-df71-6cac-481e-39fc10f99da8 + + + 2 + 568 + 116 + + + + 1 + 301.5 + 210.4 + + + + 2 + 383.2452 + 257.9688 + + + + 1 + 664 + 208 + + + + 2 + 344.1 + 112.7 + + + + GR-BE-G2-179679877 + 90 + + + 866e3437-180a-6695-6ab6-39fc10f99da4 + + + 2 + 405.5 + 218.4 + + + + none + 0 + + + 8737351e-d3ab-156b-4e04-39fc10f99da6 + + + 2 + 367.5 + 92.4 + + + + none + 0 + + + 87d0109a-27d7-c671-653b-39fc10f99da4 + + + 1 + 256 + 196 + + + + 2 + 664 + 224 + + + + 1 + 401.5 + 108.4 + + + + GR-L-134225412 + 0 + + + 880bab8f-eed0-151e-edfb-39fc10f99daa + + + 1 + 726 + 116 + + + + 1 + 340.1 + 112.8 + + + + 1 + 656 + 88 + + + + 1 + 256 + 216 + + + + 2 + 322 + 86 + + + + GR-L-1413005679 + 0 + + + 8941f848-7295-092e-76a7-39fc10f99da7 + + + 2 + 381.5 + 272.4 + + + + 2 + 180 + 190 + + + + none + 0 + + + 8a1db7d2-3d05-3c9b-585b-39fc10f99da6 + + + 1 + 344.1 + 120.8 + + + + GR-L-1314624569 + 0 + + + 8a9f4bec-9cf3-e54b-7d4e-39fc10f99daa + + + 1 + 399.5 + 218.4 + + + + 1 + 265.9 + 144.8 + + + + 1 + 309.5 + 86 + + + + 1 + 654 + 216 + + + + 1 + 544 + 130 + + + + GR-NL_BREAKER_1-2124205365 + 90 + + + 8c33c34d-94d3-19b5-4510-39fc10f99da7 + + + 2 + 145.5 + 204.4 + + + + GR-BE-Line_3-1460682024 + 0 + + + 8ceb370b-8459-9921-8525-39fc10f99da5 + + + GR-L-674506850 + 0 + + + 8ceb73b9-67ae-b324-6a39-39fc10f99da9 + + + 3 + 738 + 186 + + + + 1 + 284 + 104 + + + + 4 + 425.9792 + 257.9688 + + + + 2 + 336 + 216 + + + + none + 0 + + + 8dec6153-eef6-17a4-d5c8-39fc10f99da6 + + + 1 + 222.2 + 152 + + + + 2 + 664 + 216 + + + + 1 + 171.5 + 204.4 + + + + 1 + 301.7 + 86 + + + + 1 + 710 + 220 + + + + none + 0 + + + 8efd4dee-e71e-fccb-943c-39fc10f99da6 + + + 1 + 573.9 + 134.4 + + + + 2 + 367.5 + 108.3 + + + + 1 + 422.2 + 100 + + + + 2 + 298.1 + 202.8 + + + + GR-BE_Breaker_12-1023172800 + 90 + + + 90364a95-bb72-fe9b-834d-39fc10f99da5 + + + GR-L-775229306 + 0 + + + 90f1e74b-b85e-60e2-7ee3-39fc10f99da5 + + + 1 + 278 + 216 + + + + 1 + 442.1 + 112.8 + + + + GR-NL_BREAKER_3-1303243245 + 90 + + + 913121e4-8555-53d9-76de-39fc10f99da7 + + + 1 + 315.5 + 260.4 + + + + 2 + 270 + 216 + + + + 2 + 345.6 + 139 + + + + 1 + 369.5 + 268.2 + + + + GR-CIRCB-1230992240-202032439 + 90 + + + 9225e49a-e489-e49b-9a42-39fc10f99da9 + + + 2 + 322 + 93.9 + + + + GR-L-1230804819-1483064846 + 0 + + + 926259e3-d89f-7dc5-4843-39fc10f99da5 + + + GR-NL-G1-1573507275 + -90 + + + 9273fac1-a16c-f14c-7e2f-39fc10f99da7 + + + GR-L-1644421859 + 0 + + + 92c42a38-73d1-7094-9488-39fc10f99da5 + + + 1 + 326.1 + 254.5 + + + + G-Link-356885688 + 0 + + + 93320d81-d397-efca-c06a-39fc10f99da6 + + + 2 + 250.1 + 112.8 + + + + 1 + 442 + 214 + + + + 1 + 438 + 88 + + + + none + 0 + + + 94df16b5-962f-4b2a-4a86-39fc10f99da6 + + + 1 + 282 + 216 + + + + 2 + 420.5 + 112.7 + + + + GR-L-1318677571 + 0 + + + 95277349-0b59-c417-7521-39fc10f99da7 + + + 2 + 438 + 247.9 + + + + 2 + 644 + 206 + + + + GR-CIRCB-1230992249-1264158611 + 90 + + + 961f6e6c-4492-9396-d58f-39fc10f99da7 + + + none + 0 + + + 96201083-6e9a-c2af-ec78-39fc10f99da7 + + + 2 + 315.5 + 230.4 + + + + 2 + 318 + 234 + + + + GR-NL_TR2_2-1229360518 + -89.8 + + + 96dc0000-eb9f-505e-3462-39fc10f99daa + + + GR-BE-Load_1-534360930 + 90 + + + 9770a736-d91d-e846-25e0-39fc10f99da5 + + + 1 + 240 + 216 + + + + 1 + 220 + 216 + + + + 1 + 422.2 + 138 + + + + GR-BE_Breaker_10-1057986510 + 90 + + + 986b8d49-1a24-e0cb-ae38-39fc10f99da5 + + + none + 0 + + + 986f86ca-4f0c-6cf7-1d95-39fc10f99da4 + + + 1 + 314.8542 + 251.3542 + + + + 2 + 160 + 190 + + + + 2 + 616 + 248 + + + + none + 0 + + + 9905b805-e631-ec17-be5c-39fc10f99da4 + + + 2 + 284 + 234 + + + + 2 + 420.5 + 112.7 + + + + 2 + 100 + 166 + + + + 2 + 322 + 130 + + + + 1 + 129.5 + 204.4 + + + + 2 + 225.5 + 146.4 + + + + 1 + 216.1 + 126.8 + + + + GR-BE-TR3_1-1438987997 + 90 + + + 99ee828e-5ad4-15d5-e11a-39fc10f99da5 + + + 2 + 420.1 + 212.9 + + + + 1 + 311.5 + 170.3 + + + + G-Link-356885159 + 0 + + + 9a776e7c-4d62-e216-ce70-39fc10f99dab + + + GR-L-728219614 + 0 + + + 9a78279f-3bfb-5f1e-f780-39fc10f99da7 + + + GR-BE-Line_6-190570734 + 0 + + + 9b2ac1bb-a9ce-6d53-bbb9-39fc10f99da5 + + + GR-BE-TR3_1-1444572962 + 90 + + + 9bc101ae-3667-d13d-ca57-39fc10f99da8 + + + 1 + 223 + 100.4 + + + + GR-BE_Breaker_2-1620562747 + 90 + + + 9be0244d-0121-3b1c-0292-39fc10f99da9 + + + GR-L-2088193559 + 0 + + + 9c116e27-56d8-6c64-59b8-39fc10f99da5 + + + 2 + 663.5 + 142.2 + + + + 2 + 216.1 + 148.8 + + + + 1 + 408.1 + 112.8 + + + + none + 0 + + + 9d11d807-055d-ab4e-9409-39fc10f99da3 + + + GR-CIRCB-1230992183-246537540 + 90 + + + 9d35d2eb-fb19-c8b4-72d4-39fc10f99da7 + + + 1 + 438 + 140 + + + + 2 + 483.5 + 102.4 + + + + GR-L-556173411 + 0 + + + 9de5d006-094a-696a-160f-39fc10f99da5 + + + 1 + 205.7 + 146.4 + + + + GR-L-1214415496 + 0 + + + 9df7d042-704b-3cd9-6870-39fc10f99da9 + + + 1 + 748.9 + 162.4 + + + + 1 + 445.9 + 240.8 + + + + 2 + 568 + 134.6 + + + + GR-L-1666204005 + 0 + + + 9f991bd7-ff43-e7a8-1586-39fc10f99da9 + + + 2 + 306 + 156 + + + + 1 + 366.4479 + 244.7396 + + + + 1 + 426 + 100 + + + + GR-L-786288454 + 0 + + + a084929f-f8d3-1416-7417-39fc10f99da6 + + + none + 0 + + + a1089c7e-ed51-a2a5-908f-39fc10f99da8 + + + 1 + 347.3438 + 244.7396 + + + + 2 + 318 + 234 + + + + 1 + 326.7604 + 255.3229 + + + + GR-L-892621737 + 0 + + + a19d77fd-780c-ad99-20d5-39fc10f99da9 + + + 2 + 270 + 196 + + + + 1 + 278 + 234 + + + + 2 + 536 + 94 + + + + none + 0 + + + a253fbaa-6bea-7a50-3ddd-39fc10f99da4 + + + 1 + 431 + 159.2 + + + + 2 + 344.1 + 112.8 + + + + GR-L-819110417 + 0 + + + a332ff16-d941-e1eb-bb01-39fc10f99da7 + + + GR-BE-Line_4-223929491 + 0 + + + a3463264-c870-9f23-b06d-39fc10f99da6 + + + 1 + 285.5 + 124.4 + + + + GR-CIRCB-1230992276-1807435315 + 90 + + + a3e810bd-2624-2cab-ee07-39fc10f99da4 + + + 1 + 580 + 166 + + + + none + 0 + + + a51732eb-c100-7047-7d8a-39fc10f99da4 + + + 2 + 568 + 158 + + + + 1 + 249.5 + 124.4 + + + + 1 + 293.5 + 162.4 + + + + 2 + 216.1 + 154.8 + + + + 1 + 120.1 + 100.8 + + + + 1 + 100 + 210 + + + + 1 + 594 + 116 + + + + 1 + 344 + 130 + + + + GR-L-1987997764 + 0 + + + a69b7209-73b3-0f28-3443-39fc10f99daa + + + 2 + 738.4 + 115.9 + + + + 1 + 326.7604 + 259.3229 + + + + GR-CIRCB-1230992240-1599376891 + 90 + + + a73e7e18-91de-f478-692f-39fc10f99da7 + + + 2 + 363.5 + 251.4 + + + + 1 + 235.5 + 230.4 + + + + 2 + 534 + 164 + + + + GR-NL-Load_1-799543061 + -90 + + + a7c957d3-64eb-ea4a-ddfa-39fc10f99daa + + + 2 + 284 + 110 + + + + GR-NL-Line_4-1715143339 + 0 + + + a823f29e-9162-c2f1-15e7-39fc10f99da7 + + + 1 + 336 + 130 + + + + 1 + 298.1 + 240.8 + + + + 1 + 326.1 + 78.1 + + + + 2 + 534 + 130 + + + + GR-BE-G2-393165516 + 90 + + + a991c4b4-bdaa-e2ea-483a-39fc10f99daa + + + 1 + 404.9688 + 257.9688 + + + + 1 + 226.1 + 126.8 + + + + 1 + 426.2 + 214 + + + + none + 0 + + + aa61ff92-0e41-5926-f43a-39fc10f99da8 + + + 2 + 216.1 + 122.8 + + + + 2 + 438 + 104 + + + + 2 + 438 + 158 + + + + GR-NL-Line_2-1148908283 + 0 + + + ab182a8c-a172-f43a-145b-39fc10f99da7 + + + 1 + 536 + 94 + + + + 1 + 338.5 + 170.4 + + + + GR-L-1744788133 + 0 + + + ab927a0b-caa8-00c7-70cb-39fc10f99da5 + + + GR-L-1386132747 + 0 + + + abac106a-5825-b77d-4f62-39fc10f99da5 + + + GR-L-547497329 + 0 + + + abc33a2a-53ff-1326-9b2e-39fc10f99da7 + + + 1 + 763.8 + 244 + + + + GR-NL-Line_4-393350289 + 0 + + + ac334927-d91a-1cdb-83ed-39fc10f99daa + + + 1 + 374.4479 + 244.7396 + + + + 2 + 351.3667 + 170.4 + + + + GR-BE-Line_6-80088517 + 0 + + + acb915ac-03e0-e22e-b758-39fc10f99daa + + + GR-NL-Load_3-1519250664 + -90 + + + acedb6b3-6f4d-7b8b-427f-39fc10f99da7 + + + 4 + 406.1354 + 257.9688 + + + + 2 + 216.1 + 126.8 + + + + 1 + 286.1 + 112.9 + + + + GR-BE-TR2_2-859505670 + 90 + + + ad84eda4-8f1f-999f-09b3-39fc10f99da5 + + + 1 + 260 + 216 + + + + GR-NL-Inj-XZE_ST24-1026067613 + -90 + + + adf48912-c98e-25ae-4ffa-39fc10f99da9 + + + 1 + 412.75 + 257.9688 + + + + 1 + 276.1 + 112.8 + + + + 2 + 225.5 + 100.4 + + + + 1 + 763.8 + 204 + + + + 1 + 174 + 190 + + + + none + 0 + + + af0d1b6b-c4ff-9736-8b9c-39fc10f99da8 + + + GR-L-1336054736 + 0 + + + afa6faa0-5e47-861f-c0ce-39fc10f99da7 + + + 1 + 688 + 216 + + + + GR-B1-1643146121 + 180.4 + + + afe4a810-365d-1682-ee09-39fc10f99daa + + + GR-BE_Breaker_3-966067774 + 90 + + + b037498f-d556-52c5-ad33-39fc10f99da5 + + + GR-L-922131924 + 0 + + + b1240ffc-1cdd-aa10-549e-39fc10f99da9 + + + 1 + 749.1 + 170.4 + + + + 1 + 369.5 + 230.4 + + + + GR-NL-Line_1-1839845569 + 0 + + + b17de664-9fec-6733-dc71-39fc10f99da7 + + + GR-CIRCB-1230992174-1608660855 + 90 + + + b182c324-a38f-4cb9-0c33-39fc10f99da7 + + + 1 + 345.6 + 156.1 + + + + 2 + 250.1 + 90.9 + + + + 1 + 194 + 216 + + + + 1 + 534 + 152 + + + + GR-L-411342095 + 0 + + + b2da8b46-bffe-ecdb-1d65-39fc10f99da9 + + + 1 + 309.5 + 230.4 + + + + 2 + 406.1354 + 258.5521 + + + + GR-NL_TR2_2-1576535355 + -89.8 + + + b3157bcb-fd8f-e523-2a31-39fc10f99da7 + + + 1 + 401.5 + 144.4 + + + + 2 + 298.1 + 240.7 + + + + 1 + 329.5 + 132.4 + + + + GR-L-1652522042 + 0 + + + b3fe7119-57c4-83ed-0605-39fc10f99daa + + + GR-BE_Breaker_1-850940663 + 90 + + + b49f2300-0048-73bd-2333-39fc10f99daa + + + 1 + 663.5 + 159.3 + + + + 1 + 377.5 + 230.4 + + + + 1 + 211.5 + 204.4 + + + + 1 + 373.5 + 248.4 + + + + GR-L-1722550678 + 0 + + + b61815ba-643d-2907-a7e4-39fc10f99da7 + + + 3 + 423.2998 + 257.9688 + + + + 2 + 263.5 + 114.4 + + + + 2 + 100 + 190 + + + + 1 + 424.2 + 166 + + + + 1 + 548 + 130 + + + + 1 + 200 + 110 + + + + 1 + 336 + 188 + + + + 1 + 327.5 + 230.4 + + + + 1 + 440.1 + 200.8 + + + + 1 + 301.5 + 230.4 + + + + GR-BE-Load_1-845605242 + 90 + + + b865d4b2-3600-4317-3831-39fc10f99da9 + + + 2 + 225.5 + 204.4 + + + + G-Link-356885700 + 0 + + + b9a9e760-3382-c4a6-27c5-39fc10f99da6 + + + GR-L-666062934 + 0 + + + b9c670ec-13e3-467f-aad5-39fc10f99daa + + + GR-L-732825233 + 0 + + + b9eee9da-1996-e618-ffb7-39fc10f99da4 + + + 2 + 534 + 126 + + + + 2 + 326.1 + 212.9 + + + + none + 0 + + + ba901fa8-82c2-eac3-5d5a-39fc10f99da8 + + + 1 + 717.8 + 216.1 + + + + 3 + 320.4764 + 166.6875 + + + + GR-BE-TR2_1-2030167194 + 90 + + + bafb2865-8ef5-09e5-a10a-39fc10f99da5 + + + 2 + 420.1 + 172 + + + + 1 + 363.5 + 245.4 + + + + GR-L-915671003 + 0 + + + bc1d96fb-5a7b-b0d9-3ddd-39fc10f99daa + + + 2 + 381 + 250.1249 + + + + 2 + 375.772 + 244.7396 + + + + GR-L-758388342 + 0 + + + bc7d79e9-593d-1e12-db4c-39fc10f99da4 + + + 1 + 412.1 + 112.8 + + + + GR-L-646363162 + 0 + + + bcf980fa-d02c-73f8-c8db-39fc10f99da5 + + + 1 + 260 + 110 + + + + GR-L-1515839254 + 0 + + + bd5d28bd-cba9-3cbb-8033-39fc10f99da9 + + + 2 + 335.7563 + 244 + + + + 2 + 298.1 + 206.8 + + + + 2 + 483.5 + 166.4 + + + + 1 + 328 + 234 + + + + 1 + 215.2 + 100.4 + + + + 1 + 78.2 + 190 + + + + none + 0 + + + be38aec7-a129-1929-23dc-39fc10f99da8 + + + 2 + 616 + 202 + + + + GR-L-1189435787 + 0 + + + be9855ff-da09-cf09-c043-39fc10f99da7 + + + 1 + 338.1 + 84.8 + + + + 1 + 337.3438 + 244.7396 + + + + none + 0 + + + c03136cb-844a-cd6e-acec-39fc10f99da4 + + + GR-L-224067510 + 0 + + + c071ec03-0424-da1e-2b06-39fc10f99daa + + + 1 + 444 + 138 + + + + GR-L-303851305 + 0 + + + c0d7afc7-732e-2997-956c-39fc10f99da5 + + + 1 + 387.5 + 108.4 + + + + GR-NL_TR2_3-1899438011 + -89.2 + + + c1056246-21f6-b1b7-1ff2-39fc10f99da7 + + + GR-L-407244561 + 0 + + + c12616b5-254d-a5f5-ab28-39fc10f99da8 + + + none + 0 + + + c140fbf6-8196-bf88-c8ec-39fc10f99da8 + + + 2 + 423.2998 + 257.9688 + + + + 1 + 306 + 152 + + + + 2 + 315.5 + 248.4 + + + + 1 + 265.9 + 162.8 + + + + 1 + 284 + 218 + + + + GR-CIRCB-1230991544-1798886865 + 90 + + + c1f16e98-ddd0-9c13-b66e-39fc10f99da9 + + + 1 + 284 + 164 + + + + none + 0 + + + c1fd316c-08b1-7cd6-7cbd-39fc10f99da4 + + + 1 + 295.5 + 124.4 + + + + 2 + 218.1 + 90.8 + + + + 2 + 710 + 216.1 + + + + GR-L-596363093 + 0 + + + c39de148-ed68-49ec-d3a6-39fc10f99da9 + + + 1 + 684 + 116.1 + + + + 3 + 322.526 + 202.4063 + + + + 1 + 216.1 + 132.8 + + + + 2 + 320.4764 + 178.4 + + + + 1 + 356 + 100 + + + + 3 + 274.9666 + 152.1354 + + + + 2 + 367.5 + 144.4 + + + + GR-L-1057352045 + 0 + + + c459244a-e12d-a1c1-519a-39fc10f99da9 + + + 2 + 380.4708 + 244 + + + + GR-L-1635329734 + 0 + + + c5715126-13b4-3595-0a19-39fc10f99da9 + + + 2 + 250.1 + 131.4 + + + + GR-L-132391528 + 0 + + + c5bb3ca3-4314-b580-7de7-39fc10f99da7 + + + 2 + 664 + 216.1 + + + + 2 + 326.1 + 112.7 + + + + 1 + 659.8 + 88 + + + + 2 + 381.5 + 264.4 + + + + 1 + 216.1 + 160.8 + + + + 2 + 346.1 + 220.8 + + + + 1 + 319.5 + 248.4 + + + + 1 + 266 + 141.9 + + + + none + 0 + + + c85fcc1a-be52-487d-b6d2-39fc10f99da8 + + + 1 + 738.4 + 152.4 + + + + 2 + 405.5 + 214.4 + + + + GR-L-483231920 + 0 + + + c8c97eb3-74dd-6dc0-c0a2-39fc10f99da4 + + + 1 + 370.1 + 212.8 + + + + GR-L-941029519 + 0 + + + c951145f-1a87-9860-2235-39fc10f99da9 + + + GR-L-105055723 + 0 + + + c979a07a-f319-3449-f216-39fc10f99daa + + + GR-L-862268842 + 0 + + + c98b6418-b701-d0fb-7a82-39fc10f99da7 + + + none + 0 + + + ca231927-7a24-4db6-18ef-39fc10f99da6 + + + 4 + 269.875 + 181.2396 + + + + 2 + 438 + 99.9 + + + + 2 + 409.7326 + 257.9688 + + + + 2 + 438 + 240 + + + + 2 + 329.5 + 250.4 + + + + 2 + 738 + 175.2 + + + + 1 + 383.5 + 108.4 + + + + GR-L-1946514042 + 0 + + + cb4731d7-66e6-6335-924e-39fc10f99da9 + + + 1 + 583.8 + 148 + + + + 2 + 438 + 138.1 + + + + 1 + 256 + 148 + + + + GR-L-1265736707 + 0 + + + cc2a9da7-ff13-45b7-ac6d-39fc10f99da7 + + + GR-CIRCB-1230992276-213122156 + 90 + + + cc77a264-0bf5-bfd2-d2f4-39fc10f99daa + + + 2 + 438 + 94 + + + + GR-BE_Breaker_3-646738415 + 90 + + + ccc99efb-483f-1af0-a492-39fc10f99da9 + + + 1 + 347.5 + 170.4 + + + + GR-L-562390440 + 0 + + + cd120b2f-531e-8c61-c85d-39fc10f99da9 + + + 1 + 616 + 210 + + + + GR-L-407628436 + 0 + + + ce08ded6-cf78-7661-e96f-39fc10f99da9 + + + 2 + 644 + 115.9 + + + + 1 + 363.5 + 170.4 + + + + 1 + 298.1 + 202.8 + + + + 2 + 398.1 + 112.7 + + + + 2 + 367.5 + 170.4 + + + + GR-CIRCB-1230992399-850693726 + 90 + + + cefde69b-7da6-6f6b-f3dc-39fc10f99da9 + + + 2 + 240 + 152 + + + + GR-BE_Breaker_2-801602176 + 90 + + + cfa5f48e-ee0a-e1e8-657c-39fc10f99da5 + + + GR-CIRCB-1230992285-1387932951 + 90 + + + cfa62ecc-1f68-d585-804b-39fc10f99da8 + + + 2 + 716 + 110 + + + + 1 + 738 + 260 + + + + GR-L-1088983047 + 0 + + + d05e00a5-5fdc-c685-e403-39fc10f99da9 + + + 2 + 431.2 + 182.8 + + + + none + 0 + + + d1fc58fe-6572-b077-c78a-39fc10f99da4 + + + 1 + 404.1 + 112.8 + + + + 1 + 345.5 + 124.4 + + + + 2 + 315.5 + 230.4 + + + + 2 + 274.9666 + 164 + + + + none + 0 + + + d2641f51-70db-9abf-05c1-39fc10f99da8 + + + none + 0 + + + d2a5b969-bac3-f08a-a75b-39fc10f99da4 + + + 1 + 332 + 216 + + + + 2 + 438 + 213.9 + + + + 2 + 351.5 + 170.4 + + + + 2 + 710 + 210 + + + + 1 + 284 + 232 + + + + 1 + 263.8 + 131.2 + + + + 1 + 336.1 + 112.8 + + + + none + 0 + + + d43d7be1-7aa9-b5c4-d4bf-39fc10f99da8 + + + 3 + 326.1 + 139 + + + + 2 + 438 + 213.9 + + + + 2 + 251.5 + 222.4 + + + + 1 + 347.2 + 100.4 + + + + 2 + 356 + 130 + + + + 1 + 265.5 + 230.4 + + + + GR-L-1315724107 + 0 + + + d51636eb-b5b1-6aa3-c23d-39fc10f99da5 + + + 2 + 326.1 + 177.1 + + + + 2 + 315.5 + 210.4 + + + + 2 + 276.9733 + 148 + + + + 1 + 440.1 + 240.8 + + + + 1 + 270 + 246 + + + + GR-L-2127916291 + 0 + + + d62c24d8-2a88-ba04-240f-39fc10f99da7 + + + 1 + 345.6 + 164.1 + + + + none + 0 + + + d696a259-c393-1e01-e7f7-39fc10f99da4 + + + 1 + 341.5 + 124.4 + + + + 1 + 444 + 100 + + + + G-Link-356885332 + 0 + + + d7850a00-0e4c-719b-45b2-39fc10f99da7 + + + 2 + 285.5 + 156.4 + + + + 1 + 250.1 + 173.3 + + + + 2 + 398.1 + 112.8 + + + + GR-L-350722573 + 0 + + + d805704e-f421-6a31-663f-39fc10f99da8 + + + none + 0 + + + d88dabca-1743-56c7-8938-39fc10f99da4 + + + 2 + 738 + 204 + + + + 2 + 483.5 + 108.4 + + + + GR-CIRCB-1230992285-1736855320 + 90 + + + d9de5c2a-47b3-37d7-4238-39fc10f99da4 + + + GR-BE-Line_5-236789378 + 0 + + + d9de6328-02a3-50c8-499f-39fc10f99da5 + + + 1 + 251.5 + 238.4 + + + + MAS NL + + da87c6dc-84d9-c07e-7889-39fc10f99da6 + + + 1 + 230 + 216 + + + + 1 + 346.1 + 204.8 + + + + GR-busbarcoupler 1-713473953 + -1.2 + + + db32adab-ff48-d5da-cde3-39fc10f99da7 + + + GR-BE_Breaker_1-874007652 + 90 + + + db4c1d50-0f8d-74d0-daf8-39fc10f99da5 + + + 1 + 447.9 + 112.8 + + + + 2 + 270 + 216 + + + + 2 + 346.1 + 212.9 + + + + 2 + 322 + 166 + + + + 1 + 332.1 + 212.8 + + + + 1 + 239.5 + 230.4 + + + + none + 0 + + + dcee2d88-079a-b349-57d9-39fc10f99da8 + + + 2 + 250.1 + 162.8 + + + + 1 + 177.5 + 86 + + + + G-Link-356885260 + 0 + + + de4ea648-18ec-8d7d-c065-39fc10f99da8 + + + 1 + 760 + 116 + + + + GR-CIRCB-1230992408-1487360655 + 90 + + + defce7e6-1970-186d-f698-39fc10f99da9 + + + GR-L-1275097229 + 0 + + + df0f48e7-9e71-dacc-b779-39fc10f99da7 + + + 1 + 447.8 + 138 + + + + 1 + 483.5 + 118.4 + + + + 2 + 250.1 + 81.3 + + + + 2 + 329.5 + 118.4 + + + + 2 + 225.5 + 124.4 + + + + 3 + 644 + 182.3 + + + + 1 + 204 + 110 + + + + 2 + 250 + 224 + + + + 1 + 240 + 110 + + + + GR-BE-Line_1-206274956 + 0 + + + e1c695f7-81f7-0a37-8c5b-39fc10f99da5 + + + 2 + 431 + 140.7 + + + + 2 + 351.5 + 174.4 + + + + 1 + 355.5 + 170.4 + + + + 1 + 758 + 204 + + + + 1 + 534 + 136 + + + + 1 + 654 + 116 + + + + 2 + 284 + 118 + + + + 2 + 295.5 + 224.4 + + + + 1 + 324 + 234 + + + + 2 + 363.5 + 232.4 + + + + 2 + 360 + 204 + + + + 2 + 420.1 + 240.8 + + + + GR-L-16840964 + 0 + + + e49a305b-2405-2a43-16c4-39fc10f99da5 + + + 3 + 375.772 + 244.7396 + + + + 4 + 265.9063 + 152.1354 + + + + GR-NL_BREAKER_1-724054015 + 90 + + + e5019286-ff8d-06df-a133-39fc10f99daa + + + 2 + 420.5 + 96.9 + + + + 1 + 424.2 + 248 + + + + 2 + 120.1 + 212.8 + + + + 2 + 616 + 243.9 + + + + none + 0 + + + e5c72835-a309-5dd9-a0ac-39fc10f99da4 + + + 2 + 568 + 166 + + + + 1 + 209.5 + 146.4 + + + + 3 + 326.1 + 179.1 + + + + 1 + 438 + 152 + + + + GR-L-321611979 + 0 + + + e8212281-0793-7d05-83ad-39fc10f99da7 + + + 2 + 160 + 196 + + + + GR-L-1212420896 + 0 + + + e89ef836-30b9-ef7a-5e61-39fc10f99da5 + + + 2 + 406.1354 + 248.7083 + + + + 1 + 285.5 + 230.4 + + + + 1 + 447.8 + 166 + + + + 1 + 765.8 + 116 + + + + 1 + 626 + 244 + + + + 1 + 438 + 204 + + + + GR-BE-Line_2-452729700 + 0 + + + e9588019-0ce4-cfa0-e492-39fc10f99daa + + + 2 + 401.5 + 108.3 + + + + 1 + 123.7 + 204.4 + + + + 1 + 363.5 + 228.4 + + + + GR-NL_BREAKER_4-786293968 + 90 + + + e9bd6f2c-2fd5-1322-fb46-39fc10f99da7 + + + GR-L-1506404720 + 0 + + + ea009071-9baa-1062-d39d-39fc10f99da5 + + + GR-SVC-1230797516-1442176516 + 0 + + + ea3c5d10-c3d0-725e-7f02-39fc10f99da9 + + + GR-L-2092320082 + 0 + + + ea637fa1-fb7d-ac3e-460e-39fc10f99daa + + + 3 + 362.5539 + 244.7396 + + + + GR-CIRCB-1230991718-1439853298 + 90 + + + ea735bc8-834e-0ee1-1295-39fc10f99daa + + + 2 + 336 + 204 + + + + GR-L-1539709557 + 0 + + + eb6a9f5a-ff96-4903-a60e-39fc10f99daa + + + GR-BE_S2-2080301181 + 90 + + + ebaf1deb-273f-7bbf-a614-39fc10f99da9 + + + 2 + 284 + 216 + + + + 3 + 644 + 142.2 + + + + 2 + 270 + 234 + + + + GR-BE-Line_7-517810986 + 0 + + + ec71dc07-0b6f-8ee5-572d-39fc10f99daa + + + GR-NL-Inj-XCA_AL11-1939534567 + -90 + + + ec8e3de2-619b-e19e-2286-39fc10f99da9 + + + GR-L-1579587291 + 0 + + + ecd071fb-c025-a2e6-3d4f-39fc10f99da4 + + + GR-CIRCB-1230991526-155239014 + 270 + + + ecdd4af1-08be-eb44-7187-39fc10f99da9 + + + 1 + 252.2 + 196 + + + + 1 + 318 + 214 + + + + 1 + 444 + 248 + + + + GR-L-834411435 + 0 + + + edaf23dd-1294-1eee-2831-39fc10f99da6 + + + none + 0 + + + ee0866ee-4f04-2ba5-d289-39fc10f99da8 + + + 1 + 329.5 + 228.4 + + + + 1 + 297.5 + 162.4 + + + + GR-NL-Line_5-872785043 + 0 + + + ef1a773f-3b83-e44d-d5e3-39fc10f99da7 + + + 2 + 644 + 243.9 + + + + GR-NL-Line_3-484835666 + 0 + + + ef772a3e-f26f-60ad-552f-39fc10f99da7 + + + 1 + 580 + 148 + + + + 3 + 420.5 + 140.7 + + + + 2 + 251.5 + 230.4 + + + + 2 + 360 + 204 + + + + 2 + 225.5 + 90.4 + + + + 1 + 120.1 + 194.8 + + + + GR-NL-Load_2-1562670205 + -90 + + + f0d8ecb8-0a61-6c1a-228a-39fc10f99da7 + + + 2 + 263.5 + 124.4 + + + + GR-L-1553295232 + 0 + + + f1479730-a66c-813d-d6ae-39fc10f99da4 + + + GR-L-1149343369 + 0 + + + f151ea98-908b-99c0-749e-39fc10f99da9 + + + GR-L-643001077 + 0 + + + f1bb056c-ad23-7d52-5b2a-39fc10f99da9 + + + 1 + 616 + 244 + + + + 1 + 438 + 250.2 + + + + 2 + 716 + 115.9 + + + + 1 + 534 + 130 + + + + 1 + 550 + 158 + + + + 2 + 438 + 130 + + + + 2 + 206 + 208 + + + + 2 + 250.1 + 154.8 + + + + none + 0 + + + f3895337-ae38-b034-fc56-39fc10f99da8 + + + GR-BE_S1-672727807 + 90 + + + f3a051a9-7514-846f-9cca-39fc10f99da5 + + + 1 + 554 + 158 + + + + GR-L-842886683 + 0 + + + f409862d-8176-0de7-3e6b-39fc10f99da7 + + + 1 + 322 + 78 + + + + GR-BE-Load_2-1923467690 + 90 + + + f4981b8c-edeb-6fb9-5e10-39fc10f99da9 + + + 2 + 363.5 + 248.4 + + + + GR-L-56085830 + 0 + + + f4cad3ac-8133-7ea9-4929-39fc10f99daa + + + none + 0 + + + f4dc63b3-fc48-1178-32ed-39fc10f99da8 + + + 1 + 483.5 + 254.4 + + + + none + 0 + + + f4ed9276-b0be-5b71-e45b-39fc10f99da8 + + + 1 + 420.5 + 149.2 + + + + 2 + 483.5 + 154.4 + + + + GR-NL-Line_3-1740588309 + 0 + + + f56b27ac-607d-41e6-0913-39fc10f99daa + + + 1 + 166 + 190 + + + + GR-BE-G1-77304379 + 90 + + + f5ad766d-a140-e012-4bae-39fc10f99da6 + + + 2 + 206 + 216 + + + + GR-L-827153830 + 0 + + + f602938b-5685-e9a9-3b14-39fc10f99daa + + + GR-L-1106639469 + 0 + + + f65d5888-7c9f-5df8-e4b5-39fc10f99daa + + + GR-L-1291015486 + 0 + + + f67c21bd-f1a7-f218-919e-39fc10f99da9 + + + GR-L-267527885 + 0 + + + f6cff398-8522-7e9e-1782-39fc10f99da4 + + + 1 + 228.1 + 90.8 + + + + none + 0 + + + f78e08ec-f847-c8ca-f9fe-39fc10f99da8 + + + 2 + 250.1 + 126.7 + + + + GR-NL-Load_2-1605800955 + -90 + + + f7df94c2-b238-a66a-a7a1-39fc10f99daa + + + 1 + 264 + 216 + + + + none + 0 + + + f88e7068-7121-4ccc-440f-39fc10f99da6 + + + 2 + 336 + 234 + + + + 2 + 438 + 244 + + + + GR-L-782201291 + 0 + + + f9df23a7-0ad9-1546-1f72-39fc10f99da8 + + + 2 + 250.1 + 144.7 + + + + 1 + 312.1 + 240.8 + + + + 1 + 380.1 + 212.8 + + + + 1 + 403.9 + 212.9 + + + + GR-L-532331557 + 0 + + + fadc3437-316d-6e41-0d65-39fc10f99da7 + + + GR-L-426116696 + 0 + + + fae0e3d3-28be-d04c-7890-39fc10f99da9 + + + 2 + 438 + 130 + + + + G-Link-356885242 + 0 + + + fb2be7d5-4e9c-2388-0f47-39fc10f99da8 + + + 2 + 345.6 + 179.1 + + + + 1 + 248 + 148 + + + + GR-L-1930599266 + 0 + + + fbbe7428-5e2b-f666-57ad-39fc10f99da9 + + + 2 + 438 + 138.1 + + + + 2 + 392.1 + 212.8 + + + + GR-BE-Inj-XZE_ST23-650184206 + 90 + + + fc32459c-0966-663a-b40b-39fc10f99da8 + + + GR-CIRCB-1230992399-1670754907 + 90 + + + fc7e8524-3363-e51f-e7d7-39fc10f99da5 + + + 1 + 392.1 + 206.8 + + + + 2 + 749.1 + 186 + + + + 1 + 312.1 + 202.8 + + + + none + 0 + + + fd89ea83-62f4-40a7-4417-39fc10f99da6 + + + 1 + 327.5 + 248.4 + + + + 1 + 483.5 + 212.4 + + + + 2 + 329.5 + 232.4 + + + + 2 + 438 + 170 + + + + 1 + 581.7 + 134.4 + + + + 2 + 180 + 86 + + + + GR-NL-S1-1493216764 + -90 + + + fe98c262-a235-52be-516d-39fc10f99da9 + + + 2 + 401.5 + 114.4 + + + + 1 + 336.1 + 212.8 + + + + 1 + 546 + 158 + + + + 2 + 710 + 216 + + + + GR-L-1359764781 + 0 + + + ffb98b45-f7d6-f182-aec9-39fc10f99daa + + + + diff --git a/rdf-improved/test/rdf/MicroGrid-BD-MAS-diff.xml b/rdf-improved/test/rdf/MicroGrid-BD-MAS-diff.xml new file mode 100644 index 0000000..5d1208d --- /dev/null +++ b/rdf-improved/test/rdf/MicroGrid-BD-MAS-diff.xml @@ -0,0 +1,40 @@ + + + + 2021-11-19T23:16:27Z + 2021-03-25T15:30:00Z + CGMES Conformity Assessment Test Configuration. The Test Configuration is owned by ENTSO-E and is provided by ENTSO-E “as it is”. To the fullest extent permitted by law, ENTSO-E shall not be liable for any damages of any kind arising out of the use of the model (including any of its subsequent modifications). ENTSO-E neither warrants, nor represents that the use of the model will not infringe the rights of third parties. Any use of the model shall include a reference to ENTSO-E. ENTSO-E web site is the only official source of information related to the model. + http://entsoe.eu/boundary + http://iec.ch/TC57/ns/CIM/EquipmentBoundary-EU/3.0 + 006 + + + + + + HVDC-AC; 220 kV; OHL + Border_HVDC-AC + HVDC-AC-1 + 10T-DC-NL-00082X + + 1c4a9e9c-ef00-42c9-9845-f64f9ca1e57a + + + Border_HVDC-AC + HVDC-AC; 220 kV; OHL + HVDC-AC-1 + 10T-DC-NL-00082X + NL + HVDC/NL + NL + BE + NL_AC-1 + NL-HVDC-1 + + af1d901f-98de-574f-abc3-6c3025e7a686 + true + false + + + + diff --git a/rdf-improved/test/rdf/MicroGrid-BE-MAS-DY_diff.xml b/rdf-improved/test/rdf/MicroGrid-BE-MAS-DY_diff.xml new file mode 100644 index 0000000..cd2c3c4 --- /dev/null +++ b/rdf-improved/test/rdf/MicroGrid-BE-MAS-DY_diff.xml @@ -0,0 +1,24 @@ + + + + 2021-11-19T23:16:27Z + 2021-04-21T15:30:00Z + CGMES Conformity Assessment Test Configuration. The Test Configuration is owned by ENTSO-E and is provided by ENTSO-E “as it is”. To the fullest extent permitted by law, ENTSO-E shall not be liable for any damages of any kind arising out of the use of the model (including any of its subsequent modifications). ENTSO-E neither warrants, nor represents that the use of the model will not infringe the rights of third parties. Any use of the model shall include a reference to ENTSO-E. ENTSO-E web site is the only official source of information related to the model. + http://elia.be/CGMES + http://iec.ch/TC57/ns/CIM/Dynamics-EU/1.0 + 002 + + + + + 200 + + + + + 300 + Modified parameter Ka + + + + diff --git a/rdf-improved/test/rdf/MicroGrid-NL-MAS-EQ_diff.xml b/rdf-improved/test/rdf/MicroGrid-NL-MAS-EQ_diff.xml new file mode 100644 index 0000000..b84e536 --- /dev/null +++ b/rdf-improved/test/rdf/MicroGrid-NL-MAS-EQ_diff.xml @@ -0,0 +1,1588 @@ + + + + 2021-11-19T23:16:27Z + 2021-03-25T15:30:00Z + CGMES Conformity Assessment Test Configuration. The Test Configuration is owned by ENTSO-E and is provided by ENTSO-E “as it is”. To the fullest extent permitted by law, ENTSO-E shall not be liable for any damages of any kind arising out of the use of the model (including any of its subsequent modifications). ENTSO-E neither warrants, nor represents that the use of the model will not infringe the rights of third parties. Any use of the model shall include a reference to ENTSO-E. ENTSO-E web site is the only official source of information related to the model. + http://tennet.nl/CGMES + http://iec.ch/TC57/ns/CIM/CoreEquipment-EU/3.0 + 001 + + http://iec.ch/TC57/ns/CIM/ShortCircuit-EU/3.0 + + + + 5.68125 + + + + -0.01345523 + + + + 5.680805 + + + + 0.05392985 + + + + -0.02265452 + + + + -0.0614186 + + + + -0.07163366 + + + + + + + 0.03398448 + + + + 0.02987964 + + + + 5.682805 + + + + 5.681583 + + + + 5.683249 + + + + + + + + + + 0.01305754 + + + + -0.06649923 + + + + + + + 5.680916 + + + + + + + 5.681805 + + + + 0.04207603 + + + + 5.682583 + + + + 5.682472 + + + + 0.01732449 + + + + 5.682916 + + + + 5.68225 + + + + + + + 5.682361 + + + + + + + 5.682916 + + + + 5.681694 + + + + + + + 5.682027 + + + + -0.03681348 + + + + + + + 5.681361 + + + + 5.681583 + + + + + + + 0.008747523 + + + + 0.004395567 + + + + + + + 5.681472 + + + + 5.683138 + + + + + + + 5.68125 + + + + -0.04650027 + + + + + + + -0.05639308 + + + + -0.004439676 + + + + + + + 0.05001429 + + + + + + + 0.05780642 + + + + -0.01803153 + + + + 5.683361 + + + + 0.04606397 + + + + 0.02154983 + + + + 0.02573574 + + + + -0.008924291 + + + + + + + 0.0654528 + + + + 5.681027 + + + + 5.681916 + + + + + + + -0.07682406 + + + + -0.03204435 + + + + 5.681139 + + + + + + + 0.06164702 + + + + -0.04163161 + + + + 5.681139 + + + + 0.06922422 + + + + 0.03804918 + + + + 5.682138 + + + + 5.682694 + + + + + + + + + + + + + 5.683138 + + + + -0.02732521 + + + + + + + + + + 5.682361 + + + + + + + -0.05142054 + + + + PATL + + + 2000 + 03287f0c-5562-4533-be7f-2fb40e1888f5 + + + TATL + + + 500 + 08ad0781-b65c-4f2e-b5ba-00d58bcf2e58 + + + TENNET TSO B.V.confLoadGr + + 113fa6bb-c406-44a1-b9b7-67c43efe8372 + + + PATL + + + 46188.04 + 12f7803a-c65b-4a14-8c0d-7e52becb5772 + + + TieFlow + true + + + 14f1c9bd-93d8-4238-9e26-aacc53fe8855 + + + PATL + + + 1233.9 + 1b65a297-4735-499f-8fe8-f08ea01b291f + + + NL_TR2_3 + 24533a0f-3c24-4253-863a-5b1449e5b2de + + + PATL + + + 1233.9 + 26069582-0f76-47fb-8bc0-44c99fb08887 + + + PATL + + + 46188.04 + 26ce5ed9-6557-473e-a710-b7720c2c8355 + + + TATL + + + 500 + 2783b836-4271-4252-96a7-588c3a1b1826 + + + PATL + + + 1371 + 2b05a185-07f6-4e72-a2c3-d28425c7aefc + + + PATL + + + 3306.644 + 2ca6c9d7-1310-4487-a177-0c3f7b461194 + + + PATL + + + 1574 + 2f424b90-a264-4592-8854-9838596c9f78 + + + Terminal + 2 + + + 31bf04d0-7e34-465b-95a4-0604700325cf + + + + Terminal + 1 + + + 421c7930-64c3-435d-afb8-2bb73b333e34 + + + + TieFlow + true + + + 4669c2b7-89d0-46d1-9bbb-37e989d581cd + + + PATL + + + 1876 + 47545df1-566d-4a8d-86e8-882655c6e79e + + + TieFlow + true + + + 4ed170fe-2571-4044-9bfa-7345e70a69d2 + + + NL_TR2_2 + 50c903e2-ecbb-41b8-9a1d-746543c9b63f + + + PATL + + + 1876 + 56105225-1754-40da-b6df-43fd7cfeb50a + + + TATL + + + 500 + 5bc43480-4543-4193-8b0e-7ba7bf5b3441 + + + PATL + + + 3306.644 + 6745e040-9fd4-4cc5-8bfd-902d0aed4ee6 + + + TATL + + + 500 + 6fd8188f-65a6-4473-b8f1-ffe6122ba6ab + + + Terminal + 2 + + + 70b326a3-5913-494f-b8f8-8e366253b597 + + + + NL LoadArea + 70c4656c-f7a0-4319-98bb-84fb5e2e9b37 + + + PATL + + + 1371 + 7cfff021-02d4-4aa1-8fe7-b9af9c1fdc44 + + + TATL + + + 500 + 84c93dae-4254-4b24-b0ee-3fc4bdf1ea02 + + + TATL + + + 500 + 86764bf6-6472-4ebe-9d6b-bcceffe66dad + + + TATL + + + 500 + 89ef40fb-5d77-45cb-8073-cc2d1d171dcd + + + TATL + + + 500 + 8eb25188-24dd-4f6e-97d9-b7b03c49454e + + + TieFlow + true + + + 945d6e95-1b83-47c5-a0e9-277d434c2d12 + + + PATL + + + 1574 + b35893b0-22d4-4127-9351-9c46fba6059b + + + TATL + + + 500 + b780341b-7b90-498f-ab63-9deb16eff206 + + + Limit Type TATL + TATL + + + bf2a4896-2e92-465b-b5f9-b033993a31c8 + false + 600 + + + TENNET TSO B.V. SubLoadArea + + c4e8eb3a-76b0-4192-91fe-c2f0a60af0df + + + PATL + + + 2000 + c743cfb3-8279-4721-9eee-12020dd89f64 + + + Terminal + 1 + + + c9b27b4e-d492-4c3c-b147-67addbb9d3ea + + + + TATL + + + 500 + d7422ce6-a13d-41ca-8111-9462b2e789dc + + + PATL + + + 461.8804 + e37ee101-2f68-4d55-b24f-c24c5faba8b5 + + + PATL + + + 839.7826 + ef715edd-516e-4bfd-adc4-1c882852920e + + + TieFlow + true + + + f9ffc8ea-37f2-404a-9bd3-f3fa15476d4c + + + + + 5.650056 + + + + -0.01462472 + + + + 5.641792 + + + + 0.05861587 + + + + -0.02462367 + + + + -0.066758 + + + + -0.07786135 + + + + + + + 0.03693753 + + + + 0.03247588 + + + + 5.678981 + + + + 5.656254 + + + + + + + 5.687245 + + + + + + + + + + + + + 0.01419252 + + + + -0.07228037 + + + + + + + 5.643858 + + + + + + + 5.660387 + + + + 0.04573255 + + + + 5.674849 + + + + 5.672783 + + + + 0.01883037 + + + + 5.681047 + + + + 5.668651 + + + + + + + 5.670717 + + + + + + + 5.681047 + + + + 5.65832 + + + + + + + 5.664518 + + + + -0.0400135 + + + + + + + 5.652122 + + + + 5.656254 + + + + + + + 0.009507872 + + + + 0.004777636 + + + + + + + 5.654188 + + + + 5.685179 + + + + + + + 5.650056 + + + + -0.05054252 + + + + + + + -0.06129541 + + + + -0.004825579 + + + + + + + 0.05436075 + + + + + + + 0.06282941 + + + + -0.01959873 + + + + 5.689311 + + + + 0.05006714 + + + + 0.02342298 + + + + 0.02797188 + + + + -0.009699942 + + + + + + + 0.07114049 + + + + 5.645924 + + + + 5.662453 + + + + + + + -0.08350297 + + + + -0.03482978 + + + + 5.64799 + + + + + + + 0.06700388 + + + + -0.04525049 + + + + 5.64799 + + + + 0.07523897 + + + + 0.04135566 + + + + 5.666584 + + + + 5.676915 + + + + + + + + + + + + + 5.685179 + + + + -0.02970046 + + + + + + + + + + 5.670717 + + + + + + + -0.05589059 + + + + PATL + + + 1574 + 0474e1ea-11f9-4682-99f3-779139cd68d3 + + + PATL + + + 839.7826 + 0922f33b-ad8a-4282-b382-c317aa7ce1e9 + + + TieFlow + true + + + 0960c9a2-9e79-421b-892a-8a9b5016f71c + + + PATL + + + 46188.04 + 0ab669ad-9033-41bd-8460-6036977ff0f4 + + + NL_BREAKER_4 + false + + false + false + 0c2fa351-239d-463b-a826-0b8615bf6c3c + + + Terminal + 1 + + + 1128e664-0653-448a-9068-e37f1a097c05 + + + + N1230822396 + + 12733133-1f34-44f3-a020-f5b33cede919 + + + Terminal + 1 + + + 14f212ae-bcd8-46ae-9366-11dec9602a01 + + + + PATL + + + 46188.04 + 1501e1ba-0156-40bb-901b-9b8d2b3ed8d3 + + + N1230822396 + + 1520ab3c-9392-41c2-8873-39ec83a76c26 + + + N1230992201 + NL-_B_1 + + 17eb9e2c-dd0d-4005-ac1c-c7174e3a88e1 + + + PATL + + + 461.8804 + 19efa9e2-2070-4e71-ad64-3934bfb5a82e + + + NL-G2 + + + 1b3c88f9-c2ca-4250-bd37-ae0efa2fb022 + + + NL_BREAKER_1 + false + + false + false + 1ea8f512-451c-40d3-a312-7c4e71d9dbcb + + + CIRCB-1230992249 + false + + false + false + 21ec578c-689f-4130-80de-fd0fb5a30ed8 + + + Terminal + 2 + + + 28797d21-df04-4be6-806b-3be26b040d6a + + + + PATL + + + 2000 + 289ae9f0-42e1-410d-9940-db3d79de5c18 + + + TATL + + + 500 + 2c29dbdf-10c4-436e-bfe5-f9cce4615886 + + + TATL + + + 500 + 2e3416d2-6a88-4ce6-b5c0-ce5a63a49a46 + + + Terminal + 1 + + + 30aa2972-aafb-4c38-912d-a14867d47cec + + + + TieFlow + true + + + 30ef0adf-d1f4-4236-b582-351f95c2af3e + + + Terminal + 2 + + + 3179d96c-7ecd-4f8a-b3f0-f24b62a16e87 + + + + TATL + + + 500 + 33abb4cc-fc91-4980-b157-fb9dba880f79 + + + TATL + + + 500 + 34a5286c-cf17-42f5-8de7-55e1a903d3ad + + + PATL + + + 3306.644 + 3a159e62-6947-4902-b611-89a2764b8baa + + + Terminal + 2 + + + 3c377e5e-65cc-45f1-ba12-e20034df7cb3 + + + + NL_BREAKER_1 + false + + false + false + 3da8f227-5c16-47e1-a17f-4cd92269d301 + + + Terminal + 1 + + + 41b735f7-da62-4bd3-ac98-fbdec24baeac + + + + NL_TR2_2 + 4233da0a-4b2c-4283-a6ee-20e1f9f7e09e + + + NL-Busbar_5_Busbar_Section + 1 + + + 42800bad-5e47-42e6-b9b0-1fb8fc5831aa + + + TieFlow + true + + + 4661299f-bb32-4f3d-af0b-6ed5393578c6 + + + NL LoadArea + 46b92fd3-2077-41cc-a7ed-187bb71b1e16 + + + NL_BREAKER_3 + false + + false + false + 4853e915-48e5-4527-a4db-cce11ab18f73 + + + TENNET TSO B.V. SubLoadArea + + 4be7c895-f88e-40cd-a17c-a8a2677106b1 + + + Terminal + 2 + + + 4f1c405f-07c9-4fb0-b64e-551896a29aa8 + + + + NL-G3 + + + 53e7a6c7-759b-4da2-898a-1c061d788670 + + + N1230992228 + NL-_B_1 + + 546121e7-acf3-4bc2-ae49-446e550a1e5c + + + busbarcoupler 1 + coupler 1 + false + + false + false + 5a094c9f-0af5-48dc-94e9-89c6c220023c + + + N1230992198 + NL-_B_1 + + 5cb2cb9a-695c-458b-b63a-a84c025981e4 + + + Terminal + 2 + + + 5f40c3f7-9540-4e1b-aa97-6553d5524877 + + + + B1 + B1 + false + + false + true + 5f5d40ae-d52d-4631-9285-b3ceefff784c + + + PATL + + + 1233.9 + 6486e856-85fd-46cc-92a5-65f17bb45b96 + + + TENNET TSO B.V.confLoadGr + + 6cc3bed4-aee6-44b8-8bea-804fd43af7b1 + + + N1230992195 + NL-_B_1 + + 7221e0f9-008b-4273-8d40-b5d4c6efa0fe + + + Terminal + 1 + + + 74039a16-da9d-46dd-a4f1-dd65fbb09ec4 + + + + Terminal + 1 + + + 790df530-60c7-40bc-be5f-f90e9c65bab4 + + + + Terminal + 2 + + + 7a7fd92b-1aaf-49de-b609-1d640e63d49f + + + + TATL + + + 500 + 7ad13830-5d4d-4138-a756-5b82949e4fdd + + + PATL + + + 1371 + 7e7415f1-54ec-43ca-aeb0-e67adc56ad7d + + + NL_TR_BUS1 + + 7e9dd682-86cd-4594-b58f-1a0534540aca + + + Terminal + 1 + + + 7fae7c9d-952f-4321-830d-aa667d21969d + + + + PATL + + + 1876 + 7ffd7be3-8fe0-4104-baa1-f16d0e2adea8 + + + Terminal + 1 + + + 8121d4c3-9cb2-47db-b40a-99678602bb2a + + + + TieFlow + true + + + 81c5d98b-c998-45aa-bd72-779d74133e35 + + + TATL + + + 500 + 81d8d53d-771d-4ed8-8386-d7d89602959a + + + Terminal + 2 + + + 85ceec9c-21a9-4ef2-b7b0-c2bb9552e799 + + + + NL_TR2_3 + 868ba067-8413-45d5-9d06-d75bc913800e + + + CIRCB-1230992240 + false + + false + false + 88a19e5c-6885-4e6e-8d30-c5442444b309 + + + TATL + + + 500 + 8a39c964-17dd-409d-b293-c92f2d6c07ed + + + PATL + + + 1574 + 9f914cec-e319-48be-99bf-a9699adc064b + + + Terminal + 1 + + + 9f984b04-1736-43d2-9122-3a17fc8aea5f + + + + Terminal + 1 + + + 9fc1ca1a-bb62-4982-9358-fa9b4ac5564d + + + + TATL + + + 500 + a71f3e4e-c860-4ec0-82ab-2c9301b1aee8 + + + Terminal + 2 + + + abc40269-5f9a-4b13-a5a5-8e3b3929eff5 + + + + CIRCB-1230992183 + false + + false + false + b1fc12ae-ba9f-42ee-9558-3d432cc58fbf + + + TATL + + + 500 + b4df3d17-d8e6-4b95-b7c4-13babc37a325 + + + CIRCB-1230992174 + false + + false + false + b5a26150-429d-4acb-b45b-055e42c79055 + + + CIRCB-1230992192 + false + + false + false + bac0aa59-1318-4032-b192-15a8d49283ee + + + Terminal + 1 + + + bd61b1f9-474d-424e-9709-42f75337c477 + + + + NL-Busbar_5 + NL-B_5 + + bd68fe72-ecac-45cc-9d34-33d95ed9a47a + + + NL_TR_BUS2 + + c79edc43-4a5e-4ba8-bd08-16fcdd1beee7 + + + Terminal + 1 + + + c9dbf281-e788-4084-b268-3b5a9473ad72 + + + + PATL + + + 1876 + d67dba58-3642-47eb-a78f-1d5a52204d8e + + + Terminal + 2 + + + da232169-1c36-495a-8af6-a0d7d2b39f52 + + + + PATL + + + 3306.644 + e0d5941f-212f-431d-a368-db5fdd4b96be + + + Terminal + 2 + + + e12338f8-6e9e-4d06-a29a-e12bdd7bd4d7 + + + + Terminal + 1 + + + e19e01f7-eb9b-4ce5-a6fe-4bb4ef0ce6c3 + + + + NL_Busbar_4 + NL_B_4 + + e4743b84-976a-414d-a888-4362532c39e6 + + + NL-Busbar_5 + + e6d49e32-b634-4b86-a8ca-15159f1497b5 + + + PATL + + + 1371 + e84db454-c2dc-4e28-8091-b4e432deb346 + + + N1230822413 + + ecb6a97e-bd2d-40c0-91f6-99dc1e7f59e2 + + + N1230822396_Busbar_Section + 1 + + + ecea10ff-e006-436b-a86a-beac4c2a30c1 + + + Limit Type TATL + TATL + + + ed8650ba-7ef4-4365-8a2e-f0acbf787c9d + false + 600 + + + Terminal + 2 + + + eedefa27-de13-4e6f-91a3-42aa86b539d6 + + + + TieFlow + true + + + efb67db9-a1ce-40f2-a515-8c84ec5999ba + + + Terminal + 2 + + + f04ec73d-b94a-4b7e-a3d6-b1234fc37385 + + + + PATL + + + 1233.9 + f12f68ff-52a0-46c6-993d-c9b250dcc381 + + + TATL + + + 500 + f19f05c1-c526-4e28-b04e-cddc469e242a + + + N1230992231 + NL-_B_1 + + f28134fe-076d-4605-aa92-b9e0bbe96841 + + + PATL + + + 2000 + f8196a40-21e7-4834-b4e4-d5bb01f05139 + + + Terminal + 2 + + + f937c4ac-b9fc-44a2-82a0-99cb34c89974 + + + + + diff --git a/rdf-improved/test/rdf/MicroGrid-NL-MAS-GL_diff.xml b/rdf-improved/test/rdf/MicroGrid-NL-MAS-GL_diff.xml new file mode 100644 index 0000000..6a8be68 --- /dev/null +++ b/rdf-improved/test/rdf/MicroGrid-NL-MAS-GL_diff.xml @@ -0,0 +1,315 @@ + + + + 2021-11-19T23:16:27Z + 2021-03-25T15:30:00Z + CGMES Conformity Assessment Test Configuration. The Test Configuration is owned by ENTSO-E and is provided by ENTSO-E “as it is”. To the fullest extent permitted by law, ENTSO-E shall not be liable for any damages of any kind arising out of the use of the model (including any of its subsequent modifications). ENTSO-E neither warrants, nor represents that the use of the model will not infringe the rights of third parties. Any use of the model shall include a reference to ENTSO-E. ENTSO-E web site is the only official source of information related to the model. + http://tennet.nl/CGMES + http://iec.ch/TC57/ns/CIM/GeographicalLocation-EU/3.0 + 001 + + + + + 3 + 5.04709 + 52.0699 + + + + WGS84 + urn:ogc:def:crs:EPSG::4326 + 38876874-fcfc-a4d9-9d16-39fb7da2ad74 + + + NL-Line_4 + + + 480fa612-9f7c-44fa-8522-39fb7da2ad7b + + + 3 + 5.04709 + 52.0699 + + + + NL-Line_2 + + + 5350c085-4b5e-5909-1d55-39fb7da2ad7b + + + 1 + 4.84744 + 52.4027 + + + + 3 + 5.04709 + 52.0699 + + + + 1 + 4.84845 + 52.4023 + + + + 4 + 5.07058 + 51.8731 + + + + 2 + 4.79004 + 52.1571 + + + + 4 + 5.07294 + 51.8765 + + + + 2 + 4.79004 + 52.1571 + + + + NL-Line_3 + + + a719fa3b-aec1-c681-8da9-39fb7da2ad7b + + + 1 + 4.84744 + 52.4027 + + + + 2 + 4.98125 + 52.2483 + + + + 1 + 4.84744 + 52.4027 + + + + NL-Line_5 + + + c84ce457-406b-a13c-ad76-39fb7da2ad7a + + + 4 + 5.07186 + 51.8756 + + + + 4 + 4.88798 + 51.9127 + + + + NL-Line_1 + + + e072869d-f08d-34f3-bf8f-39fb7da2ad7b + + + 2 + 4.98125 + 52.2483 + + + + 1 + 4.84845 + 52.4023 + + + + 2 + 4.98125 + 52.2483 + + + + 3 + 4.88892 + 51.9138 + + + + 3 + 4.88892 + 51.9138 + + + + + + 1 + 4.84744 + 52.4027 + + + + 4 + 5.07058 + 51.8731 + + + + NL-Line_2 + + + 305f740a-b7a5-d999-e21f-39fb72fb08ce + + + WGS84 + urn:ogc:def:crs:EPSG::4326 + 37396e47-63c0-86b9-4a8b-39fb72fb08c8 + + + 1 + 4.84845 + 52.4023 + + + + 2 + 4.98125 + 52.2483 + + + + 4 + 5.07186 + 51.8756 + + + + 3 + 5.04709 + 52.0699 + + + + NL-Line_1 + + + 54239dea-2bd6-8035-e9fb-39fb72fb08cd + + + NL-Line_4 + + + 545c8085-2c7e-6641-6a5c-39fb72fb08ce + + + 3 + 4.88892 + 51.9138 + + + + NL-Line_5 + + + 65fc92a5-86f4-d6e1-0adb-39fb72fb08cd + + + 4 + 5.07294 + 51.8765 + + + + 2 + 4.79004 + 52.1571 + + + + 3 + 5.04709 + 52.0699 + + + + 1 + 4.84744 + 52.4027 + + + + 1 + 4.84845 + 52.4023 + + + + 3 + 5.04709 + 52.0699 + + + + 2 + 4.98125 + 52.2483 + + + + 1 + 4.84744 + 52.4027 + + + + 3 + 4.88892 + 51.9138 + + + + 2 + 4.79004 + 52.1571 + + + + 4 + 4.88798 + 51.9127 + + + + 2 + 4.98125 + 52.2483 + + + + NL-Line_3 + + + fd5cdc11-839b-ee50-a070-39fb72fb08ce + + + + diff --git a/rdf-improved/test/trig/FullGrid_OP.trig b/rdf-improved/test/trig/FullGrid_OP.trig new file mode 100644 index 0000000..1fea27b --- /dev/null +++ b/rdf-improved/test/trig/FullGrid_OP.trig @@ -0,0 +1,228 @@ + +@prefix rdf: . +@prefix cim: . +@prefix eu: . +@prefix md: . + + a md:FullModel ; + md:Model.DependentOn ; + md:Model.created "2020-12-10T00:21:43Z" ; + md:Model.description "CGMES Conformity Assessment Test Configuration. The Test Configuration is owned by ENTSO-E and is provided by ENTSO-E “as it is”. To the fullest extent permitted by law, ENTSO-E shall not be liable for any damages of any kind arising out of the use of the model (including any of its subsequent modifications). ENTSO-E neither warrants, nor represents that the use of the model will not infringe the rights of third parties. Any use of the model shall include a reference to ENTSO-E. ENTSO-E web site is the only official source of information related to the model." ; + md:Model.modelingAuthoritySet "http://fullgrid.eu/CGMES/3.0" ; + md:Model.profile "http://iec.ch/TC57/ns/CIM/Operation-EU/3.0" ; + md:Model.scenarioTime "2021-02-09T19:30:00Z" ; + md:Model.version "1" . + + + + + { # model content + + a cim:Discrete ; + cim:Discrete.ValueAliasSet ; + cim:IdentifiedObject.description "DIS_1" ; + cim:IdentifiedObject.mRID "13dacabf-aa4c-4a78-806e-c7c4c6949718" ; + cim:IdentifiedObject.name "DIS_1" ; + cim:Measurement.PowerSystemResource ; + cim:Measurement.measurementType "SwitchPosition" ; + cim:Measurement.phases cim:PhaseCode.ABC ; + cim:Measurement.unitMultiplier cim:UnitMultiplier.none ; + cim:Measurement.unitSymbol cim:UnitSymbol.none . + + a cim:ValueAliasSet ; + cim:IdentifiedObject.description "VAL_SET_1" ; + cim:IdentifiedObject.mRID "1a457323-2094-440f-8d30-dc93adf0cdb3" ; + cim:IdentifiedObject.name "VAL_SET_1" . + + a cim:ValueToAlias ; + cim:IdentifiedObject.description "VAL_TO_ALI_1" ; + cim:IdentifiedObject.mRID "1d70075e-6010-4f62-8f38-9fc3bba6b30b" ; + cim:IdentifiedObject.name "VAL_TO_ALI_1" ; + cim:ValueToAlias.ValueAliasSet ; + cim:ValueToAlias.value "0" . + + a cim:AccumulatorReset ; + cim:AccumulatorReset.AccumulatorValue ; + cim:Control.PowerSystemResource ; + cim:Control.controlType "ThreePhaseActivePower" ; + cim:Control.operationInProgress "true" ; + cim:Control.timeStamp "2015-12-02T16:06:06" ; + cim:Control.unitMultiplier cim:UnitMultiplier.M ; + cim:Control.unitSymbol cim:UnitSymbol.Wh ; + cim:IdentifiedObject.description "ACC_RESET_1" ; + cim:IdentifiedObject.mRID "2a593d4f-90a7-4dd6-a35f-de1900b24df8" ; + cim:IdentifiedObject.name "ACC_RESET_1" . + + a cim:MeasurementValueQuality ; + cim:MeasurementValueQuality.MeasurementValue ; + cim:Quality61850.badReference "false" ; + cim:Quality61850.estimatorReplaced "true" ; + cim:Quality61850.failure "false" ; + cim:Quality61850.oldData "true" ; + cim:Quality61850.operatorBlocked "false" ; + cim:Quality61850.oscillatory "true" ; + cim:Quality61850.outOfRange "false" ; + cim:Quality61850.overFlow "true" ; + cim:Quality61850.source cim:Source.PROCESS ; + cim:Quality61850.suspect "true" ; + cim:Quality61850.test "false" ; + cim:Quality61850.validity cim:Validity.GOOD . + + a cim:AccumulatorLimitSet ; + cim:AccumulatorLimitSet.Measurements ; + cim:IdentifiedObject.description "ACC_LIMSET_1" ; + cim:IdentifiedObject.mRID "44e63d79-6b05-4c64-b490-d181863af7da" ; + cim:IdentifiedObject.name "ACC_LIMSET_1" ; + cim:LimitSet.isPercentageLimits "false" . + + a cim:AccumulatorValue ; + cim:AccumulatorValue.Accumulator ; + cim:IdentifiedObject.description "ACC_VALUE_1" ; + cim:IdentifiedObject.mRID "472aa91b-8524-4e17-ba84-ef74eacd507e" ; + cim:IdentifiedObject.name "ACC_VALUE_1" ; + cim:MeasurementValue.MeasurementValueSource ; + cim:MeasurementValue.sensorAccuracy "98" ; + cim:MeasurementValue.timeStamp "2015-12-02T16:06:06" . + + a cim:AnalogValue ; + cim:AnalogValue.Analog ; + cim:IdentifiedObject.description "ANA_VALUE_1" ; + cim:IdentifiedObject.mRID "56f7410b-7c71-4ea4-b25f-6e0b2fe9b1f6" ; + cim:IdentifiedObject.name "ANA_VALUE_2" ; + cim:MeasurementValue.MeasurementValueSource ; + cim:MeasurementValue.sensorAccuracy "98.0" ; + cim:MeasurementValue.timeStamp "2015-12-02T16:06:06" . + + a cim:AnalogLimitSet ; + cim:AnalogLimitSet.Measurements ; + cim:IdentifiedObject.description "ANA_LIMSET_1" ; + cim:IdentifiedObject.mRID "66d4d5fc-bad5-4654-b4fe-6ed133bf6096" ; + cim:IdentifiedObject.name "ANA_LIMSET_1" ; + cim:LimitSet.isPercentageLimits "false" . + + a cim:Accumulator ; + cim:IdentifiedObject.description "ACCUM_1" ; + cim:IdentifiedObject.mRID "74b45ece-3d90-4356-86ab-985a86bc0064" ; + cim:IdentifiedObject.name "ACCUM_1" ; + cim:Measurement.PowerSystemResource ; + cim:Measurement.Terminal ; + cim:Measurement.measurementType "ActiveEnergy" ; + cim:Measurement.phases cim:PhaseCode.ABC ; + cim:Measurement.unitMultiplier cim:UnitMultiplier.M ; + cim:Measurement.unitSymbol cim:UnitSymbol.Wh . + + a cim:RaiseLowerCommand ; + cim:AnalogControl.AnalogValue ; + cim:AnalogControl.maxValue "39.99" ; + cim:AnalogControl.minValue "19.99" ; + cim:Control.PowerSystemResource ; + cim:Control.controlType "ThreePhaseActivePower" ; + cim:Control.operationInProgress "true" ; + cim:Control.timeStamp "2015-12-02T16:06:06" ; + cim:Control.unitMultiplier cim:UnitMultiplier.M ; + cim:Control.unitSymbol cim:UnitSymbol.W ; + cim:IdentifiedObject.description "CMD_RL_1" ; + cim:IdentifiedObject.mRID "8176be1d-346d-4869-a3f7-6ba57de63f2f" ; + cim:IdentifiedObject.name "CMD_RL_1" ; + cim:RaiseLowerCommand.ValueAliasSet . + + a cim:SetPoint ; + cim:AnalogControl.AnalogValue ; + cim:AnalogControl.maxValue "320.0" ; + cim:AnalogControl.minValue "120.0" ; + cim:Control.PowerSystemResource ; + cim:Control.controlType "ThreePhaseActivePower" ; + cim:Control.operationInProgress "true" ; + cim:Control.timeStamp "2015-12-02T16:06:06" ; + cim:Control.unitMultiplier cim:UnitMultiplier.M ; + cim:Control.unitSymbol cim:UnitSymbol.W ; + cim:IdentifiedObject.description "SET_PNT_1" ; + cim:IdentifiedObject.mRID "87478acb-cd1f-40a6-b4a7-59ec99f8b063" ; + cim:IdentifiedObject.name "SET_PNT_1" ; + cim:SetPoint.normalValue "156.00" ; + cim:SetPoint.value "250.0" . + + a cim:Analog ; + cim:Analog.positiveFlowIn "true" ; + cim:IdentifiedObject.description "Analog_1" ; + cim:IdentifiedObject.mRID "8ad6521e-06a9-4ce9-be0e-00a686fb29e3" ; + cim:IdentifiedObject.name "ANA_1" ; + cim:Measurement.PowerSystemResource ; + cim:Measurement.Terminal ; + cim:Measurement.measurementType "ThreePhaseActivePower" ; + cim:Measurement.phases cim:PhaseCode.ABC ; + cim:Measurement.unitMultiplier cim:UnitMultiplier.M ; + cim:Measurement.unitSymbol cim:UnitSymbol.W . + + a cim:StringMeasurementValue ; + cim:IdentifiedObject.description "STR_MEA_V_1" ; + cim:IdentifiedObject.mRID "bbb0ad5d-97e7-449c-9840-115cfca328cc" ; + cim:IdentifiedObject.name "STR_MEA_V_1" ; + cim:MeasurementValue.MeasurementValueSource ; + cim:MeasurementValue.sensorAccuracy "97.00" ; + cim:MeasurementValue.timeStamp "2015-12-02T16:06:06" ; + cim:StringMeasurementValue.StringMeasurement . + + a cim:StringMeasurement ; + cim:IdentifiedObject.description "STR_MEAS_1" ; + cim:IdentifiedObject.mRID "caa5c91e-d25c-4dd2-8ac2-c36c4eeaa40e" ; + cim:IdentifiedObject.name "STR_MEAS_1" ; + cim:Measurement.PowerSystemResource ; + cim:Measurement.Terminal ; + cim:Measurement.measurementType "ThreePhasePower" ; + cim:Measurement.phases cim:PhaseCode.ABC ; + cim:Measurement.unitMultiplier cim:UnitMultiplier.none ; + cim:Measurement.unitSymbol cim:UnitSymbol.none . + + a cim:MeasurementValueSource ; + cim:IdentifiedObject.description "ICCP" ; + cim:IdentifiedObject.mRID "d7848aed-83b4-43b5-b54f-c96d1ebe03d5" ; + cim:IdentifiedObject.name "ICCP" . + + a cim:AnalogValue ; + cim:AnalogValue.Analog ; + cim:IdentifiedObject.description "ANA_VALUE_1" ; + cim:IdentifiedObject.mRID "e3883f88-b2d8-4732-95a9-4fd9204a2300" ; + cim:IdentifiedObject.name "ANA_VALUE_1" ; + cim:MeasurementValue.MeasurementValueSource ; + cim:MeasurementValue.sensorAccuracy "98.0" ; + cim:MeasurementValue.timeStamp "2015-12-02T16:06:06" . + + a cim:DiscreteValue ; + cim:DiscreteValue.Discrete ; + cim:IdentifiedObject.description "DIS_VALUE_1" ; + cim:IdentifiedObject.mRID "ec43b60a-0741-4788-9079-bdac365110f4" ; + cim:IdentifiedObject.name "DIS_VALUE_1" ; + cim:MeasurementValue.MeasurementValueSource ; + cim:MeasurementValue.sensorAccuracy "98" ; + cim:MeasurementValue.timeStamp "2015-12-02T16:06:06" . + + a cim:Command ; + cim:Command.DiscreteValue ; + cim:Command.ValueAliasSet ; + cim:Command.normalValue "0" ; + cim:Command.value "0" ; + cim:Control.PowerSystemResource ; + cim:Control.controlType "SwitchPosition" ; + cim:Control.operationInProgress "true" ; + cim:Control.timeStamp "2015-12-02T16:06:06" ; + cim:Control.unitMultiplier cim:UnitMultiplier.none ; + cim:Control.unitSymbol cim:UnitSymbol.none ; + cim:IdentifiedObject.description "CMD_1" ; + cim:IdentifiedObject.mRID "f088ed67-3917-4153-9418-2acbb10024a5" ; + cim:IdentifiedObject.name "CMD_1" . + + a cim:AccumulatorLimit ; + cim:AccumulatorLimit.LimitSet ; + cim:AccumulatorLimit.value "99" ; + cim:IdentifiedObject.description "ACCUM_LIM_1" ; + cim:IdentifiedObject.mRID "f37786d0-b118-4b92-bafb-326eac2a3877" ; + cim:IdentifiedObject.name "ACCUM_LIM_1" . + + a cim:AnalogLimit ; + cim:AnalogLimit.LimitSet ; + cim:AnalogLimit.value "99" ; + cim:IdentifiedObject.description "ANA_LIM_1" ; + cim:IdentifiedObject.mRID "fc908c16-468f-4a64-ba74-6f57175e0005" ; + cim:IdentifiedObject.name "ANA_LIM_1" . +} \ No newline at end of file diff --git a/rdf-improved/test/trig/FullGrid_OP_diff.trig b/rdf-improved/test/trig/FullGrid_OP_diff.trig new file mode 100644 index 0000000..6e1374f --- /dev/null +++ b/rdf-improved/test/trig/FullGrid_OP_diff.trig @@ -0,0 +1,32 @@ + +@prefix rdf: . +@prefix cim: . +@prefix dm: . +@prefix eu: . +@prefix md: . + + a dm:DifferenceModel ; + dm:forwardDifferences ; + dm:reverseDifferences ; + md:Model.DependentOn ; + md:Model.Supersedes ; + md:Model.created "2021-11-19T23:16:27Z" ; + md:Model.description "CGMES Conformity Assessment Test Configuration. The Test Configuration is owned by ENTSO-E and is provided by ENTSO-E “as it is”. To the fullest extent permitted by law, ENTSO-E shall not be liable for any damages of any kind arising out of the use of the model (including any of its subsequent modifications). ENTSO-E neither warrants, nor represents that the use of the model will not infringe the rights of third parties. Any use of the model shall include a reference to ENTSO-E. ENTSO-E web site is the only official source of information related to the model." ; + md:Model.modelingAuthoritySet "http://fullgrid.eu/CGMES/3.0" ; + md:Model.profile "http://iec.ch/TC57/ns/CIM/Operation-EU/3.0" ; + md:Model.scenarioTime "2021-02-09T19:30:00Z" ; + md:Model.version "001" . + + + + { # reverseDifferences + cim:IdentifiedObject.description "SET_PNT_1" . + + cim:AnalogLimit.value "99" . +} + + { # forwardDifferences + cim:IdentifiedObject.description "SET_PNT_1 test" . + + cim:AnalogLimit.value "100" . +} \ No newline at end of file diff --git a/rdf-improved/test/trig/FullGrid_SC_diff.trig b/rdf-improved/test/trig/FullGrid_SC_diff.trig new file mode 100644 index 0000000..6cb739d --- /dev/null +++ b/rdf-improved/test/trig/FullGrid_SC_diff.trig @@ -0,0 +1,32 @@ + +@prefix rdf: . +@prefix cim: . +@prefix dm: . +@prefix eu: . +@prefix md: . + + a dm:DifferenceModel ; + dm:forwardDifferences ; + dm:reverseDifferences ; + md:Model.DependentOn ; + md:Model.Supersedes ; + md:Model.created "2021-11-19T23:16:27Z" ; + md:Model.description "CGMES Conformity Assessment Test Configuration. The Test Configuration is owned by ENTSO-E and is provided by ENTSO-E “as it is”. To the fullest extent permitted by law, ENTSO-E shall not be liable for any damages of any kind arising out of the use of the model (including any of its subsequent modifications). ENTSO-E neither warrants, nor represents that the use of the model will not infringe the rights of third parties. Any use of the model shall include a reference to ENTSO-E. ENTSO-E web site is the only official source of information related to the model." ; + md:Model.modelingAuthoritySet "http://fullgrid.eu/CGMES/3.0" ; + md:Model.profile "http://iec.ch/TC57/ns/CIM/ShortCircuit-EU/3.0" ; + md:Model.scenarioTime "2021-02-09T19:30:00Z" ; + md:Model.version "001" . + + + + { # reverseDifferences + cim:EarthFaultCompensator.r "9.99" . + + cim:SynchronousMachine.earthing "true" . +} + + { # forwardDifferences + cim:EarthFaultCompensator.r "10" . + + cim:SynchronousMachine.earthing "false" . +} \ No newline at end of file diff --git a/rdf-improved/test/trig/MicroGrid-Assembled-DL_diff.trig b/rdf-improved/test/trig/MicroGrid-Assembled-DL_diff.trig new file mode 100644 index 0000000..b91da36 --- /dev/null +++ b/rdf-improved/test/trig/MicroGrid-Assembled-DL_diff.trig @@ -0,0 +1,8966 @@ + +@prefix rdf: . +@prefix cim: . +@prefix dm: . +@prefix eu: . +@prefix md: . + + a dm:DifferenceModel ; + dm:forwardDifferences ; + dm:reverseDifferences ; + md:Model.DependentOn ; + md:Model.DependentOn ; + md:Model.Supersedes ; + md:Model.created "2021-11-19T23:16:27Z" ; + md:Model.description "CGMES Conformity Assessment Test Configuration. The Test Configuration is owned by ENTSO-E and is provided by ENTSO-E “as it is”. To the fullest extent permitted by law, ENTSO-E shall not be liable for any damages of any kind arising out of the use of the model (including any of its subsequent modifications). ENTSO-E neither warrants, nor represents that the use of the model will not infringe the rights of third parties. Any use of the model shall include a reference to ENTSO-E. ENTSO-E web site is the only official source of information related to the model." ; + md:Model.modelingAuthoritySet "http://tennet.nl/CGMES" ; + md:Model.profile "http://iec.ch/TC57/ns/CIM/DiagramLayout-EU/3.0" ; + md:Model.scenarioTime "2021-03-25T15:30:00Z" ; + md:Model.version "001" . + + + + { # reverseDifferences + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "3" ; + cim:DiagramObjectPoint.xPosition "661.1736" ; + cim:DiagramObjectPoint.yPosition "206.375" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "430" ; + cim:DiagramObjectPoint.yPosition "214" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "019ef9d5-4c45-f74d-5132-39fb7da2af81" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "3" ; + cim:DiagramObjectPoint.xPosition "663.3358" ; + cim:DiagramObjectPoint.yPosition "114.0391" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "256" ; + cim:DiagramObjectPoint.yPosition "196" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "643.9958" ; + cim:DiagramObjectPoint.yPosition "116" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "336" ; + cim:DiagramObjectPoint.yPosition "256" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "437.8854" ; + cim:DiagramObjectPoint.yPosition "157.4271" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "4" ; + cim:DiagramObjectPoint.xPosition "643.9958" ; + cim:DiagramObjectPoint.yPosition "206.375" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "06860db8-e1c6-e18f-4e4d-39fb7da2af84" ; + cim:IdentifiedObject.name "GR-BE-Inj-XCA_AL11-1413600188" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "099f9e11-34a6-f1b5-e1de-39fb7da2af81" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "100" ; + cim:DiagramObjectPoint.yPosition "190" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "0bbca635-cbcb-4638-0d60-39fb7da2af81" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "0c0392c2-6ba8-dc84-f2e2-39fb7da2af84" ; + cim:IdentifiedObject.name "GR-BE-Load_1-1132341825" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "0c305168-ac23-44c5-f406-39fb7da2af86" ; + cim:IdentifiedObject.name "G-Link-354409038" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "301.7" ; + cim:DiagramObjectPoint.yPosition "86" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "270" ; + cim:DiagramObjectPoint.yPosition "172" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "426.2" ; + cim:DiagramObjectPoint.yPosition "214" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "1163f3fd-2c34-9374-da3b-39fb7da2af85" ; + cim:IdentifiedObject.name "GR-BE_S1-265097752" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "283.2062" ; + cim:DiagramObjectPoint.yPosition "156" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "126b9b98-0957-8c1d-6167-39fb7da2af85" ; + cim:IdentifiedObject.name "GR-L-412002467" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "130a8dfd-959e-e7e4-d4cf-39fb7da2af84" ; + cim:IdentifiedObject.name "GR-L-1712449918" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "437.8854" ; + cim:DiagramObjectPoint.yPosition "130" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "438" ; + cim:DiagramObjectPoint.yPosition "216" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "160b8549-e559-e056-4128-39fb7da2af85" ; + cim:IdentifiedObject.name "GR-BE-Line_7-1366516707" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "3" ; + cim:DiagramObjectPoint.xPosition "302.7938" ; + cim:DiagramObjectPoint.yPosition "145.5208" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "230" ; + cim:DiagramObjectPoint.yPosition "216" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "-89.8" ; + cim:IdentifiedObject.mRID "17045431-5186-7322-809b-39fb7da2af85" ; + cim:IdentifiedObject.name "GR-NL_TR2_2-25822384" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "437.8854" ; + cim:DiagramObjectPoint.yPosition "96.57291" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "438" ; + cim:DiagramObjectPoint.yPosition "170" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "738" ; + cim:DiagramObjectPoint.yPosition "175.2" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "-90" ; + cim:IdentifiedObject.mRID "1aa864ff-bdea-4937-db50-39fb7da2af84" ; + cim:IdentifiedObject.name "GR-BE-TR3_1-2077564634" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "302" ; + cim:DiagramObjectPoint.yPosition "148" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "1c24a6b6-106d-5f14-2a6b-39fb7da2af84" ; + cim:IdentifiedObject.name "GR-L-1519229870" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "1cd51f72-e422-f42f-164b-39fb7da2af85" ; + cim:IdentifiedObject.name "GR-L-1326432400" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "284" ; + cim:DiagramObjectPoint.yPosition "182" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "180" ; + cim:DiagramObjectPoint.yPosition "86" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "1f82307b-224c-5b52-8477-39fb7da2af84" ; + cim:IdentifiedObject.name "GR-L-1163897995" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "438" ; + cim:DiagramObjectPoint.yPosition "124" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "1ff716d4-9ec2-de73-6bbc-39fb7da2af86" ; + cim:IdentifiedObject.name "G-Link-354408595" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "444" ; + cim:DiagramObjectPoint.yPosition "100" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "567.7958" ; + cim:DiagramObjectPoint.yPosition "93.92693" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "293" ; + cim:DiagramObjectPoint.yPosition "156" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "-90" ; + cim:IdentifiedObject.mRID "222ab4d4-8a49-06f3-ec97-39fb7da2af85" ; + cim:IdentifiedObject.name "GR-NL-Load_1-704664914" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "567.7958" ; + cim:DiagramObjectPoint.yPosition "129.6451" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "240" ; + cim:DiagramObjectPoint.yPosition "110" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "100" ; + cim:DiagramObjectPoint.yPosition "166" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "322" ; + cim:DiagramObjectPoint.yPosition "78" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "4" ; + cim:DiagramObjectPoint.xPosition "643.9958" ; + cim:DiagramObjectPoint.yPosition "114.0391" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "200.1557" ; + cim:DiagramObjectPoint.yPosition "216" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "445.8" ; + cim:DiagramObjectPoint.yPosition "214" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "437.8854" ; + cim:DiagramObjectPoint.yPosition "215.2473" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "2f14d750-5f1c-c7f0-828f-39fb7da2af81" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "30273e63-d259-660a-e2e3-39fb7da2af86" ; + cim:IdentifiedObject.name "G-Link-354408513" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "644" ; + cim:DiagramObjectPoint.yPosition "81.3" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "317503ed-2414-da1c-24ed-39fb7da2af81" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "-90" ; + cim:IdentifiedObject.mRID "327060bc-1576-7ee2-fdd3-39fb7da2af85" ; + cim:IdentifiedObject.name "GR-NL-G1-145382758" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "438" ; + cim:DiagramObjectPoint.yPosition "88" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "3333a803-f5b3-105f-15de-39fb7da2af81" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "146" ; + cim:DiagramObjectPoint.yPosition "190" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "35618b32-037a-0171-912a-39fb7da2af84" ; + cim:IdentifiedObject.name "GR-BE-Inj-XZE_ST24-78955718" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "360f54e8-158e-16ff-0bfb-39fb7da2af85" ; + cim:IdentifiedObject.name "GR-BE_S2-252010594" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "222.2" ; + cim:DiagramObjectPoint.yPosition "152" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "37cb9d70-0f47-0251-6073-39fb7da2af85" ; + cim:IdentifiedObject.name "GR-BE-Load_2-664013061" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "390b0090-fd77-d447-d30e-39fb7da2af85" ; + cim:IdentifiedObject.name "GR-L-1259515836" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "3a7c07a4-981d-01d7-8816-39fb7da2af84" ; + cim:IdentifiedObject.name "GR-L-1962060451" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "284" ; + cim:DiagramObjectPoint.yPosition "164" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "568" ; + cim:DiagramObjectPoint.yPosition "147.9" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "3da63568-6c5e-54dc-11e9-39fb7da2af81" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "3e3a5430-e16e-7428-ffc0-39fb7da2af85" ; + cim:IdentifiedObject.name "GR-L-1414387645" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "290.931" ; + cim:DiagramObjectPoint.yPosition "110" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "3" ; + cim:DiagramObjectPoint.xPosition "162.7188" ; + cim:DiagramObjectPoint.yPosition "189.1771" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "3f5fcd49-4e27-5c8c-7af0-39fb7da2af7e" ; + cim:IdentifiedObject.name "G-Link-354409015" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "643.9958" ; + cim:DiagramObjectPoint.yPosition "243.4174" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "335.7563" ; + cim:DiagramObjectPoint.yPosition "234.1563" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "4556aeff-1a4a-fd71-11be-39fb7da2af85" ; + cim:IdentifiedObject.name "GR-NL-Line_3-1522111161" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "367.7708" ; + cim:DiagramObjectPoint.yPosition "243.4167" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "688" ; + cim:DiagramObjectPoint.yPosition "216" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "467d3d1e-f96f-acb5-c8b8-39fb7da2af80" ; + cim:IdentifiedObject.name "G-Link-354408573" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "4" ; + cim:DiagramObjectPoint.xPosition "179.9167" ; + cim:DiagramObjectPoint.yPosition "189.1771" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "-89.5" ; + cim:IdentifiedObject.mRID "47f63ddd-965b-d6fd-e0d7-39fb7da2af85" ; + cim:IdentifiedObject.name "GR-NL-TR2_1-1902947644" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "444" ; + cim:DiagramObjectPoint.yPosition "166" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "765.3542" ; + cim:DiagramObjectPoint.yPosition "191.8229" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "4a309c3b-78a7-8ca8-9e59-39fb7da2af85" ; + cim:IdentifiedObject.name "GR-BE-Line_2-1618371762" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "580" ; + cim:DiagramObjectPoint.yPosition "166" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "4cbecbba-54c6-3ce8-7659-39fb7da2af85" ; + cim:IdentifiedObject.name "GR-L-956945829" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "3" ; + cim:DiagramObjectPoint.xPosition "717.9335" ; + cim:DiagramObjectPoint.yPosition "215.6354" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "368" ; + cim:DiagramObjectPoint.yPosition "252" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "4d428912-7981-161b-a501-39fb7da2af85" ; + cim:IdentifiedObject.name "GR-BE-TR2_3-266970206" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "3" ; + cim:DiagramObjectPoint.xPosition "290.931" ; + cim:DiagramObjectPoint.yPosition "109.8021" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "240" ; + cim:DiagramObjectPoint.yPosition "216" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "438" ; + cim:DiagramObjectPoint.yPosition "247.9" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "3" ; + cim:DiagramObjectPoint.xPosition "254.9966" ; + cim:DiagramObjectPoint.yPosition "215.6354" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "504175f2-4ba9-2078-dbd8-39fb7da2af85" ; + cim:IdentifiedObject.name "GR-L-1997329201" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "-90" ; + cim:IdentifiedObject.mRID "5073a386-d357-79b8-a068-39fb7da2af85" ; + cim:IdentifiedObject.name "GR-NL-Inj-XWI_GY11-486907852" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "335.7563" ; + cim:DiagramObjectPoint.yPosition "203.7292" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "335.7563" ; + cim:DiagramObjectPoint.yPosition "252" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "51fa4360-9e0a-f493-e002-39fb7da2af86" ; + cim:IdentifiedObject.name "G-Link-354409049" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "521430de-90d7-0417-a0dd-39fb7da2af84" ; + cim:IdentifiedObject.name "GR-BE-G1-330853274" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "438" ; + cim:DiagramObjectPoint.yPosition "250.2" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "438" ; + cim:DiagramObjectPoint.yPosition "166" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "-90" ; + cim:IdentifiedObject.mRID "527833a7-b84b-8661-4285-39fb7da2af84" ; + cim:IdentifiedObject.name "GR-NL-Inj-XKA_MA11-182978626" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "529bc239-186c-5ef9-ac0d-39fb7da2af85" ; + cim:IdentifiedObject.name "GR-L-751811171" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "759.3542" ; + cim:DiagramObjectPoint.yPosition "191.8229" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "-89.2" ; + cim:IdentifiedObject.mRID "53eb83ca-b82b-9d4e-fbfa-39fb7da2af84" ; + cim:IdentifiedObject.name "GR-NL_TR2_3-1833298703" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "643.9958" ; + cim:DiagramObjectPoint.yPosition "214.3137" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "737.9229" ; + cim:DiagramObjectPoint.yPosition "244" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "252.2" ; + cim:DiagramObjectPoint.yPosition "196" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "682.625" ; + cim:DiagramObjectPoint.yPosition "113.7708" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "57e6bfd4-dd22-64a7-d1c5-39fb7da2af81" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "180" ; + cim:DiagramObjectPoint.yPosition "76" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "58a55440-3afa-4369-3dae-39fb7da2af84" ; + cim:IdentifiedObject.name "GR-SVC-1230797516-321439582" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "58c4516e-0bf9-bd01-5499-39fb7da2af81" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "567.7958" ; + cim:DiagramObjectPoint.yPosition "157.4271" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "5a037b6f-92a5-4dea-741c-39fb7da2af86" ; + cim:IdentifiedObject.name "G-Link-354408554" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "4" ; + cim:DiagramObjectPoint.xPosition "269.875" ; + cim:DiagramObjectPoint.yPosition "215.6354" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "180" ; + cim:DiagramObjectPoint.yPosition "238" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "5b42c603-e8ce-b062-4139-39fb7da2af85" ; + cim:IdentifiedObject.name "GR-BE-Inj-XKA_MA11-1735199274" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "655.8" ; + cim:DiagramObjectPoint.yPosition "88" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "5df00684-9350-95be-df85-39fb7da2af85" ; + cim:IdentifiedObject.name "GR-L-444386168" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "309.5" ; + cim:DiagramObjectPoint.yPosition "86" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "5f069b7a-3de0-9631-eddb-39fb7da2af84" ; + cim:IdentifiedObject.name "GR-BE-Inj-XZE_ST23-1448023129" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "437.8854" ; + cim:DiagramObjectPoint.yPosition "94" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "177.5" ; + cim:DiagramObjectPoint.yPosition "86" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "62ee083b-e703-4e52-6aa1-39fb7da2af85" ; + cim:IdentifiedObject.name "GR-BE-Line_6-2084691096" . + + a cim:Diagram ; + cim:Diagram.orientation cim:OrientationKind.negative ; + cim:IdentifiedObject.mRID "634dea3f-e2a6-36d0-d25c-39fb7da2af7d" ; + cim:IdentifiedObject.name "Assembled" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "353.9583" ; + cim:DiagramObjectPoint.yPosition "244.7396" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "63ae4d75-b66c-0faa-b7b5-39fb7da2af84" ; + cim:IdentifiedObject.name "GR-BE-TR2_2-1357561524" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "568" ; + cim:DiagramObjectPoint.yPosition "176.5" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "228" ; + cim:DiagramObjectPoint.yPosition "152" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "613.9996" ; + cim:DiagramObjectPoint.yPosition "116.1873" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "438" ; + cim:DiagramObjectPoint.yPosition "198" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "67d1141f-e4e8-58f6-b501-39fb7da2af86" ; + cim:IdentifiedObject.name "G-Link-354408541" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "68b8b7d0-b858-4b32-69b1-39fb7da2af85" ; + cim:IdentifiedObject.name "GR-L-108027093" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "69737775-5a6c-5ac7-1953-39fb7da2af86" ; + cim:IdentifiedObject.name "G-Link-354409027" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "321.4688" ; + cim:DiagramObjectPoint.yPosition "251.3542" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "568" ; + cim:DiagramObjectPoint.yPosition "166" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "322" ; + cim:DiagramObjectPoint.yPosition "86" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "3" ; + cim:DiagramObjectPoint.xPosition "210.0364" ; + cim:DiagramObjectPoint.yPosition "109.9902" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "6e33646a-c005-a677-a091-39fb7da2af84" ; + cim:IdentifiedObject.name "GR-L-590160729" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "426" ; + cim:DiagramObjectPoint.yPosition "100" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "757.8" ; + cim:DiagramObjectPoint.yPosition "204" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "7451f968-de50-1a23-2527-39fb7da2af84" ; + cim:IdentifiedObject.name "GR-L-82826021" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "335.7563" ; + cim:DiagramObjectPoint.yPosition "215.6354" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "422.2" ; + cim:DiagramObjectPoint.yPosition "100" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "250" ; + cim:DiagramObjectPoint.yPosition "110" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "368" ; + cim:DiagramObjectPoint.yPosition "234" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "697.9999" ; + cim:DiagramObjectPoint.yPosition "216.0349" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "426" ; + cim:DiagramObjectPoint.yPosition "138" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "789399cf-2f9b-0e28-fae2-39fb7da2af85" ; + cim:IdentifiedObject.name "GR-L-501948729" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "7996889d-b7e0-b3bd-055d-39fb7da2af81" ; + cim:IdentifiedObject.name "GR-L-1230804819-795098234" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "437.8854" ; + cim:DiagramObjectPoint.yPosition "244" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "270" ; + cim:DiagramObjectPoint.yPosition "246" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "438" ; + cim:DiagramObjectPoint.yPosition "99.9" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "438" ; + cim:DiagramObjectPoint.yPosition "138.1" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "702.623" ; + cim:DiagramObjectPoint.yPosition "114.0501" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "240" ; + cim:DiagramObjectPoint.yPosition "155" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "7fee9664-b00b-5cc0-91ed-39fb7da2af85" ; + cim:IdentifiedObject.name "GR-NL-Line_2-1694985016" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "4" ; + cim:DiagramObjectPoint.xPosition "321.9979" ; + cim:DiagramObjectPoint.yPosition "150.8125" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "4" ; + cim:DiagramObjectPoint.xPosition "737.9229" ; + cim:DiagramObjectPoint.yPosition "181.2396" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "837a7d94-c576-34c6-d8d7-39fb7da2af85" ; + cim:IdentifiedObject.name "GR-L-1192632359" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "447.8" ; + cim:DiagramObjectPoint.yPosition "248" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "438" ; + cim:DiagramObjectPoint.yPosition "166" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "-90" ; + cim:IdentifiedObject.mRID "85439b66-c718-55b1-56aa-39fb7da2af84" ; + cim:IdentifiedObject.name "GR-NL-S1-23474354" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "321.9979" ; + cim:DiagramObjectPoint.yPosition "96.57291" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "444" ; + cim:DiagramObjectPoint.yPosition "248" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "8694b1f7-ba70-1bf6-707b-39fb7da2af84" ; + cim:IdentifiedObject.name "GR-L-1994603755" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "-90" ; + cim:IdentifiedObject.mRID "87a1a7a2-7692-e053-30f4-39fb7da2af85" ; + cim:IdentifiedObject.name "GR-NL-Inj-XZE_ST23-435758727" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "424.2" ; + cim:DiagramObjectPoint.yPosition "248" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "254.9966" ; + cim:DiagramObjectPoint.yPosition "216" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "330" ; + cim:DiagramObjectPoint.yPosition "259.8" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "-90" ; + cim:IdentifiedObject.mRID "8c0282f9-7de1-41bb-ca78-39fb7da2af85" ; + cim:IdentifiedObject.name "GR-NL-G2-1540646227" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "428" ; + cim:DiagramObjectPoint.yPosition "166" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "8ce7df60-0510-5f4c-bcaf-39fb7da2af85" ; + cim:IdentifiedObject.name "GR-NL-Line_1-1770209197" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "763.8" ; + cim:DiagramObjectPoint.yPosition "204" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "284" ; + cim:DiagramObjectPoint.yPosition "156" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "643.9958" ; + cim:DiagramObjectPoint.yPosition "88" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "437.8854" ; + cim:DiagramObjectPoint.yPosition "204" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "438" ; + cim:DiagramObjectPoint.yPosition "99.9" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "9578ce66-d8aa-97b1-e45e-39fb7da2af86" ; + cim:IdentifiedObject.name "G-Link-354408421" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "438" ; + cim:DiagramObjectPoint.yPosition "152" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "98c2cd9c-0736-8fab-c7a3-39fb7da2af84" ; + cim:IdentifiedObject.name "GR-L-1006053890" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "160.2" ; + cim:DiagramObjectPoint.yPosition "132" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "422.2" ; + cim:DiagramObjectPoint.yPosition "138" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "9a2479b6-0ee9-e1a5-09a4-39fb7da2af85" ; + cim:IdentifiedObject.name "GR-BE-G2-569000708" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "3" ; + cim:DiagramObjectPoint.xPosition "283.2062" ; + cim:DiagramObjectPoint.yPosition "150.8125" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "678.0001" ; + cim:DiagramObjectPoint.yPosition "215.9651" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "438" ; + cim:DiagramObjectPoint.yPosition "104" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "9b802cf4-9855-cb9a-03ed-39fb7da2af81" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "438" ; + cim:DiagramObjectPoint.yPosition "138.1" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "9ba97fe9-1a9b-62e6-785d-39fb7da2af85" ; + cim:IdentifiedObject.name "GR-L-1648984860" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "437.8854" ; + cim:DiagramObjectPoint.yPosition "130" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "-90" ; + cim:IdentifiedObject.mRID "9d9ce49c-954f-930c-fe32-39fb7da2af85" ; + cim:IdentifiedObject.name "GR-NL-Inj-XZE_ST24-835537239" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "9f3fc709-7799-dc2a-fbc5-39fb7da2af85" ; + cim:IdentifiedObject.name "GR-BE-Line_1-1392653407" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "9f578172-e608-ca43-3663-39fb7da2af85" ; + cim:IdentifiedObject.name "GR-NL-Line_4-1027009775" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "363.9583" ; + cim:DiagramObjectPoint.yPosition "244.7396" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "100" ; + cim:DiagramObjectPoint.yPosition "190" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "438" ; + cim:DiagramObjectPoint.yPosition "247.9" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "a1f5fa4a-252b-3a25-dac0-39fb7da2af85" ; + cim:IdentifiedObject.name "GR-BE-Inj-XWI_GY11-1033807006" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "260" ; + cim:DiagramObjectPoint.yPosition "110" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "583.8" ; + cim:DiagramObjectPoint.yPosition "148" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "a40e4afc-2b15-a171-f011-39fb7da2af81" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "336" ; + cim:DiagramObjectPoint.yPosition "258" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "444" ; + cim:DiagramObjectPoint.yPosition "138" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "581.7" ; + cim:DiagramObjectPoint.yPosition "134.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "580" ; + cim:DiagramObjectPoint.yPosition "148" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "269.875" ; + cim:DiagramObjectPoint.yPosition "215.6354" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "270" ; + cim:IdentifiedObject.mRID "ab7515c4-6ca1-5747-fd53-39fb7da2af85" ; + cim:IdentifiedObject.name "GR-SER-RLC-1230822986-763959145" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "447.8" ; + cim:DiagramObjectPoint.yPosition "100" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "4" ; + cim:DiagramObjectPoint.xPosition "737.9229" ; + cim:DiagramObjectPoint.yPosition "215.6354" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "663.3358" ; + cim:DiagramObjectPoint.yPosition "113.7708" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "321.9979" ; + cim:DiagramObjectPoint.yPosition "129.6474" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "b2e504c0-348d-7fad-5e09-39fb7da2af81" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "240" ; + cim:DiagramObjectPoint.yPosition "142" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "b668f530-d16f-498c-fc96-39fb7da2af85" ; + cim:IdentifiedObject.name "GR-BE-Line_4-687714713" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "438" ; + cim:DiagramObjectPoint.yPosition "213.9" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "568" ; + cim:DiagramObjectPoint.yPosition "134.6" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "126" ; + cim:DiagramObjectPoint.yPosition "190" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "437.8854" ; + cim:DiagramObjectPoint.yPosition "244" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "692.624" ; + cim:DiagramObjectPoint.yPosition "113.9105" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "737.9229" ; + cim:DiagramObjectPoint.yPosition "204" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "bb421b7f-ac60-6476-5e51-39fb7da2af86" ; + cim:IdentifiedObject.name "G-Link-354408484" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "438" ; + cim:DiagramObjectPoint.yPosition "213.9" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "-90" ; + cim:IdentifiedObject.mRID "bff6eeab-84d4-9448-ae75-39fb7da2af85" ; + cim:IdentifiedObject.name "GR-NL-Load_2-199595741" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "302.7938" ; + cim:DiagramObjectPoint.yPosition "148" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "270" ; + cim:DiagramObjectPoint.yPosition "196" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "330" ; + cim:DiagramObjectPoint.yPosition "256" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "428" ; + cim:DiagramObjectPoint.yPosition "248" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "240" ; + cim:DiagramObjectPoint.yPosition "152" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "-90" ; + cim:IdentifiedObject.mRID "c6517348-5a20-082a-de47-39fb7da2af85" ; + cim:IdentifiedObject.name "GR-NL-G3-1272157758" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "594" ; + cim:DiagramObjectPoint.yPosition "116" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "4" ; + cim:DiagramObjectPoint.xPosition "239.9771" ; + cim:DiagramObjectPoint.yPosition "145.5208" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "ca9165d3-17dd-6a20-865a-39fb7da2af85" ; + cim:IdentifiedObject.name "GR-L-1633734589" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "cbb01f94-c042-6779-07fb-39fb7da2af85" ; + cim:IdentifiedObject.name "GR-L-1977885975" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "164" ; + cim:DiagramObjectPoint.yPosition "132" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "438" ; + cim:DiagramObjectPoint.yPosition "240" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "424.2" ; + cim:DiagramObjectPoint.yPosition "166" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "447.8" ; + cim:DiagramObjectPoint.yPosition "138" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "737.9229" ; + cim:DiagramObjectPoint.yPosition "191.8229" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "180" ; + cim:DiagramObjectPoint.yPosition "132" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "322" ; + cim:DiagramObjectPoint.yPosition "158" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "583.8" ; + cim:DiagramObjectPoint.yPosition "166" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "447.8" ; + cim:DiagramObjectPoint.yPosition "166" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "438" ; + cim:DiagramObjectPoint.yPosition "140" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "438" ; + cim:DiagramObjectPoint.yPosition "158" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "3" ; + cim:DiagramObjectPoint.xPosition "720.7014" ; + cim:DiagramObjectPoint.yPosition "181.2396" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "3" ; + cim:DiagramObjectPoint.xPosition "200.1557" ; + cim:DiagramObjectPoint.yPosition "215.6354" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "343.9583" ; + cim:DiagramObjectPoint.yPosition "244.7396" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "136" ; + cim:DiagramObjectPoint.yPosition "190" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "659.8" ; + cim:DiagramObjectPoint.yPosition "88" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "757.8" ; + cim:DiagramObjectPoint.yPosition "244" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "d49995f0-556b-74c3-59fe-39fb7da2af84" ; + cim:IdentifiedObject.name "GR-L-633459252" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "573.9" ; + cim:DiagramObjectPoint.yPosition "134.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "100" ; + cim:DiagramObjectPoint.yPosition "210" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "d77f1c30-229e-7304-d55b-39fb7da2af84" ; + cim:IdentifiedObject.name "GR-L-1522016781" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "4" ; + cim:DiagramObjectPoint.xPosition "179.9167" ; + cim:DiagramObjectPoint.yPosition "109.9902" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "d7ac5983-b49d-5ce2-f8e1-39fb7da2af85" ; + cim:IdentifiedObject.name "GR-BE-TR2_1-1574014072" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "720.7014" ; + cim:DiagramObjectPoint.yPosition "114.0501" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "162.7188" ; + cim:DiagramObjectPoint.yPosition "190" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "367.7708" ; + cim:DiagramObjectPoint.yPosition "244" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "d9d4abdd-1ed5-376b-225f-39fb7da2af85" ; + cim:IdentifiedObject.name "GR-L-2070108204" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "717.9335" ; + cim:DiagramObjectPoint.yPosition "216.0349" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "763.8" ; + cim:DiagramObjectPoint.yPosition "244" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "4" ; + cim:DiagramObjectPoint.xPosition "321.9979" ; + cim:DiagramObjectPoint.yPosition "109.8021" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "738" ; + cim:DiagramObjectPoint.yPosition "260" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "321.4688" ; + cim:DiagramObjectPoint.yPosition "261.8542" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "e18b4ed3-593d-5edb-d42d-39fb7da2af81" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "335.7563" ; + cim:DiagramObjectPoint.yPosition "244" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "336" ; + cim:DiagramObjectPoint.yPosition "188" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "4" ; + cim:DiagramObjectPoint.xPosition "179.9167" ; + cim:DiagramObjectPoint.yPosition "215.6354" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "-90" ; + cim:IdentifiedObject.mRID "e2bb743e-aba7-e510-d8ca-39fb7da2af84" ; + cim:IdentifiedObject.name "GR-NL-Load_3-631391046" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "220" ; + cim:DiagramObjectPoint.yPosition "216" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "661.1736" ; + cim:DiagramObjectPoint.yPosition "215.9651" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "e336f788-fbfd-0176-4249-39fb7da2af85" ; + cim:IdentifiedObject.name "GR-NL-Line_5-1375941741" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "e47c3a1d-aa70-88a7-0f40-39fb7da2af85" ; + cim:IdentifiedObject.name "GR-L-958549789" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "e52f38e1-6db7-40f8-5831-39fb7da2af85" ; + cim:IdentifiedObject.name "GR-L-1691614453" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "e649a5a2-5270-f047-0550-39fb7da2af85" ; + cim:IdentifiedObject.name "GR-L-476899861" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "269.875" ; + cim:DiagramObjectPoint.yPosition "234.1563" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "3" ; + cim:DiagramObjectPoint.xPosition "270" ; + cim:DiagramObjectPoint.yPosition "182" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "e7470557-0f67-c8e9-e796-39fb7da2af80" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "568" ; + cim:DiagramObjectPoint.yPosition "84.5" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "78.2" ; + cim:DiagramObjectPoint.yPosition "190" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "442" ; + cim:DiagramObjectPoint.yPosition "214" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "644" ; + cim:DiagramObjectPoint.yPosition "263.2603" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "84" ; + cim:DiagramObjectPoint.yPosition "190" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "eeadbd0c-bd85-8d39-a0ea-39fb7da2af86" ; + cim:IdentifiedObject.name "GR-BE-Line_5-1020037632" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "210.0364" ; + cim:DiagramObjectPoint.yPosition "110" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "f2161998-0632-ac5d-7e98-39fb7da2af81" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "322" ; + cim:DiagramObjectPoint.yPosition "166" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "f48a3c56-8e3e-aca3-88f6-39fb7da2af85" ; + cim:IdentifiedObject.name "GR-L-805648696" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "-90" ; + cim:IdentifiedObject.mRID "f493dd76-d32f-d501-eba1-39fb7da2af84" ; + cim:IdentifiedObject.name "GR-NL-Inj-XCA_AL11-385950181" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "604" ; + cim:DiagramObjectPoint.yPosition "116.1" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "fa169583-ce02-9c1b-27c3-39fb7da2af84" ; + cim:IdentifiedObject.name "GR-L-52575670" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "fc229451-1303-82d9-aabc-39fb7da2af84" ; + cim:IdentifiedObject.name "GR-L-254699869" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "169.7" ; + cim:DiagramObjectPoint.yPosition "86" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "fc9bd44d-54d6-eca6-0ba7-39fb7da2af85" ; + cim:IdentifiedObject.name "GR-BE-Line_3-1247633054" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "568" ; + cim:DiagramObjectPoint.yPosition "116" . +} + + { # forwardDifferences + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "308.1" ; + cim:DiagramObjectPoint.yPosition "202.8" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "00334e12-b4f3-5716-f898-39fc10f99da8" ; + cim:IdentifiedObject.name "GR-L-1230804819-2080259393" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "-90" ; + cim:IdentifiedObject.mRID "005021df-2e47-777c-c1e7-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-NL-G2-1874813721" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "241.5" ; + cim:DiagramObjectPoint.yPosition "124.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "406.1354" ; + cim:DiagramObjectPoint.yPosition "266.7082" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "00f70bcb-3e6c-1c84-3a2a-39fc10f99da8" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "120.1" ; + cim:DiagramObjectPoint.yPosition "136.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "329.5" ; + cim:DiagramObjectPoint.yPosition "230.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "4" ; + cim:DiagramObjectPoint.xPosition "381" ; + cim:DiagramObjectPoint.yPosition "244.7396" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "274" ; + cim:DiagramObjectPoint.yPosition "216" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "616" ; + cim:DiagramObjectPoint.yPosition "206" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "120.1" ; + cim:DiagramObjectPoint.yPosition "148.8" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "01c6b31f-aa3f-b21d-e53c-39fc10f99da8" ; + cim:IdentifiedObject.name "GR-BE_Breaker_10-35012999" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "240" ; + cim:DiagramObjectPoint.yPosition "142" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "318" ; + cim:DiagramObjectPoint.yPosition "231" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "02114dca-76f7-124b-157c-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-L-1608961504" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "02a71b41-f5e7-f001-d6eb-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-L-1556730743" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "03180e66-9f2d-6420-f761-39fc10f99da4" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "305.5" ; + cim:DiagramObjectPoint.yPosition "230.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "039d2619-9f60-1ce7-3a89-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-BE-Line_4-1062505759" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "644" ; + cim:DiagramObjectPoint.yPosition "180.3" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "250" ; + cim:DiagramObjectPoint.yPosition "110" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "03fc1920-e70b-524c-a7f2-39fc10f99da8" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "483.3937" ; + cim:DiagramObjectPoint.yPosition "258.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "401.5" ; + cim:DiagramObjectPoint.yPosition "150.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "356" ; + cim:DiagramObjectPoint.yPosition "124" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "311.5" ; + cim:DiagramObjectPoint.yPosition "162.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "363.5" ; + cim:DiagramObjectPoint.yPosition "230.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "0635ab43-3ac3-8775-936b-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-BE-TR2_3-419525394" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "250" ; + cim:DiagramObjectPoint.yPosition "210" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "06558b2b-aea5-3505-0524-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-BE-TR2_2-356084595" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "120.1" ; + cim:DiagramObjectPoint.yPosition "202.8" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "06f387e4-3f1b-081c-87d5-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-L-373414114" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "316.1" ; + cim:DiagramObjectPoint.yPosition "202.8" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "06fd4364-56ec-d0dc-6795-39fc10f99da8" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "078c88e7-a150-edc5-2181-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-L-1538410300" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "420.1" ; + cim:DiagramObjectPoint.yPosition "256.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "360.1" ; + cim:DiagramObjectPoint.yPosition "212.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "568" ; + cim:DiagramObjectPoint.yPosition "176.5" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "350" ; + cim:DiagramObjectPoint.yPosition "204" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "180" ; + cim:DiagramObjectPoint.yPosition "238" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "314.8542" ; + cim:DiagramObjectPoint.yPosition "247.3854" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "09375380-aa4e-855a-6e1b-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-L-122721049" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "145.5" ; + cim:DiagramObjectPoint.yPosition "180.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "09f60baa-abc9-f497-e443-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-BE_S2-1430793357" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "381" ; + cim:DiagramObjectPoint.yPosition "238.125" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "426" ; + cim:DiagramObjectPoint.yPosition "138" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "0a57a674-58e9-0661-e604-39fc10f99da4" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "0a6d141b-715c-3e5e-eaed-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-BE-TR2_1-2017844582" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "483.5" ; + cim:DiagramObjectPoint.yPosition "138.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "0b20451a-dcf7-b8dd-6371-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-BE-Line_5-1231550614" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "0b71568c-e4c2-dcef-be67-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-L-1770078348" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "-89.5" ; + cim:IdentifiedObject.mRID "0bdb155f-eb23-ca2f-c5bd-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-NL-TR2_1-829109738" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "0c2bf7c6-8467-8056-9a8b-39fc10f99da4" ; + cim:IdentifiedObject.name "GR-BE-Load_2-26861723" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "0cc5bffe-10b3-5e09-ada4-39fc10f99da4" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "322" ; + cim:DiagramObjectPoint.yPosition "110" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "356.1" ; + cim:DiagramObjectPoint.yPosition "112.8" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "0e5af00b-9c35-c4fb-5017-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-L-196199007" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "644" ; + cim:DiagramObjectPoint.yPosition "116" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "285.5" ; + cim:DiagramObjectPoint.yPosition "166.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "391.5" ; + cim:DiagramObjectPoint.yPosition "218.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "256" ; + cim:DiagramObjectPoint.yPosition "131.2" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "10161036-db61-9b10-5519-39fc10f99da4" ; + cim:IdentifiedObject.name "GR-L-144407520" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "284" ; + cim:DiagramObjectPoint.yPosition "110" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "104159f3-66f8-01ed-a60d-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-L-465039689" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "658" ; + cim:DiagramObjectPoint.yPosition "216" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "3" ; + cim:DiagramObjectPoint.xPosition "409.7326" ; + cim:DiagramObjectPoint.yPosition "257.9688" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "10b8669b-6eb6-2e2b-f3ea-39fc10f99da8" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "236.1" ; + cim:DiagramObjectPoint.yPosition "154.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "3" ; + cim:DiagramObjectPoint.xPosition "383.2452" ; + cim:DiagramObjectPoint.yPosition "257.9688" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "678" ; + cim:DiagramObjectPoint.yPosition "216" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "118692fa-2b8f-daff-5f3d-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-NL-Line_5-148057063" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "373.5" ; + cim:DiagramObjectPoint.yPosition "230.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "362.5539" ; + cim:DiagramObjectPoint.yPosition "244.7396" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "345.6" ; + cim:DiagramObjectPoint.yPosition "160.1" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "318" ; + cim:DiagramObjectPoint.yPosition "237" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "123214fa-5d77-5929-f71f-39fc10f99da6" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "738" ; + cim:DiagramObjectPoint.yPosition "216.1" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "12fda66d-889b-f02c-75a9-39fc10f99da8" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "1366107c-990b-f72d-d66b-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-BE_Breaker_5-1123996046" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "568" ; + cim:DiagramObjectPoint.yPosition "129.9" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "748.9" ; + cim:DiagramObjectPoint.yPosition "143.9" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "358.5104" ; + cim:DiagramObjectPoint.yPosition "235.4792" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "14172afc-b2cb-5500-b944-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-L-1926445802" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "326.1" ; + cim:DiagramObjectPoint.yPosition "149.6" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "147fefb7-5d02-04ee-565a-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-L-1293699286" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "1488b23f-cc27-158c-242b-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-NL_BREAKER_4-732324671" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "308.1" ; + cim:DiagramObjectPoint.yPosition "240.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "356" ; + cim:DiagramObjectPoint.yPosition "136" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "3" ; + cim:DiagramObjectPoint.xPosition "276.9733" ; + cim:DiagramObjectPoint.yPosition "181.2396" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "15d52275-0b9d-4798-3e90-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-L-1597761217" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "16a89408-4520-4fad-f074-39fc10f99da8" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "360" ; + cim:DiagramObjectPoint.yPosition "200" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "16f1b441-71bf-170e-15ca-39fc10f99da4" ; + cim:IdentifiedObject.name "GR-L-429299186" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "298.1" ; + cim:DiagramObjectPoint.yPosition "198.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "190" ; + cim:DiagramObjectPoint.yPosition "216" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "445.8" ; + cim:DiagramObjectPoint.yPosition "214" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "-90" ; + cim:IdentifiedObject.mRID "18010937-7fc9-2cbe-c1f5-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-NL-G3-18037631" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "184270bc-5268-0c48-aa53-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-L-825612596" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "190d9bc8-bbb8-6dd3-5fb2-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-CIRCB-1230992249-1074301810" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "191547d2-3f4e-baf8-f970-39fc10f99da6" ; + cim:IdentifiedObject.name "G-Link-356885633" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "243.5" ; + cim:DiagramObjectPoint.yPosition "230.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "19dd957c-1343-44b3-23b4-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-L-1373312335" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "293" ; + cim:DiagramObjectPoint.yPosition "156" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "270" ; + cim:IdentifiedObject.mRID "1a1bc172-cdd0-4757-ec09-39fc10f99da4" ; + cim:IdentifiedObject.name "GR-CIRCB-1230991526-1267186163" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "146" ; + cim:DiagramObjectPoint.yPosition "190" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "332" ; + cim:DiagramObjectPoint.yPosition "234" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "318" ; + cim:DiagramObjectPoint.yPosition "156" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "738" ; + cim:DiagramObjectPoint.yPosition "244" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "1b4f493f-713f-db09-08c2-39fc10f99da6" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "328" ; + cim:DiagramObjectPoint.yPosition "216" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "367.5" ; + cim:DiagramObjectPoint.yPosition "180.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "447.8" ; + cim:DiagramObjectPoint.yPosition "100" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "230.1" ; + cim:DiagramObjectPoint.yPosition "126.8" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "1c5649f2-15d9-0c12-7f46-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-L-1642165487" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "285.5" ; + cim:DiagramObjectPoint.yPosition "169.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "262.1" ; + cim:DiagramObjectPoint.yPosition "144.8" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "1cc910b8-c430-5b06-7fd4-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-L-1705110502" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "1cef689a-5572-3253-e788-39fc10f99da4" ; + cim:IdentifiedObject.name "GR-L-1233793532" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "614" ; + cim:DiagramObjectPoint.yPosition "116.2" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "425.6693" ; + cim:DiagramObjectPoint.yPosition "258.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "1d4aea30-0877-4ce4-f18c-39fc10f99da8" ; + cim:IdentifiedObject.name "GR-BE-Inj-XWI_GY11-786883407" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "1d7e1389-0c79-9d62-22fa-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-CIRCB-1230992174-2113095994" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "438" ; + cim:DiagramObjectPoint.yPosition "166" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "326.7604" ; + cim:DiagramObjectPoint.yPosition "253.2182" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "120.1" ; + cim:DiagramObjectPoint.yPosition "154.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "568" ; + cim:DiagramObjectPoint.yPosition "147.9" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "1f2ee65e-a642-462a-fdd9-39fc10f99da6" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "1f6d91ce-0eab-0720-0823-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-L-525741817" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "292" ; + cim:DiagramObjectPoint.yPosition "110" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "322" ; + cim:DiagramObjectPoint.yPosition "158" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "2051adbd-f27d-9200-e670-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-BE-Line_7-1526624498" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "367.5" ; + cim:DiagramObjectPoint.yPosition "172.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "208025f3-61e8-54f7-f3d6-39fc10f99da4" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "438" ; + cim:DiagramObjectPoint.yPosition "94" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "282" ; + cim:DiagramObjectPoint.yPosition "234" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "644" ; + cim:DiagramObjectPoint.yPosition "88" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "431.2" ; + cim:DiagramObjectPoint.yPosition "167.2" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "22033e4b-85cc-db29-4ba0-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-L-1590697942" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "2235dd8c-73a7-3885-1fc6-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-CIRCB-1230992192-1632580458" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "270" ; + cim:DiagramObjectPoint.yPosition "216" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "2369e793-3cd1-d51d-7c04-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-L-708321500" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "438" ; + cim:DiagramObjectPoint.yPosition "198" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "24142b65-dfcf-247c-888a-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-L-1260364722" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "24226800-a9ed-29bd-4ec7-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-BE-Line_2-2078706704" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "244a18fd-95ad-2fbe-89fb-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-BE-Inj-XKA_MA11-1410070492" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "644" ; + cim:DiagramObjectPoint.yPosition "152.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "329.5" ; + cim:DiagramObjectPoint.yPosition "246.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "2483ab97-c0a8-b880-4738-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-L-1557823234" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "2485c775-516d-cb24-19af-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-NL_BREAKER_1-1287044078" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "2489b105-c1bc-7972-7b8b-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-L-1460654067" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "346" ; + cim:DiagramObjectPoint.yPosition "204" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "644" ; + cim:DiagramObjectPoint.yPosition "216.1" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "329.5" ; + cim:DiagramObjectPoint.yPosition "248.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "240" ; + cim:DiagramObjectPoint.yPosition "148.1" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "326.1" ; + cim:DiagramObjectPoint.yPosition "84.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "263.5" ; + cim:DiagramObjectPoint.yPosition "134.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "314" ; + cim:DiagramObjectPoint.yPosition "156" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "758" ; + cim:DiagramObjectPoint.yPosition "244" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "28724e67-85f1-b222-481d-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-NL_BREAKER_3-1728568693" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "385.5" ; + cim:DiagramObjectPoint.yPosition "144.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "369.5" ; + cim:DiagramObjectPoint.yPosition "248.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "-89.5" ; + cim:IdentifiedObject.mRID "2902d987-039c-66db-d8d8-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-NL-TR2_1-1955824672" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "329.5" ; + cim:DiagramObjectPoint.yPosition "248.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "3" ; + cim:DiagramObjectPoint.xPosition "738.4" ; + cim:DiagramObjectPoint.yPosition "143.9" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "2939db02-8135-3895-c204-39fc10f99da8" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "297e7107-2991-fa24-e66b-39fc10f99da6" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "299ae77c-9674-b0da-9cb0-39fc10f99da4" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "3" ; + cim:DiagramObjectPoint.xPosition "335.3798" ; + cim:DiagramObjectPoint.yPosition "253.2182" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "120.1" ; + cim:DiagramObjectPoint.yPosition "236.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "284" ; + cim:DiagramObjectPoint.yPosition "148" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "381.5" ; + cim:DiagramObjectPoint.yPosition "202.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "399.9" ; + cim:DiagramObjectPoint.yPosition "212.9" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "120.1" ; + cim:DiagramObjectPoint.yPosition "120.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "550" ; + cim:DiagramObjectPoint.yPosition "94" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "2bcd2d0c-aa41-66a7-fc2e-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-L-1976101972" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "-90" ; + cim:IdentifiedObject.mRID "2bf80f37-526d-e531-71fc-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-NL-G2-815968219" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "2bfb2cf9-57b2-4192-ae20-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-BE-Inj-XCA_AL11-431878571" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "2c49a451-0f34-eb0b-4962-39fc10f99da8" ; + cim:IdentifiedObject.name "GR-L-513913700" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "295.5" ; + cim:DiagramObjectPoint.yPosition "238.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "674" ; + cim:DiagramObjectPoint.yPosition "116" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "2ce5c698-af01-f2bd-c492-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-CIRCB-1230991736-1150308873" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "120.1" ; + cim:DiagramObjectPoint.yPosition "166.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "428" ; + cim:DiagramObjectPoint.yPosition "248" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "2d9edc5e-9721-1c0d-ab77-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-NL-Line_1-1263765796" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "218" ; + cim:DiagramObjectPoint.yPosition "110" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "2f55c56a-284c-0a43-2b84-39fc10f99da8" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "298.1" ; + cim:DiagramObjectPoint.yPosition "236.8" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "30486768-1292-11aa-e823-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-L-1724199943" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "398.1" ; + cim:DiagramObjectPoint.yPosition "106.8" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "3094bff5-5642-a8eb-06df-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-L-1914853851" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "3112f3e2-7e2d-d4d9-c465-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-L-1292777021" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "369.5" ; + cim:DiagramObjectPoint.yPosition "264.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "263.5" ; + cim:DiagramObjectPoint.yPosition "124.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "31a10ef8-37c2-21cf-2379-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-BE_Breaker_12-485990510" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "31f59ac8-f7b3-c2c0-e126-39fc10f99daa" ; + cim:IdentifiedObject.name "G-Link-356885183" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "310" ; + cim:DiagramObjectPoint.yPosition "156" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "437.8854" ; + cim:DiagramObjectPoint.yPosition "244" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "329.5" ; + cim:DiagramObjectPoint.yPosition "124.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "357.3438" ; + cim:DiagramObjectPoint.yPosition "244.7396" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "568" ; + cim:DiagramObjectPoint.yPosition "94.1" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "326.1" ; + cim:DiagramObjectPoint.yPosition "240.7" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "483.5" ; + cim:DiagramObjectPoint.yPosition "218.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "662" ; + cim:DiagramObjectPoint.yPosition "116" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "335c29ec-c40b-a8ca-31cf-39fc10f99da4" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "33eb422c-848d-c32e-a790-39fc10f99da8" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "344d1b06-3d22-1e06-0151-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-L-1090879252" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "126" ; + cim:DiagramObjectPoint.yPosition "190" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "698" ; + cim:DiagramObjectPoint.yPosition "216" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "401.5" ; + cim:DiagramObjectPoint.yPosition "138.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "225.5" ; + cim:DiagramObjectPoint.yPosition "230.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "180" ; + cim:DiagramObjectPoint.yPosition "132" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "3673ab87-2b69-4fa4-e478-39fc10f99da8" ; + cim:IdentifiedObject.name "GR-L-8136266" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "367.5" ; + cim:DiagramObjectPoint.yPosition "124.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "371b72be-a0f7-3bce-c64e-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-L-1348862851" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "3722da1c-32c9-ea77-5a73-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-BE-Line_3-39937983" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "329.5" ; + cim:DiagramObjectPoint.yPosition "178.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "322" ; + cim:DiagramObjectPoint.yPosition "156" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "37fdeb74-a180-c690-3b11-39fc10f99da6" ; + cim:IdentifiedObject.name "GR-L-1014928263" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "38038f93-e783-8c2b-9444-39fc10f99da6" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "275.5" ; + cim:DiagramObjectPoint.yPosition "230.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "191.5" ; + cim:DiagramObjectPoint.yPosition "204.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "39b4dba1-6e62-bf93-4fa3-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-L-177215107" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "3a85a9d0-3994-9187-ac94-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-CIRCB-1230991718-511018887" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "323.5" ; + cim:DiagramObjectPoint.yPosition "230.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "218" ; + cim:DiagramObjectPoint.yPosition "110" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "3abc048a-6555-f344-a38a-39fc10f99da6" ; + cim:IdentifiedObject.name "G-Link-356885584" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "305.8583" ; + cim:DiagramObjectPoint.yPosition "156" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "-90" ; + cim:IdentifiedObject.mRID "3b02fd92-c6bd-8fdf-b418-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-NL-Inj-XKA_MA11-1446471745" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "3b44f588-4c63-915d-d14f-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-L-542806539" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "3b5e4b6d-20f6-545b-8631-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-L-794533391" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "180" ; + cim:DiagramObjectPoint.yPosition "190" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "3c1d2440-cb45-39b4-440b-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-L-9901528" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "270" ; + cim:DiagramObjectPoint.yPosition "172" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "3d547fd2-267c-c598-4221-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-L-1117404304" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "266" ; + cim:DiagramObjectPoint.yPosition "148" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "3d9a1c76-fc93-6383-a0a0-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-L-891225100" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "284" ; + cim:DiagramObjectPoint.yPosition "216" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "3e202977-9443-8ff5-b227-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-L-1784863818" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "630" ; + cim:DiagramObjectPoint.yPosition "206" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "356" ; + cim:DiagramObjectPoint.yPosition "130" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "630" ; + cim:DiagramObjectPoint.yPosition "244" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "329.5" ; + cim:DiagramObjectPoint.yPosition "124.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "367.5" ; + cim:DiagramObjectPoint.yPosition "100.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "346.1" ; + cim:DiagramObjectPoint.yPosition "212.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "438" ; + cim:DiagramObjectPoint.yPosition "216" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "40407f49-dae9-d919-384b-39fc10f99da8" ; + cim:IdentifiedObject.name "GR-L-43618804" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "3" ; + cim:DiagramObjectPoint.xPosition "335.7563" ; + cim:DiagramObjectPoint.yPosition "247.3854" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "552" ; + cim:DiagramObjectPoint.yPosition "130" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "356" ; + cim:DiagramObjectPoint.yPosition "88" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "554" ; + cim:DiagramObjectPoint.yPosition "94" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "40afb2a5-e471-764e-5a85-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-L-1223448061" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "315.5" ; + cim:DiagramObjectPoint.yPosition "186.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "428" ; + cim:DiagramObjectPoint.yPosition "166" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "-1.2" ; + cim:IdentifiedObject.mRID "417ceeba-c8f5-a5b1-7d25-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-busbarcoupler 1-1012598411" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "180" ; + cim:DiagramObjectPoint.yPosition "76" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "42342a6a-b588-2cb6-e16b-39fc10f99da4" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "405.5" ; + cim:DiagramObjectPoint.yPosition "222.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "351.5" ; + cim:DiagramObjectPoint.yPosition "166.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "534" ; + cim:DiagramObjectPoint.yPosition "158" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "267.7" ; + cim:DiagramObjectPoint.yPosition "166.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "284" ; + cim:DiagramObjectPoint.yPosition "214" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "337.5" ; + cim:DiagramObjectPoint.yPosition "124.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "438f0e17-d5bc-03c8-c284-39fc10f99dab" ; + cim:IdentifiedObject.name "G-Link-356885354" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "358.5104" ; + cim:DiagramObjectPoint.yPosition "245.3229" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "43a9c2b8-abf1-76f7-1f3d-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-L-1864264068" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "250" ; + cim:DiagramObjectPoint.yPosition "216" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "319.5" ; + cim:DiagramObjectPoint.yPosition "230.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "206" ; + cim:DiagramObjectPoint.yPosition "224" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "392.1" ; + cim:DiagramObjectPoint.yPosition "212.9" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "536" ; + cim:DiagramObjectPoint.yPosition "90" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "447c60d0-632e-de6c-d07e-39fc10f99da4" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "44a3c9e0-111b-a64b-c339-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-L-559158381" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "44e061bf-e429-e654-aee0-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-L-170854790" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "438" ; + cim:DiagramObjectPoint.yPosition "124" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "284" ; + cim:DiagramObjectPoint.yPosition "236" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "391.5" ; + cim:DiagramObjectPoint.yPosition "108.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "120.1" ; + cim:DiagramObjectPoint.yPosition "90.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "120.1" ; + cim:DiagramObjectPoint.yPosition "247" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "46047e9e-1e6a-0af8-d3e8-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-L-479069864" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "-90" ; + cim:IdentifiedObject.mRID "46547e47-1443-49c1-131c-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-NL-G3-308158943" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "252" ; + cim:DiagramObjectPoint.yPosition "148" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "425.9792" ; + cim:DiagramObjectPoint.yPosition "252.6771" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "4713f3d1-0201-42cc-9cb4-39fc10f99da7" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "205.5" ; + cim:DiagramObjectPoint.yPosition "198.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "650" ; + cim:DiagramObjectPoint.yPosition "216" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "318" ; + cim:DiagramObjectPoint.yPosition "216" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "228.1" ; + cim:DiagramObjectPoint.yPosition "154.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "483.5" ; + cim:DiagramObjectPoint.yPosition "172.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "47ff5b36-76aa-a6b4-aef5-39fc10f99da8" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "48281318-a308-873b-be0c-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-L-1458467816" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "650" ; + cim:DiagramObjectPoint.yPosition "116" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "355" ; + cim:DiagramObjectPoint.yPosition "100.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "445.9" ; + cim:DiagramObjectPoint.yPosition "200.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "225.5" ; + cim:DiagramObjectPoint.yPosition "252.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "318" ; + cim:DiagramObjectPoint.yPosition "216" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "326.1" ; + cim:DiagramObjectPoint.yPosition "202.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "181.5" ; + cim:DiagramObjectPoint.yPosition "204.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "322.526" ; + cim:DiagramObjectPoint.yPosition "162.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "4a0efeee-93bb-774a-1389-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-L-92824994" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "164" ; + cim:DiagramObjectPoint.yPosition "132" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "663.5" ; + cim:DiagramObjectPoint.yPosition "182.3" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "4b00b68c-0cc1-fef3-4c8a-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-L-61551962" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "4b6ec43d-b7e5-d438-2208-39fc10f99da8" ; + cim:IdentifiedObject.name "GR-L-2096354637" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "4b77a1b0-6e7d-a20f-2cf5-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-BE_Breaker_4-10356555" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "4bc09331-bbd9-cd25-1a78-39fc10f99da8" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "160" ; + cim:DiagramObjectPoint.yPosition "184" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "4cc24de4-3656-ebfb-a6cc-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-L-979942878" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "583.8" ; + cim:DiagramObjectPoint.yPosition "166" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "4d2bb645-8eb9-d69f-19b3-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-L-1999011679" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "395.5" ; + cim:DiagramObjectPoint.yPosition "218.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "4da6229a-f66b-6e91-a7ee-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-NL-Line_2-1375218240" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "370.4479" ; + cim:DiagramObjectPoint.yPosition "244.7396" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "483.5" ; + cim:DiagramObjectPoint.yPosition "230.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "4e088cb4-9e7c-0150-460e-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-CIRCB-1230992408-1668502453" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "316.1" ; + cim:DiagramObjectPoint.yPosition "240.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "232.1" ; + cim:DiagramObjectPoint.yPosition "154.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "376.1" ; + cim:DiagramObjectPoint.yPosition "113" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "323.5" ; + cim:DiagramObjectPoint.yPosition "248.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "381.5" ; + cim:DiagramObjectPoint.yPosition "144.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "4ff7f580-513c-7afd-27b0-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-L-1093257539" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "340.1" ; + cim:DiagramObjectPoint.yPosition "212.8" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "-90" ; + cim:IdentifiedObject.mRID "5042ea9c-27d6-520a-b4ca-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-NL-Load_1-1322566341" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "534" ; + cim:DiagramObjectPoint.yPosition "158" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "50c8a0d1-c65f-e195-e6b1-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-L-878485139" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "416.75" ; + cim:DiagramObjectPoint.yPosition "257.9688" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "5146471e-4691-9775-4ef0-39fc10f99da8" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "381.5" ; + cim:DiagramObjectPoint.yPosition "230.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "3" ; + cim:DiagramObjectPoint.xPosition "420.1" ; + cim:DiagramObjectPoint.yPosition "182.8" . + + a cim:Diagram ; + cim:Diagram.orientation cim:OrientationKind.negative ; + cim:IdentifiedObject.mRID "51bc73a1-777e-8dd1-4566-39fc10f99d9e" ; + cim:IdentifiedObject.name "MAS BE" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "51d69f76-06e1-8025-84a7-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-L-1764137926" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "198" ; + cim:DiagramObjectPoint.yPosition "216" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "306" ; + cim:DiagramObjectPoint.yPosition "160" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "568" ; + cim:DiagramObjectPoint.yPosition "84.5" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "658" ; + cim:DiagramObjectPoint.yPosition "116" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "356" ; + cim:DiagramObjectPoint.yPosition "93.9" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "53156808-438a-b955-2e0f-39fc10f99da8" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "722" ; + cim:DiagramObjectPoint.yPosition "116" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "218.1" ; + cim:DiagramObjectPoint.yPosition "96.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "616" ; + cim:DiagramObjectPoint.yPosition "240" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "438" ; + cim:DiagramObjectPoint.yPosition "247.9" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "53e8e73f-e5d0-6249-b2a6-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-BE_Breaker_5-973824332" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "340" ; + cim:DiagramObjectPoint.yPosition "130" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "301.5" ; + cim:DiagramObjectPoint.yPosition "162.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "54d5fe1d-112d-8cc7-1854-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-L-1648451472" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "5502a4f2-a62a-71b3-99f0-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-L-1008211985" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "285.5" ; + cim:DiagramObjectPoint.yPosition "162.5" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "342" ; + cim:DiagramObjectPoint.yPosition "94" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "218.1" ; + cim:DiagramObjectPoint.yPosition "90.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "384.9688" ; + cim:DiagramObjectPoint.yPosition "257.9688" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "562d6e89-8930-2665-48ff-39fc10f99da4" ; + cim:IdentifiedObject.name "GR-CIRCB-1230991736-1279589578" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "5670e7ab-0718-3515-8117-39fc10f99da6" ; + cim:IdentifiedObject.name "GR-Bus-356885584" . + + a cim:Diagram ; + cim:Diagram.orientation cim:OrientationKind.negative ; + cim:IdentifiedObject.mRID "567edf3a-f070-aa0b-63a9-39fc10f99da7" ; + cim:IdentifiedObject.name "Assembled" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "262.1" ; + cim:DiagramObjectPoint.yPosition "162.8" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "5796d0d7-71c8-736a-8d39-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-NL_BREAKER_1-1592629979" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "363.5" ; + cim:DiagramObjectPoint.yPosition "230.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "644" ; + cim:DiagramObjectPoint.yPosition "81.3" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "581892af-e377-1566-6253-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-L-2006963402" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "236.1" ; + cim:DiagramObjectPoint.yPosition "90.8" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "-90" ; + cim:IdentifiedObject.mRID "5838a895-a496-c3ff-0cfb-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-NL-Inj-XWI_GY11-440951891" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "585a1d8e-630f-5a3a-d8d0-39fc10f99da4" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "663.5" ; + cim:DiagramObjectPoint.yPosition "163.3" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "169.7" ; + cim:DiagramObjectPoint.yPosition "86" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "431.1" ; + cim:DiagramObjectPoint.yPosition "163.2" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "358.5104" ; + cim:DiagramObjectPoint.yPosition "253.479" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "590f9f2c-1e58-d386-de8f-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-L-1548353903" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "336" ; + cim:DiagramObjectPoint.yPosition "258" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "593c74c4-3424-1da1-5786-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-L-770570815" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "120.1" ; + cim:DiagramObjectPoint.yPosition "240.8" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "59db81c1-e343-104d-9d15-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-L-2133237091" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "438" ; + cim:DiagramObjectPoint.yPosition "158" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "295.5" ; + cim:DiagramObjectPoint.yPosition "230.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "438" ; + cim:DiagramObjectPoint.yPosition "99.9" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "-89.2" ; + cim:IdentifiedObject.mRID "5bff939f-95ea-c437-c35c-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-NL_TR2_3-28892839" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "738.4" ; + cim:DiagramObjectPoint.yPosition "100.1" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "-90" ; + cim:IdentifiedObject.mRID "5cefddca-692d-d063-bacb-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-NL-Inj-XZE_ST23-1469737826" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "5d46b6f4-6c2a-55c5-e727-39fc10f99da8" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "392.1" ; + cim:DiagramObjectPoint.yPosition "216.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "84" ; + cim:DiagramObjectPoint.yPosition "190" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "-90" ; + cim:IdentifiedObject.mRID "5dcf5b66-48b8-504a-d7c5-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-NL-G1-685269184" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "5e64fbbf-8d7c-dd21-bfd8-39fc10f99da8" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "215.5" ; + cim:DiagramObjectPoint.yPosition "204.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "381.5" ; + cim:DiagramObjectPoint.yPosition "218.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "5ff0cdbe-33c3-094e-a8ba-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-BE-TR2_3-2038117741" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "604bf54b-948f-fd79-26b3-39fc10f99da4" ; + cim:IdentifiedObject.name "GR-L-1813901381" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "6053eeac-7ba0-5665-7d36-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-L-1725618470" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "60ce2692-23a7-8f5d-b0a1-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-L-84065218" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "634" ; + cim:DiagramObjectPoint.yPosition "206" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "61b94510-43ac-10bf-c22e-39fc10f99da4" ; + cim:IdentifiedObject.name "GR-L-1491201112" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "180" ; + cim:DiagramObjectPoint.yPosition "216" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "228" ; + cim:DiagramObjectPoint.yPosition "152" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "626" ; + cim:DiagramObjectPoint.yPosition "206" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "628007be-120c-0892-16c5-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-L-1315321678" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "218" ; + cim:DiagramObjectPoint.yPosition "100" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "62a91640-9a0a-e460-adb7-39fc10f99da8" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "338" ; + cim:DiagramObjectPoint.yPosition "94" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "180" ; + cim:DiagramObjectPoint.yPosition "216" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "6342c065-5d6b-ff31-ca09-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-L-1929178012" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "196" ; + cim:DiagramObjectPoint.yPosition "110" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "63b861c8-34d4-55a5-7784-39fc10f99da6" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "389.5" ; + cim:DiagramObjectPoint.yPosition "144.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "401.5" ; + cim:DiagramObjectPoint.yPosition "144.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "64ce5475-9d4e-cb91-8257-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-L-454960899" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "4" ; + cim:DiagramObjectPoint.xPosition "381.2646" ; + cim:DiagramObjectPoint.yPosition "257.9688" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "234.1" ; + cim:DiagramObjectPoint.yPosition "126.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "297.7" ; + cim:DiagramObjectPoint.yPosition "210.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "394.9688" ; + cim:DiagramObjectPoint.yPosition "257.9688" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "65d9275d-1dc9-405c-d0f6-39fc10f99d9f" ; + cim:IdentifiedObject.name "G-Link-356885637" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "420.75" ; + cim:DiagramObjectPoint.yPosition "257.9688" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "66373e76-2874-f670-5bf3-39fc10f99da4" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "483.5" ; + cim:DiagramObjectPoint.yPosition "184.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "664aeeee-0ead-f6fd-dac0-39fc10f99da8" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "344.1" ; + cim:DiagramObjectPoint.yPosition "104.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "644" ; + cim:DiagramObjectPoint.yPosition "257.7" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "6730168b-1b01-6616-f3c9-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-L-882535031" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "721.8" ; + cim:DiagramObjectPoint.yPosition "216.1" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "68022bbe-07c0-bca8-3816-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-L-1312344377" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "329.5" ; + cim:DiagramObjectPoint.yPosition "162.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "438" ; + cim:DiagramObjectPoint.yPosition "206" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "341.9" ; + cim:DiagramObjectPoint.yPosition "84.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "100" ; + cim:DiagramObjectPoint.yPosition "190" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "68f265bd-3f31-f572-2461-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-L-1619637910" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "69010536-0282-1236-c6c9-39fc10f99da4" ; + cim:IdentifiedObject.name "GR-L-1024932587" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "695f14df-546d-b4f4-9d4c-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-L-800539026" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "6a03ab3b-4400-34ab-eb9a-39fc10f99da6" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "716" ; + cim:DiagramObjectPoint.yPosition "124" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "-90" ; + cim:IdentifiedObject.mRID "6a272462-ba65-81ae-29b9-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-NL-S1-2064920766" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "314.8542" ; + cim:DiagramObjectPoint.yPosition "261.8542" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "170" ; + cim:DiagramObjectPoint.yPosition "190" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "356" ; + cim:DiagramObjectPoint.yPosition "94" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "425.9792" ; + cim:DiagramObjectPoint.yPosition "264.677" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "6b03d5c1-abff-d54d-366e-39fc10f99da8" ; + cim:IdentifiedObject.name "GR-CIRCB-1230992192-825149665" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "6b8b4624-86ce-e291-2bf7-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-L-1770373406" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "6bccff91-74c8-f78f-b65f-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-L-65065093" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "284" ; + cim:DiagramObjectPoint.yPosition "234" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "6bd54595-b507-59f3-eeaa-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-L-1289827234" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "270" ; + cim:IdentifiedObject.mRID "6c2cce4d-619c-e3de-b504-39fc10f99da1" ; + cim:IdentifiedObject.name "GR-SerieRLC-356885584" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "6c31831c-2bc2-437f-246d-39fc10f99da8" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "6cb1f642-6e39-0578-9a20-39fc10f99da3" ; + cim:IdentifiedObject.name "G-Link-356885643" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "274" ; + cim:DiagramObjectPoint.yPosition "234" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "604" ; + cim:DiagramObjectPoint.yPosition "116.1" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "6e11ea5f-e48a-a66a-c0d0-39fc10f99da8" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "6e7c964f-0989-2ccf-7337-39fc10f99da4" ; + cim:IdentifiedObject.name "GR-L-1527982208" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "245.5" ; + cim:DiagramObjectPoint.yPosition "124.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "483.5" ; + cim:DiagramObjectPoint.yPosition "144.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "438" ; + cim:DiagramObjectPoint.yPosition "166" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "6f067007-fa77-86c0-7a84-39fc10f99da6" ; + cim:IdentifiedObject.name "GR-L-681126068" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "6f3b6330-3e5a-c5c0-4e6d-39fc10f99da4" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "6f3c3182-1961-09ad-a866-39fc10f99da6" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "6f70cccd-45dd-131e-6410-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-L-394286187" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "662" ; + cim:DiagramObjectPoint.yPosition "124" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "366.1" ; + cim:DiagramObjectPoint.yPosition "112.9" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "180.4" ; + cim:IdentifiedObject.mRID "6ff2e1a5-2c9e-bb34-1110-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-B1-1200172373" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "749" ; + cim:DiagramObjectPoint.yPosition "166.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "205.5" ; + cim:DiagramObjectPoint.yPosition "204.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "332.1" ; + cim:DiagramObjectPoint.yPosition "112.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "536" ; + cim:DiagramObjectPoint.yPosition "100" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "401.5" ; + cim:DiagramObjectPoint.yPosition "102.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "710927d7-0c07-ccea-b9e8-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-BE_S1-561027924" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "662" ; + cim:DiagramObjectPoint.yPosition "108" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "205.5" ; + cim:DiagramObjectPoint.yPosition "210.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "219.5" ; + cim:DiagramObjectPoint.yPosition "204.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "311.5" ; + cim:DiagramObjectPoint.yPosition "156.3" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "546" ; + cim:DiagramObjectPoint.yPosition "94" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "180" ; + cim:DiagramObjectPoint.yPosition "110" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "218.1" ; + cim:DiagramObjectPoint.yPosition "86.8" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "72706e8a-f5c7-cc81-b2a0-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-L-223023684" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "7290e384-0522-4f76-0250-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-L-1860567165" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "72a0f141-be06-a173-8896-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-L-924674887" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "4" ; + cim:DiagramObjectPoint.xPosition "315.3833" ; + cim:DiagramObjectPoint.yPosition "202.4063" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "4" ; + cim:DiagramObjectPoint.xPosition "358.5104" ; + cim:DiagramObjectPoint.yPosition "244.7396" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "324" ; + cim:DiagramObjectPoint.yPosition "216" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "7352d5a1-bf3f-1a2a-22cf-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-BE-Inj-XZE_ST24-1298480714" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "7385480d-bfb1-8a43-fb1f-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-L-1291346287" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "741fc374-a623-0394-095e-39fc10f99da8" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "405.5" ; + cim:DiagramObjectPoint.yPosition "218.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "298.1" ; + cim:DiagramObjectPoint.yPosition "244.8" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "74564e05-4be6-7145-8d91-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-CIRCB-1230992183-1368628500" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "634" ; + cim:DiagramObjectPoint.yPosition "244" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "4" ; + cim:DiagramObjectPoint.xPosition "311.4146" ; + cim:DiagramObjectPoint.yPosition "166.6875" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "75529453-379a-b48a-0668-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-L-1010325905" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "444" ; + cim:DiagramObjectPoint.yPosition "166" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "7574c48f-f97f-bbed-4466-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-L-633787648" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "75788a8b-5c5e-e95c-ac6b-39fc10f99da8" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "266" ; + cim:DiagramObjectPoint.yPosition "155.9" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "4" ; + cim:DiagramObjectPoint.xPosition "335.3798" ; + cim:DiagramObjectPoint.yPosition "254" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "346" ; + cim:DiagramObjectPoint.yPosition "94" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "359.5" ; + cim:DiagramObjectPoint.yPosition "170.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "716" ; + cim:DiagramObjectPoint.yPosition "116" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "377.5" ; + cim:DiagramObjectPoint.yPosition "248.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "764e4145-46cb-57f8-b6b1-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-BE_Breaker_4-1567739126" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "398.1" ; + cim:DiagramObjectPoint.yPosition "120.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "305.5" ; + cim:DiagramObjectPoint.yPosition "124.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "738.4" ; + cim:DiagramObjectPoint.yPosition "115.9" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "295.5" ; + cim:DiagramObjectPoint.yPosition "230.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "768837ca-1cc2-8f0a-0096-39fc10f99da8" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "407.9" ; + cim:DiagramObjectPoint.yPosition "212.9" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "318" ; + cim:DiagramObjectPoint.yPosition "218" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "273.5" ; + cim:DiagramObjectPoint.yPosition "166.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "218" ; + cim:DiagramObjectPoint.yPosition "120" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "120.1" ; + cim:DiagramObjectPoint.yPosition "126.8" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "7774e0dc-9996-f66a-9b61-39fc10f99da6" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "430" ; + cim:DiagramObjectPoint.yPosition "214" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "420.1" ; + cim:DiagramObjectPoint.yPosition "200.8" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "78e4067c-9876-97fe-8748-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-BE-Line_1-157271322" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "251.5" ; + cim:DiagramObjectPoint.yPosition "230.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "216.1" ; + cim:DiagramObjectPoint.yPosition "154.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "694" ; + cim:DiagramObjectPoint.yPosition "116.2" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "79aa8473-5d91-a221-f938-39fc10f99da8" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "79fd75a5-b269-712f-bfcc-39fc10f99da8" ; + cim:IdentifiedObject.name "GR-BE-G1-756286507" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "302" ; + cim:DiagramObjectPoint.yPosition "156" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "136" ; + cim:DiagramObjectPoint.yPosition "190" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "120.1" ; + cim:DiagramObjectPoint.yPosition "84.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "329.5" ; + cim:DiagramObjectPoint.yPosition "230.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "-90" ; + cim:IdentifiedObject.mRID "7b0a4874-a997-1b2e-e360-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-NL-Load_3-158983843" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "296.1" ; + cim:DiagramObjectPoint.yPosition "113" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "447.8" ; + cim:DiagramObjectPoint.yPosition "248" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "240" ; + cim:DiagramObjectPoint.yPosition "155" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "232.1" ; + cim:DiagramObjectPoint.yPosition "90.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "354" ; + cim:DiagramObjectPoint.yPosition "204" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "270" ; + cim:IdentifiedObject.mRID "7c082d75-2d5e-4867-343c-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-SER-RLC-1230822986-224492967" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "5" ; + cim:DiagramObjectPoint.xPosition "335.7563" ; + cim:DiagramObjectPoint.yPosition "254" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "7c624d48-aca0-03d9-33f0-39fc10f99da4" ; + cim:IdentifiedObject.name "GR-L-1522241185" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "7c8d7655-48de-8d6c-5949-39fc10f99da4" ; + cim:IdentifiedObject.name "GR-CIRCB-1230991544-1358940482" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "300" ; + cim:DiagramObjectPoint.yPosition "110" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "160.2" ; + cim:DiagramObjectPoint.yPosition "132" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "7ea5ae1a-3567-3fad-b689-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-L-1149456547" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "7eac9520-0b97-244e-4bd1-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-L-1868703431" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "725.8" ; + cim:DiagramObjectPoint.yPosition "216.1" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "7f6ee618-d8fe-645a-d723-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-L-1432385497" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "205.5" ; + cim:DiagramObjectPoint.yPosition "204.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "363.5" ; + cim:DiagramObjectPoint.yPosition "248.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "805a00f0-40d5-b82a-9a88-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-L-864290974" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "296" ; + cim:DiagramObjectPoint.yPosition "110" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "730" ; + cim:DiagramObjectPoint.yPosition "116" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "809747d2-4fb3-0035-0c07-39fc10f99da8" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "145.5" ; + cim:DiagramObjectPoint.yPosition "224.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "663.5" ; + cim:DiagramObjectPoint.yPosition "167.3" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "483.5" ; + cim:DiagramObjectPoint.yPosition "264.6" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "616" ; + cim:DiagramObjectPoint.yPosition "206" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "360" ; + cim:DiagramObjectPoint.yPosition "208" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "145.5" ; + cim:DiagramObjectPoint.yPosition "204.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "82a1e367-82df-f6c4-7dcc-39fc10f99da4" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "326.1" ; + cim:DiagramObjectPoint.yPosition "112.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "381.5" ; + cim:DiagramObjectPoint.yPosition "248.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "8328a113-b787-14f6-6626-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-L-1825689888" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "83634d89-092f-cd1e-57aa-39fc10f99da8" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "83ae37fc-54ff-ff5b-e134-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-L-1639924301" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "662" ; + cim:DiagramObjectPoint.yPosition "115.9" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "8400d26d-e85c-3b00-8373-39fc10f99da4" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "8432828e-df71-6cac-481e-39fc10f99da8" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "568" ; + cim:DiagramObjectPoint.yPosition "116" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "301.5" ; + cim:DiagramObjectPoint.yPosition "210.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "383.2452" ; + cim:DiagramObjectPoint.yPosition "257.9688" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "664" ; + cim:DiagramObjectPoint.yPosition "208" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "344.1" ; + cim:DiagramObjectPoint.yPosition "112.7" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "866e3437-180a-6695-6ab6-39fc10f99da4" ; + cim:IdentifiedObject.name "GR-BE-G2-179679877" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "405.5" ; + cim:DiagramObjectPoint.yPosition "218.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "8737351e-d3ab-156b-4e04-39fc10f99da6" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "367.5" ; + cim:DiagramObjectPoint.yPosition "92.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "87d0109a-27d7-c671-653b-39fc10f99da4" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "256" ; + cim:DiagramObjectPoint.yPosition "196" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "664" ; + cim:DiagramObjectPoint.yPosition "224" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "401.5" ; + cim:DiagramObjectPoint.yPosition "108.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "880bab8f-eed0-151e-edfb-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-L-134225412" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "726" ; + cim:DiagramObjectPoint.yPosition "116" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "340.1" ; + cim:DiagramObjectPoint.yPosition "112.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "656" ; + cim:DiagramObjectPoint.yPosition "88" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "256" ; + cim:DiagramObjectPoint.yPosition "216" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "322" ; + cim:DiagramObjectPoint.yPosition "86" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "8941f848-7295-092e-76a7-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-L-1413005679" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "381.5" ; + cim:DiagramObjectPoint.yPosition "272.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "180" ; + cim:DiagramObjectPoint.yPosition "190" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "8a1db7d2-3d05-3c9b-585b-39fc10f99da6" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "344.1" ; + cim:DiagramObjectPoint.yPosition "120.8" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "8a9f4bec-9cf3-e54b-7d4e-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-L-1314624569" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "399.5" ; + cim:DiagramObjectPoint.yPosition "218.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "265.9" ; + cim:DiagramObjectPoint.yPosition "144.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "309.5" ; + cim:DiagramObjectPoint.yPosition "86" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "654" ; + cim:DiagramObjectPoint.yPosition "216" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "544" ; + cim:DiagramObjectPoint.yPosition "130" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "8c33c34d-94d3-19b5-4510-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-NL_BREAKER_1-2124205365" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "145.5" ; + cim:DiagramObjectPoint.yPosition "204.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "8ceb370b-8459-9921-8525-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-BE-Line_3-1460682024" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "8ceb73b9-67ae-b324-6a39-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-L-674506850" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "3" ; + cim:DiagramObjectPoint.xPosition "738" ; + cim:DiagramObjectPoint.yPosition "186" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "284" ; + cim:DiagramObjectPoint.yPosition "104" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "4" ; + cim:DiagramObjectPoint.xPosition "425.9792" ; + cim:DiagramObjectPoint.yPosition "257.9688" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "336" ; + cim:DiagramObjectPoint.yPosition "216" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "8dec6153-eef6-17a4-d5c8-39fc10f99da6" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "222.2" ; + cim:DiagramObjectPoint.yPosition "152" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "664" ; + cim:DiagramObjectPoint.yPosition "216" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "171.5" ; + cim:DiagramObjectPoint.yPosition "204.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "301.7" ; + cim:DiagramObjectPoint.yPosition "86" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "710" ; + cim:DiagramObjectPoint.yPosition "220" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "8efd4dee-e71e-fccb-943c-39fc10f99da6" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "573.9" ; + cim:DiagramObjectPoint.yPosition "134.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "367.5" ; + cim:DiagramObjectPoint.yPosition "108.3" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "422.2" ; + cim:DiagramObjectPoint.yPosition "100" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "298.1" ; + cim:DiagramObjectPoint.yPosition "202.8" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "90364a95-bb72-fe9b-834d-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-BE_Breaker_12-1023172800" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "90f1e74b-b85e-60e2-7ee3-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-L-775229306" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "278" ; + cim:DiagramObjectPoint.yPosition "216" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "442.1" ; + cim:DiagramObjectPoint.yPosition "112.8" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "913121e4-8555-53d9-76de-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-NL_BREAKER_3-1303243245" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "315.5" ; + cim:DiagramObjectPoint.yPosition "260.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "270" ; + cim:DiagramObjectPoint.yPosition "216" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "345.6" ; + cim:DiagramObjectPoint.yPosition "139" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "369.5" ; + cim:DiagramObjectPoint.yPosition "268.2" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "9225e49a-e489-e49b-9a42-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-CIRCB-1230992240-202032439" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "322" ; + cim:DiagramObjectPoint.yPosition "93.9" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "926259e3-d89f-7dc5-4843-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-L-1230804819-1483064846" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "-90" ; + cim:IdentifiedObject.mRID "9273fac1-a16c-f14c-7e2f-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-NL-G1-1573507275" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "92c42a38-73d1-7094-9488-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-L-1644421859" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "326.1" ; + cim:DiagramObjectPoint.yPosition "254.5" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "93320d81-d397-efca-c06a-39fc10f99da6" ; + cim:IdentifiedObject.name "G-Link-356885688" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "250.1" ; + cim:DiagramObjectPoint.yPosition "112.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "442" ; + cim:DiagramObjectPoint.yPosition "214" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "438" ; + cim:DiagramObjectPoint.yPosition "88" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "94df16b5-962f-4b2a-4a86-39fc10f99da6" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "282" ; + cim:DiagramObjectPoint.yPosition "216" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "420.5" ; + cim:DiagramObjectPoint.yPosition "112.7" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "95277349-0b59-c417-7521-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-L-1318677571" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "438" ; + cim:DiagramObjectPoint.yPosition "247.9" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "644" ; + cim:DiagramObjectPoint.yPosition "206" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "961f6e6c-4492-9396-d58f-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-CIRCB-1230992249-1264158611" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "96201083-6e9a-c2af-ec78-39fc10f99da7" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "315.5" ; + cim:DiagramObjectPoint.yPosition "230.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "318" ; + cim:DiagramObjectPoint.yPosition "234" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "-89.8" ; + cim:IdentifiedObject.mRID "96dc0000-eb9f-505e-3462-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-NL_TR2_2-1229360518" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "9770a736-d91d-e846-25e0-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-BE-Load_1-534360930" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "240" ; + cim:DiagramObjectPoint.yPosition "216" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "220" ; + cim:DiagramObjectPoint.yPosition "216" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "422.2" ; + cim:DiagramObjectPoint.yPosition "138" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "986b8d49-1a24-e0cb-ae38-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-BE_Breaker_10-1057986510" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "986f86ca-4f0c-6cf7-1d95-39fc10f99da4" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "314.8542" ; + cim:DiagramObjectPoint.yPosition "251.3542" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "160" ; + cim:DiagramObjectPoint.yPosition "190" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "616" ; + cim:DiagramObjectPoint.yPosition "248" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "9905b805-e631-ec17-be5c-39fc10f99da4" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "284" ; + cim:DiagramObjectPoint.yPosition "234" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "420.5" ; + cim:DiagramObjectPoint.yPosition "112.7" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "100" ; + cim:DiagramObjectPoint.yPosition "166" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "322" ; + cim:DiagramObjectPoint.yPosition "130" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "129.5" ; + cim:DiagramObjectPoint.yPosition "204.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "225.5" ; + cim:DiagramObjectPoint.yPosition "146.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "216.1" ; + cim:DiagramObjectPoint.yPosition "126.8" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "99ee828e-5ad4-15d5-e11a-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-BE-TR3_1-1438987997" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "420.1" ; + cim:DiagramObjectPoint.yPosition "212.9" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "311.5" ; + cim:DiagramObjectPoint.yPosition "170.3" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "9a776e7c-4d62-e216-ce70-39fc10f99dab" ; + cim:IdentifiedObject.name "G-Link-356885159" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "9a78279f-3bfb-5f1e-f780-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-L-728219614" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "9b2ac1bb-a9ce-6d53-bbb9-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-BE-Line_6-190570734" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "9bc101ae-3667-d13d-ca57-39fc10f99da8" ; + cim:IdentifiedObject.name "GR-BE-TR3_1-1444572962" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "223" ; + cim:DiagramObjectPoint.yPosition "100.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "9be0244d-0121-3b1c-0292-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-BE_Breaker_2-1620562747" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "9c116e27-56d8-6c64-59b8-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-L-2088193559" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "663.5" ; + cim:DiagramObjectPoint.yPosition "142.2" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "216.1" ; + cim:DiagramObjectPoint.yPosition "148.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "408.1" ; + cim:DiagramObjectPoint.yPosition "112.8" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "9d11d807-055d-ab4e-9409-39fc10f99da3" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "9d35d2eb-fb19-c8b4-72d4-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-CIRCB-1230992183-246537540" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "438" ; + cim:DiagramObjectPoint.yPosition "140" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "483.5" ; + cim:DiagramObjectPoint.yPosition "102.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "9de5d006-094a-696a-160f-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-L-556173411" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "205.7" ; + cim:DiagramObjectPoint.yPosition "146.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "9df7d042-704b-3cd9-6870-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-L-1214415496" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "748.9" ; + cim:DiagramObjectPoint.yPosition "162.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "445.9" ; + cim:DiagramObjectPoint.yPosition "240.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "568" ; + cim:DiagramObjectPoint.yPosition "134.6" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "9f991bd7-ff43-e7a8-1586-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-L-1666204005" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "306" ; + cim:DiagramObjectPoint.yPosition "156" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "366.4479" ; + cim:DiagramObjectPoint.yPosition "244.7396" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "426" ; + cim:DiagramObjectPoint.yPosition "100" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "a084929f-f8d3-1416-7417-39fc10f99da6" ; + cim:IdentifiedObject.name "GR-L-786288454" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "a1089c7e-ed51-a2a5-908f-39fc10f99da8" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "347.3438" ; + cim:DiagramObjectPoint.yPosition "244.7396" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "318" ; + cim:DiagramObjectPoint.yPosition "234" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "326.7604" ; + cim:DiagramObjectPoint.yPosition "255.3229" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "a19d77fd-780c-ad99-20d5-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-L-892621737" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "270" ; + cim:DiagramObjectPoint.yPosition "196" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "278" ; + cim:DiagramObjectPoint.yPosition "234" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "536" ; + cim:DiagramObjectPoint.yPosition "94" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "a253fbaa-6bea-7a50-3ddd-39fc10f99da4" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "431" ; + cim:DiagramObjectPoint.yPosition "159.2" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "344.1" ; + cim:DiagramObjectPoint.yPosition "112.8" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "a332ff16-d941-e1eb-bb01-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-L-819110417" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "a3463264-c870-9f23-b06d-39fc10f99da6" ; + cim:IdentifiedObject.name "GR-BE-Line_4-223929491" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "285.5" ; + cim:DiagramObjectPoint.yPosition "124.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "a3e810bd-2624-2cab-ee07-39fc10f99da4" ; + cim:IdentifiedObject.name "GR-CIRCB-1230992276-1807435315" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "580" ; + cim:DiagramObjectPoint.yPosition "166" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "a51732eb-c100-7047-7d8a-39fc10f99da4" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "568" ; + cim:DiagramObjectPoint.yPosition "158" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "249.5" ; + cim:DiagramObjectPoint.yPosition "124.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "293.5" ; + cim:DiagramObjectPoint.yPosition "162.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "216.1" ; + cim:DiagramObjectPoint.yPosition "154.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "120.1" ; + cim:DiagramObjectPoint.yPosition "100.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "100" ; + cim:DiagramObjectPoint.yPosition "210" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "594" ; + cim:DiagramObjectPoint.yPosition "116" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "344" ; + cim:DiagramObjectPoint.yPosition "130" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "a69b7209-73b3-0f28-3443-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-L-1987997764" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "738.4" ; + cim:DiagramObjectPoint.yPosition "115.9" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "326.7604" ; + cim:DiagramObjectPoint.yPosition "259.3229" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "a73e7e18-91de-f478-692f-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-CIRCB-1230992240-1599376891" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "363.5" ; + cim:DiagramObjectPoint.yPosition "251.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "235.5" ; + cim:DiagramObjectPoint.yPosition "230.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "534" ; + cim:DiagramObjectPoint.yPosition "164" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "-90" ; + cim:IdentifiedObject.mRID "a7c957d3-64eb-ea4a-ddfa-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-NL-Load_1-799543061" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "284" ; + cim:DiagramObjectPoint.yPosition "110" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "a823f29e-9162-c2f1-15e7-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-NL-Line_4-1715143339" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "336" ; + cim:DiagramObjectPoint.yPosition "130" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "298.1" ; + cim:DiagramObjectPoint.yPosition "240.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "326.1" ; + cim:DiagramObjectPoint.yPosition "78.1" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "534" ; + cim:DiagramObjectPoint.yPosition "130" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "a991c4b4-bdaa-e2ea-483a-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-BE-G2-393165516" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "404.9688" ; + cim:DiagramObjectPoint.yPosition "257.9688" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "226.1" ; + cim:DiagramObjectPoint.yPosition "126.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "426.2" ; + cim:DiagramObjectPoint.yPosition "214" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "aa61ff92-0e41-5926-f43a-39fc10f99da8" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "216.1" ; + cim:DiagramObjectPoint.yPosition "122.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "438" ; + cim:DiagramObjectPoint.yPosition "104" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "438" ; + cim:DiagramObjectPoint.yPosition "158" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "ab182a8c-a172-f43a-145b-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-NL-Line_2-1148908283" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "536" ; + cim:DiagramObjectPoint.yPosition "94" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "338.5" ; + cim:DiagramObjectPoint.yPosition "170.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "ab927a0b-caa8-00c7-70cb-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-L-1744788133" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "abac106a-5825-b77d-4f62-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-L-1386132747" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "abc33a2a-53ff-1326-9b2e-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-L-547497329" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "763.8" ; + cim:DiagramObjectPoint.yPosition "244" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "ac334927-d91a-1cdb-83ed-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-NL-Line_4-393350289" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "374.4479" ; + cim:DiagramObjectPoint.yPosition "244.7396" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "351.3667" ; + cim:DiagramObjectPoint.yPosition "170.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "acb915ac-03e0-e22e-b758-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-BE-Line_6-80088517" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "-90" ; + cim:IdentifiedObject.mRID "acedb6b3-6f4d-7b8b-427f-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-NL-Load_3-1519250664" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "4" ; + cim:DiagramObjectPoint.xPosition "406.1354" ; + cim:DiagramObjectPoint.yPosition "257.9688" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "216.1" ; + cim:DiagramObjectPoint.yPosition "126.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "286.1" ; + cim:DiagramObjectPoint.yPosition "112.9" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "ad84eda4-8f1f-999f-09b3-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-BE-TR2_2-859505670" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "260" ; + cim:DiagramObjectPoint.yPosition "216" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "-90" ; + cim:IdentifiedObject.mRID "adf48912-c98e-25ae-4ffa-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-NL-Inj-XZE_ST24-1026067613" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "412.75" ; + cim:DiagramObjectPoint.yPosition "257.9688" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "276.1" ; + cim:DiagramObjectPoint.yPosition "112.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "225.5" ; + cim:DiagramObjectPoint.yPosition "100.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "763.8" ; + cim:DiagramObjectPoint.yPosition "204" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "174" ; + cim:DiagramObjectPoint.yPosition "190" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "af0d1b6b-c4ff-9736-8b9c-39fc10f99da8" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "afa6faa0-5e47-861f-c0ce-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-L-1336054736" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "688" ; + cim:DiagramObjectPoint.yPosition "216" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "180.4" ; + cim:IdentifiedObject.mRID "afe4a810-365d-1682-ee09-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-B1-1643146121" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "b037498f-d556-52c5-ad33-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-BE_Breaker_3-966067774" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "b1240ffc-1cdd-aa10-549e-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-L-922131924" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "749.1" ; + cim:DiagramObjectPoint.yPosition "170.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "369.5" ; + cim:DiagramObjectPoint.yPosition "230.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "b17de664-9fec-6733-dc71-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-NL-Line_1-1839845569" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "b182c324-a38f-4cb9-0c33-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-CIRCB-1230992174-1608660855" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "345.6" ; + cim:DiagramObjectPoint.yPosition "156.1" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "250.1" ; + cim:DiagramObjectPoint.yPosition "90.9" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "194" ; + cim:DiagramObjectPoint.yPosition "216" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "534" ; + cim:DiagramObjectPoint.yPosition "152" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "b2da8b46-bffe-ecdb-1d65-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-L-411342095" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "309.5" ; + cim:DiagramObjectPoint.yPosition "230.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "406.1354" ; + cim:DiagramObjectPoint.yPosition "258.5521" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "-89.8" ; + cim:IdentifiedObject.mRID "b3157bcb-fd8f-e523-2a31-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-NL_TR2_2-1576535355" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "401.5" ; + cim:DiagramObjectPoint.yPosition "144.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "298.1" ; + cim:DiagramObjectPoint.yPosition "240.7" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "329.5" ; + cim:DiagramObjectPoint.yPosition "132.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "b3fe7119-57c4-83ed-0605-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-L-1652522042" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "b49f2300-0048-73bd-2333-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-BE_Breaker_1-850940663" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "663.5" ; + cim:DiagramObjectPoint.yPosition "159.3" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "377.5" ; + cim:DiagramObjectPoint.yPosition "230.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "211.5" ; + cim:DiagramObjectPoint.yPosition "204.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "373.5" ; + cim:DiagramObjectPoint.yPosition "248.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "b61815ba-643d-2907-a7e4-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-L-1722550678" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "3" ; + cim:DiagramObjectPoint.xPosition "423.2998" ; + cim:DiagramObjectPoint.yPosition "257.9688" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "263.5" ; + cim:DiagramObjectPoint.yPosition "114.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "100" ; + cim:DiagramObjectPoint.yPosition "190" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "424.2" ; + cim:DiagramObjectPoint.yPosition "166" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "548" ; + cim:DiagramObjectPoint.yPosition "130" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "200" ; + cim:DiagramObjectPoint.yPosition "110" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "336" ; + cim:DiagramObjectPoint.yPosition "188" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "327.5" ; + cim:DiagramObjectPoint.yPosition "230.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "440.1" ; + cim:DiagramObjectPoint.yPosition "200.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "301.5" ; + cim:DiagramObjectPoint.yPosition "230.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "b865d4b2-3600-4317-3831-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-BE-Load_1-845605242" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "225.5" ; + cim:DiagramObjectPoint.yPosition "204.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "b9a9e760-3382-c4a6-27c5-39fc10f99da6" ; + cim:IdentifiedObject.name "G-Link-356885700" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "b9c670ec-13e3-467f-aad5-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-L-666062934" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "b9eee9da-1996-e618-ffb7-39fc10f99da4" ; + cim:IdentifiedObject.name "GR-L-732825233" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "534" ; + cim:DiagramObjectPoint.yPosition "126" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "326.1" ; + cim:DiagramObjectPoint.yPosition "212.9" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "ba901fa8-82c2-eac3-5d5a-39fc10f99da8" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "717.8" ; + cim:DiagramObjectPoint.yPosition "216.1" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "3" ; + cim:DiagramObjectPoint.xPosition "320.4764" ; + cim:DiagramObjectPoint.yPosition "166.6875" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "bafb2865-8ef5-09e5-a10a-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-BE-TR2_1-2030167194" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "420.1" ; + cim:DiagramObjectPoint.yPosition "172" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "363.5" ; + cim:DiagramObjectPoint.yPosition "245.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "bc1d96fb-5a7b-b0d9-3ddd-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-L-915671003" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "381" ; + cim:DiagramObjectPoint.yPosition "250.1249" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "375.772" ; + cim:DiagramObjectPoint.yPosition "244.7396" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "bc7d79e9-593d-1e12-db4c-39fc10f99da4" ; + cim:IdentifiedObject.name "GR-L-758388342" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "412.1" ; + cim:DiagramObjectPoint.yPosition "112.8" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "bcf980fa-d02c-73f8-c8db-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-L-646363162" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "260" ; + cim:DiagramObjectPoint.yPosition "110" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "bd5d28bd-cba9-3cbb-8033-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-L-1515839254" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "335.7563" ; + cim:DiagramObjectPoint.yPosition "244" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "298.1" ; + cim:DiagramObjectPoint.yPosition "206.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "483.5" ; + cim:DiagramObjectPoint.yPosition "166.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "328" ; + cim:DiagramObjectPoint.yPosition "234" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "215.2" ; + cim:DiagramObjectPoint.yPosition "100.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "78.2" ; + cim:DiagramObjectPoint.yPosition "190" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "be38aec7-a129-1929-23dc-39fc10f99da8" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "616" ; + cim:DiagramObjectPoint.yPosition "202" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "be9855ff-da09-cf09-c043-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-L-1189435787" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "338.1" ; + cim:DiagramObjectPoint.yPosition "84.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "337.3438" ; + cim:DiagramObjectPoint.yPosition "244.7396" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "c03136cb-844a-cd6e-acec-39fc10f99da4" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "c071ec03-0424-da1e-2b06-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-L-224067510" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "444" ; + cim:DiagramObjectPoint.yPosition "138" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "c0d7afc7-732e-2997-956c-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-L-303851305" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "387.5" ; + cim:DiagramObjectPoint.yPosition "108.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "-89.2" ; + cim:IdentifiedObject.mRID "c1056246-21f6-b1b7-1ff2-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-NL_TR2_3-1899438011" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "c12616b5-254d-a5f5-ab28-39fc10f99da8" ; + cim:IdentifiedObject.name "GR-L-407244561" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "c140fbf6-8196-bf88-c8ec-39fc10f99da8" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "423.2998" ; + cim:DiagramObjectPoint.yPosition "257.9688" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "306" ; + cim:DiagramObjectPoint.yPosition "152" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "315.5" ; + cim:DiagramObjectPoint.yPosition "248.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "265.9" ; + cim:DiagramObjectPoint.yPosition "162.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "284" ; + cim:DiagramObjectPoint.yPosition "218" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "c1f16e98-ddd0-9c13-b66e-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-CIRCB-1230991544-1798886865" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "284" ; + cim:DiagramObjectPoint.yPosition "164" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "c1fd316c-08b1-7cd6-7cbd-39fc10f99da4" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "295.5" ; + cim:DiagramObjectPoint.yPosition "124.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "218.1" ; + cim:DiagramObjectPoint.yPosition "90.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "710" ; + cim:DiagramObjectPoint.yPosition "216.1" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "c39de148-ed68-49ec-d3a6-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-L-596363093" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "684" ; + cim:DiagramObjectPoint.yPosition "116.1" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "3" ; + cim:DiagramObjectPoint.xPosition "322.526" ; + cim:DiagramObjectPoint.yPosition "202.4063" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "216.1" ; + cim:DiagramObjectPoint.yPosition "132.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "320.4764" ; + cim:DiagramObjectPoint.yPosition "178.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "356" ; + cim:DiagramObjectPoint.yPosition "100" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "3" ; + cim:DiagramObjectPoint.xPosition "274.9666" ; + cim:DiagramObjectPoint.yPosition "152.1354" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "367.5" ; + cim:DiagramObjectPoint.yPosition "144.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "c459244a-e12d-a1c1-519a-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-L-1057352045" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "380.4708" ; + cim:DiagramObjectPoint.yPosition "244" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "c5715126-13b4-3595-0a19-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-L-1635329734" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "250.1" ; + cim:DiagramObjectPoint.yPosition "131.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "c5bb3ca3-4314-b580-7de7-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-L-132391528" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "664" ; + cim:DiagramObjectPoint.yPosition "216.1" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "326.1" ; + cim:DiagramObjectPoint.yPosition "112.7" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "659.8" ; + cim:DiagramObjectPoint.yPosition "88" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "381.5" ; + cim:DiagramObjectPoint.yPosition "264.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "216.1" ; + cim:DiagramObjectPoint.yPosition "160.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "346.1" ; + cim:DiagramObjectPoint.yPosition "220.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "319.5" ; + cim:DiagramObjectPoint.yPosition "248.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "266" ; + cim:DiagramObjectPoint.yPosition "141.9" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "c85fcc1a-be52-487d-b6d2-39fc10f99da8" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "738.4" ; + cim:DiagramObjectPoint.yPosition "152.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "405.5" ; + cim:DiagramObjectPoint.yPosition "214.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "c8c97eb3-74dd-6dc0-c0a2-39fc10f99da4" ; + cim:IdentifiedObject.name "GR-L-483231920" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "370.1" ; + cim:DiagramObjectPoint.yPosition "212.8" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "c951145f-1a87-9860-2235-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-L-941029519" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "c979a07a-f319-3449-f216-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-L-105055723" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "c98b6418-b701-d0fb-7a82-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-L-862268842" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "ca231927-7a24-4db6-18ef-39fc10f99da6" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "4" ; + cim:DiagramObjectPoint.xPosition "269.875" ; + cim:DiagramObjectPoint.yPosition "181.2396" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "438" ; + cim:DiagramObjectPoint.yPosition "99.9" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "409.7326" ; + cim:DiagramObjectPoint.yPosition "257.9688" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "438" ; + cim:DiagramObjectPoint.yPosition "240" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "329.5" ; + cim:DiagramObjectPoint.yPosition "250.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "738" ; + cim:DiagramObjectPoint.yPosition "175.2" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "383.5" ; + cim:DiagramObjectPoint.yPosition "108.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "cb4731d7-66e6-6335-924e-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-L-1946514042" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "583.8" ; + cim:DiagramObjectPoint.yPosition "148" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "438" ; + cim:DiagramObjectPoint.yPosition "138.1" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "256" ; + cim:DiagramObjectPoint.yPosition "148" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "cc2a9da7-ff13-45b7-ac6d-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-L-1265736707" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "cc77a264-0bf5-bfd2-d2f4-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-CIRCB-1230992276-213122156" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "438" ; + cim:DiagramObjectPoint.yPosition "94" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "ccc99efb-483f-1af0-a492-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-BE_Breaker_3-646738415" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "347.5" ; + cim:DiagramObjectPoint.yPosition "170.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "cd120b2f-531e-8c61-c85d-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-L-562390440" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "616" ; + cim:DiagramObjectPoint.yPosition "210" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "ce08ded6-cf78-7661-e96f-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-L-407628436" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "644" ; + cim:DiagramObjectPoint.yPosition "115.9" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "363.5" ; + cim:DiagramObjectPoint.yPosition "170.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "298.1" ; + cim:DiagramObjectPoint.yPosition "202.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "398.1" ; + cim:DiagramObjectPoint.yPosition "112.7" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "367.5" ; + cim:DiagramObjectPoint.yPosition "170.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "cefde69b-7da6-6f6b-f3dc-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-CIRCB-1230992399-850693726" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "240" ; + cim:DiagramObjectPoint.yPosition "152" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "cfa5f48e-ee0a-e1e8-657c-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-BE_Breaker_2-801602176" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "cfa62ecc-1f68-d585-804b-39fc10f99da8" ; + cim:IdentifiedObject.name "GR-CIRCB-1230992285-1387932951" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "716" ; + cim:DiagramObjectPoint.yPosition "110" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "738" ; + cim:DiagramObjectPoint.yPosition "260" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "d05e00a5-5fdc-c685-e403-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-L-1088983047" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "431.2" ; + cim:DiagramObjectPoint.yPosition "182.8" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "d1fc58fe-6572-b077-c78a-39fc10f99da4" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "404.1" ; + cim:DiagramObjectPoint.yPosition "112.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "345.5" ; + cim:DiagramObjectPoint.yPosition "124.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "315.5" ; + cim:DiagramObjectPoint.yPosition "230.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "274.9666" ; + cim:DiagramObjectPoint.yPosition "164" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "d2641f51-70db-9abf-05c1-39fc10f99da8" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "d2a5b969-bac3-f08a-a75b-39fc10f99da4" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "332" ; + cim:DiagramObjectPoint.yPosition "216" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "438" ; + cim:DiagramObjectPoint.yPosition "213.9" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "351.5" ; + cim:DiagramObjectPoint.yPosition "170.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "710" ; + cim:DiagramObjectPoint.yPosition "210" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "284" ; + cim:DiagramObjectPoint.yPosition "232" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "263.8" ; + cim:DiagramObjectPoint.yPosition "131.2" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "336.1" ; + cim:DiagramObjectPoint.yPosition "112.8" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "d43d7be1-7aa9-b5c4-d4bf-39fc10f99da8" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "3" ; + cim:DiagramObjectPoint.xPosition "326.1" ; + cim:DiagramObjectPoint.yPosition "139" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "438" ; + cim:DiagramObjectPoint.yPosition "213.9" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "251.5" ; + cim:DiagramObjectPoint.yPosition "222.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "347.2" ; + cim:DiagramObjectPoint.yPosition "100.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "356" ; + cim:DiagramObjectPoint.yPosition "130" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "265.5" ; + cim:DiagramObjectPoint.yPosition "230.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "d51636eb-b5b1-6aa3-c23d-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-L-1315724107" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "326.1" ; + cim:DiagramObjectPoint.yPosition "177.1" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "315.5" ; + cim:DiagramObjectPoint.yPosition "210.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "276.9733" ; + cim:DiagramObjectPoint.yPosition "148" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "440.1" ; + cim:DiagramObjectPoint.yPosition "240.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "270" ; + cim:DiagramObjectPoint.yPosition "246" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "d62c24d8-2a88-ba04-240f-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-L-2127916291" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "345.6" ; + cim:DiagramObjectPoint.yPosition "164.1" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "d696a259-c393-1e01-e7f7-39fc10f99da4" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "341.5" ; + cim:DiagramObjectPoint.yPosition "124.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "444" ; + cim:DiagramObjectPoint.yPosition "100" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "d7850a00-0e4c-719b-45b2-39fc10f99da7" ; + cim:IdentifiedObject.name "G-Link-356885332" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "285.5" ; + cim:DiagramObjectPoint.yPosition "156.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "250.1" ; + cim:DiagramObjectPoint.yPosition "173.3" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "398.1" ; + cim:DiagramObjectPoint.yPosition "112.8" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "d805704e-f421-6a31-663f-39fc10f99da8" ; + cim:IdentifiedObject.name "GR-L-350722573" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "d88dabca-1743-56c7-8938-39fc10f99da4" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "738" ; + cim:DiagramObjectPoint.yPosition "204" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "483.5" ; + cim:DiagramObjectPoint.yPosition "108.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "d9de5c2a-47b3-37d7-4238-39fc10f99da4" ; + cim:IdentifiedObject.name "GR-CIRCB-1230992285-1736855320" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "d9de6328-02a3-50c8-499f-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-BE-Line_5-236789378" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "251.5" ; + cim:DiagramObjectPoint.yPosition "238.4" . + + a cim:Diagram ; + cim:Diagram.orientation cim:OrientationKind.negative ; + cim:IdentifiedObject.mRID "da87c6dc-84d9-c07e-7889-39fc10f99da6" ; + cim:IdentifiedObject.name "MAS NL" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "230" ; + cim:DiagramObjectPoint.yPosition "216" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "346.1" ; + cim:DiagramObjectPoint.yPosition "204.8" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "-1.2" ; + cim:IdentifiedObject.mRID "db32adab-ff48-d5da-cde3-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-busbarcoupler 1-713473953" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "db4c1d50-0f8d-74d0-daf8-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-BE_Breaker_1-874007652" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "447.9" ; + cim:DiagramObjectPoint.yPosition "112.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "270" ; + cim:DiagramObjectPoint.yPosition "216" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "346.1" ; + cim:DiagramObjectPoint.yPosition "212.9" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "322" ; + cim:DiagramObjectPoint.yPosition "166" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "332.1" ; + cim:DiagramObjectPoint.yPosition "212.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "239.5" ; + cim:DiagramObjectPoint.yPosition "230.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "dcee2d88-079a-b349-57d9-39fc10f99da8" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "250.1" ; + cim:DiagramObjectPoint.yPosition "162.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "177.5" ; + cim:DiagramObjectPoint.yPosition "86" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "de4ea648-18ec-8d7d-c065-39fc10f99da8" ; + cim:IdentifiedObject.name "G-Link-356885260" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "760" ; + cim:DiagramObjectPoint.yPosition "116" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "defce7e6-1970-186d-f698-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-CIRCB-1230992408-1487360655" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "df0f48e7-9e71-dacc-b779-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-L-1275097229" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "447.8" ; + cim:DiagramObjectPoint.yPosition "138" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "483.5" ; + cim:DiagramObjectPoint.yPosition "118.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "250.1" ; + cim:DiagramObjectPoint.yPosition "81.3" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "329.5" ; + cim:DiagramObjectPoint.yPosition "118.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "225.5" ; + cim:DiagramObjectPoint.yPosition "124.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "3" ; + cim:DiagramObjectPoint.xPosition "644" ; + cim:DiagramObjectPoint.yPosition "182.3" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "204" ; + cim:DiagramObjectPoint.yPosition "110" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "250" ; + cim:DiagramObjectPoint.yPosition "224" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "240" ; + cim:DiagramObjectPoint.yPosition "110" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "e1c695f7-81f7-0a37-8c5b-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-BE-Line_1-206274956" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "431" ; + cim:DiagramObjectPoint.yPosition "140.7" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "351.5" ; + cim:DiagramObjectPoint.yPosition "174.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "355.5" ; + cim:DiagramObjectPoint.yPosition "170.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "758" ; + cim:DiagramObjectPoint.yPosition "204" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "534" ; + cim:DiagramObjectPoint.yPosition "136" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "654" ; + cim:DiagramObjectPoint.yPosition "116" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "284" ; + cim:DiagramObjectPoint.yPosition "118" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "295.5" ; + cim:DiagramObjectPoint.yPosition "224.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "324" ; + cim:DiagramObjectPoint.yPosition "234" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "363.5" ; + cim:DiagramObjectPoint.yPosition "232.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "360" ; + cim:DiagramObjectPoint.yPosition "204" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "420.1" ; + cim:DiagramObjectPoint.yPosition "240.8" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "e49a305b-2405-2a43-16c4-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-L-16840964" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "3" ; + cim:DiagramObjectPoint.xPosition "375.772" ; + cim:DiagramObjectPoint.yPosition "244.7396" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "4" ; + cim:DiagramObjectPoint.xPosition "265.9063" ; + cim:DiagramObjectPoint.yPosition "152.1354" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "e5019286-ff8d-06df-a133-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-NL_BREAKER_1-724054015" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "420.5" ; + cim:DiagramObjectPoint.yPosition "96.9" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "424.2" ; + cim:DiagramObjectPoint.yPosition "248" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "120.1" ; + cim:DiagramObjectPoint.yPosition "212.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "616" ; + cim:DiagramObjectPoint.yPosition "243.9" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "e5c72835-a309-5dd9-a0ac-39fc10f99da4" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "568" ; + cim:DiagramObjectPoint.yPosition "166" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "209.5" ; + cim:DiagramObjectPoint.yPosition "146.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "3" ; + cim:DiagramObjectPoint.xPosition "326.1" ; + cim:DiagramObjectPoint.yPosition "179.1" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "438" ; + cim:DiagramObjectPoint.yPosition "152" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "e8212281-0793-7d05-83ad-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-L-321611979" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "160" ; + cim:DiagramObjectPoint.yPosition "196" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "e89ef836-30b9-ef7a-5e61-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-L-1212420896" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "406.1354" ; + cim:DiagramObjectPoint.yPosition "248.7083" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "285.5" ; + cim:DiagramObjectPoint.yPosition "230.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "447.8" ; + cim:DiagramObjectPoint.yPosition "166" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "765.8" ; + cim:DiagramObjectPoint.yPosition "116" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "626" ; + cim:DiagramObjectPoint.yPosition "244" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "438" ; + cim:DiagramObjectPoint.yPosition "204" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "e9588019-0ce4-cfa0-e492-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-BE-Line_2-452729700" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "401.5" ; + cim:DiagramObjectPoint.yPosition "108.3" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "123.7" ; + cim:DiagramObjectPoint.yPosition "204.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "363.5" ; + cim:DiagramObjectPoint.yPosition "228.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "e9bd6f2c-2fd5-1322-fb46-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-NL_BREAKER_4-786293968" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "ea009071-9baa-1062-d39d-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-L-1506404720" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "ea3c5d10-c3d0-725e-7f02-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-SVC-1230797516-1442176516" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "ea637fa1-fb7d-ac3e-460e-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-L-2092320082" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "3" ; + cim:DiagramObjectPoint.xPosition "362.5539" ; + cim:DiagramObjectPoint.yPosition "244.7396" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "ea735bc8-834e-0ee1-1295-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-CIRCB-1230991718-1439853298" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "336" ; + cim:DiagramObjectPoint.yPosition "204" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "eb6a9f5a-ff96-4903-a60e-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-L-1539709557" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "ebaf1deb-273f-7bbf-a614-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-BE_S2-2080301181" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "284" ; + cim:DiagramObjectPoint.yPosition "216" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "3" ; + cim:DiagramObjectPoint.xPosition "644" ; + cim:DiagramObjectPoint.yPosition "142.2" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "270" ; + cim:DiagramObjectPoint.yPosition "234" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "ec71dc07-0b6f-8ee5-572d-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-BE-Line_7-517810986" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "-90" ; + cim:IdentifiedObject.mRID "ec8e3de2-619b-e19e-2286-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-NL-Inj-XCA_AL11-1939534567" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "ecd071fb-c025-a2e6-3d4f-39fc10f99da4" ; + cim:IdentifiedObject.name "GR-L-1579587291" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "270" ; + cim:IdentifiedObject.mRID "ecdd4af1-08be-eb44-7187-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-CIRCB-1230991526-155239014" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "252.2" ; + cim:DiagramObjectPoint.yPosition "196" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "318" ; + cim:DiagramObjectPoint.yPosition "214" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "444" ; + cim:DiagramObjectPoint.yPosition "248" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "edaf23dd-1294-1eee-2831-39fc10f99da6" ; + cim:IdentifiedObject.name "GR-L-834411435" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "ee0866ee-4f04-2ba5-d289-39fc10f99da8" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "329.5" ; + cim:DiagramObjectPoint.yPosition "228.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "297.5" ; + cim:DiagramObjectPoint.yPosition "162.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "ef1a773f-3b83-e44d-d5e3-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-NL-Line_5-872785043" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "644" ; + cim:DiagramObjectPoint.yPosition "243.9" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "ef772a3e-f26f-60ad-552f-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-NL-Line_3-484835666" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "580" ; + cim:DiagramObjectPoint.yPosition "148" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "3" ; + cim:DiagramObjectPoint.xPosition "420.5" ; + cim:DiagramObjectPoint.yPosition "140.7" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "251.5" ; + cim:DiagramObjectPoint.yPosition "230.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "360" ; + cim:DiagramObjectPoint.yPosition "204" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "225.5" ; + cim:DiagramObjectPoint.yPosition "90.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "120.1" ; + cim:DiagramObjectPoint.yPosition "194.8" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "-90" ; + cim:IdentifiedObject.mRID "f0d8ecb8-0a61-6c1a-228a-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-NL-Load_2-1562670205" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "263.5" ; + cim:DiagramObjectPoint.yPosition "124.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "f1479730-a66c-813d-d6ae-39fc10f99da4" ; + cim:IdentifiedObject.name "GR-L-1553295232" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "f151ea98-908b-99c0-749e-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-L-1149343369" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "f1bb056c-ad23-7d52-5b2a-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-L-643001077" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "616" ; + cim:DiagramObjectPoint.yPosition "244" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "438" ; + cim:DiagramObjectPoint.yPosition "250.2" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "716" ; + cim:DiagramObjectPoint.yPosition "115.9" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "534" ; + cim:DiagramObjectPoint.yPosition "130" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "550" ; + cim:DiagramObjectPoint.yPosition "158" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "438" ; + cim:DiagramObjectPoint.yPosition "130" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "206" ; + cim:DiagramObjectPoint.yPosition "208" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "250.1" ; + cim:DiagramObjectPoint.yPosition "154.8" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "f3895337-ae38-b034-fc56-39fc10f99da8" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "f3a051a9-7514-846f-9cca-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-BE_S1-672727807" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "554" ; + cim:DiagramObjectPoint.yPosition "158" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "f409862d-8176-0de7-3e6b-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-L-842886683" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "322" ; + cim:DiagramObjectPoint.yPosition "78" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "f4981b8c-edeb-6fb9-5e10-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-BE-Load_2-1923467690" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "363.5" ; + cim:DiagramObjectPoint.yPosition "248.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "f4cad3ac-8133-7ea9-4929-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-L-56085830" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "f4dc63b3-fc48-1178-32ed-39fc10f99da8" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "483.5" ; + cim:DiagramObjectPoint.yPosition "254.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "f4ed9276-b0be-5b71-e45b-39fc10f99da8" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "420.5" ; + cim:DiagramObjectPoint.yPosition "149.2" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "483.5" ; + cim:DiagramObjectPoint.yPosition "154.4" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "f56b27ac-607d-41e6-0913-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-NL-Line_3-1740588309" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "166" ; + cim:DiagramObjectPoint.yPosition "190" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "f5ad766d-a140-e012-4bae-39fc10f99da6" ; + cim:IdentifiedObject.name "GR-BE-G1-77304379" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "206" ; + cim:DiagramObjectPoint.yPosition "216" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "f602938b-5685-e9a9-3b14-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-L-827153830" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "f65d5888-7c9f-5df8-e4b5-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-L-1106639469" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "f67c21bd-f1a7-f218-919e-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-L-1291015486" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "f6cff398-8522-7e9e-1782-39fc10f99da4" ; + cim:IdentifiedObject.name "GR-L-267527885" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "228.1" ; + cim:DiagramObjectPoint.yPosition "90.8" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "f78e08ec-f847-c8ca-f9fe-39fc10f99da8" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "250.1" ; + cim:DiagramObjectPoint.yPosition "126.7" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "-90" ; + cim:IdentifiedObject.mRID "f7df94c2-b238-a66a-a7a1-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-NL-Load_2-1605800955" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "264" ; + cim:DiagramObjectPoint.yPosition "216" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "f88e7068-7121-4ccc-440f-39fc10f99da6" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "336" ; + cim:DiagramObjectPoint.yPosition "234" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "438" ; + cim:DiagramObjectPoint.yPosition "244" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "f9df23a7-0ad9-1546-1f72-39fc10f99da8" ; + cim:IdentifiedObject.name "GR-L-782201291" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "250.1" ; + cim:DiagramObjectPoint.yPosition "144.7" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "312.1" ; + cim:DiagramObjectPoint.yPosition "240.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "380.1" ; + cim:DiagramObjectPoint.yPosition "212.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "403.9" ; + cim:DiagramObjectPoint.yPosition "212.9" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "fadc3437-316d-6e41-0d65-39fc10f99da7" ; + cim:IdentifiedObject.name "GR-L-532331557" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "fae0e3d3-28be-d04c-7890-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-L-426116696" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "438" ; + cim:DiagramObjectPoint.yPosition "130" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "fb2be7d5-4e9c-2388-0f47-39fc10f99da8" ; + cim:IdentifiedObject.name "G-Link-356885242" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "345.6" ; + cim:DiagramObjectPoint.yPosition "179.1" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "248" ; + cim:DiagramObjectPoint.yPosition "148" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "fbbe7428-5e2b-f666-57ad-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-L-1930599266" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "438" ; + cim:DiagramObjectPoint.yPosition "138.1" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "392.1" ; + cim:DiagramObjectPoint.yPosition "212.8" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "fc32459c-0966-663a-b40b-39fc10f99da8" ; + cim:IdentifiedObject.name "GR-BE-Inj-XZE_ST23-650184206" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "90" ; + cim:IdentifiedObject.mRID "fc7e8524-3363-e51f-e7d7-39fc10f99da5" ; + cim:IdentifiedObject.name "GR-CIRCB-1230992399-1670754907" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "392.1" ; + cim:DiagramObjectPoint.yPosition "206.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "749.1" ; + cim:DiagramObjectPoint.yPosition "186" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "312.1" ; + cim:DiagramObjectPoint.yPosition "202.8" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "fd89ea83-62f4-40a7-4417-39fc10f99da6" ; + cim:IdentifiedObject.name "none" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "327.5" ; + cim:DiagramObjectPoint.yPosition "248.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "483.5" ; + cim:DiagramObjectPoint.yPosition "212.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "329.5" ; + cim:DiagramObjectPoint.yPosition "232.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "438" ; + cim:DiagramObjectPoint.yPosition "170" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "581.7" ; + cim:DiagramObjectPoint.yPosition "134.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "180" ; + cim:DiagramObjectPoint.yPosition "86" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "-90" ; + cim:IdentifiedObject.mRID "fe98c262-a235-52be-516d-39fc10f99da9" ; + cim:IdentifiedObject.name "GR-NL-S1-1493216764" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "401.5" ; + cim:DiagramObjectPoint.yPosition "114.4" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "336.1" ; + cim:DiagramObjectPoint.yPosition "212.8" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "1" ; + cim:DiagramObjectPoint.xPosition "546" ; + cim:DiagramObjectPoint.yPosition "158" . + + a cim:DiagramObjectPoint ; + cim:DiagramObjectPoint.DiagramObject ; + cim:DiagramObjectPoint.sequenceNumber "2" ; + cim:DiagramObjectPoint.xPosition "710" ; + cim:DiagramObjectPoint.yPosition "216" . + + a cim:DiagramObject ; + cim:DiagramObject.Diagram ; + cim:DiagramObject.IdentifiedObject ; + cim:DiagramObject.rotation "0" ; + cim:IdentifiedObject.mRID "ffb98b45-f7d6-f182-aec9-39fc10f99daa" ; + cim:IdentifiedObject.name "GR-L-1359764781" . +} \ No newline at end of file diff --git a/rdf-improved/test/trig/MicroGrid-BD-MAS-diff.trig b/rdf-improved/test/trig/MicroGrid-BD-MAS-diff.trig new file mode 100644 index 0000000..ffbe8d5 --- /dev/null +++ b/rdf-improved/test/trig/MicroGrid-BD-MAS-diff.trig @@ -0,0 +1,49 @@ + +@prefix rdf: . +@prefix cim: . +@prefix dm: . +@prefix eu: . +@prefix md: . + + a dm:DifferenceModel ; + dm:forwardDifferences ; + dm:reverseDifferences ; + md:Model.Supersedes ; + md:Model.created "2021-11-19T23:16:27Z" ; + md:Model.description "CGMES Conformity Assessment Test Configuration. The Test Configuration is owned by ENTSO-E and is provided by ENTSO-E “as it is”. To the fullest extent permitted by law, ENTSO-E shall not be liable for any damages of any kind arising out of the use of the model (including any of its subsequent modifications). ENTSO-E neither warrants, nor represents that the use of the model will not infringe the rights of third parties. Any use of the model shall include a reference to ENTSO-E. ENTSO-E web site is the only official source of information related to the model." ; + md:Model.modelingAuthoritySet "http://entsoe.eu/boundary" ; + md:Model.profile "http://iec.ch/TC57/ns/CIM/EquipmentBoundary-EU/3.0" ; + md:Model.scenarioTime "2021-03-25T15:30:00Z" ; + md:Model.version "006" . + + + + { # reverseDifferences + +} + + { # forwardDifferences + a cim:ConnectivityNode ; + cim:ConnectivityNode.ConnectivityNodeContainer ; + cim:IdentifiedObject.description "HVDC-AC; 220 kV; OHL" ; + cim:IdentifiedObject.mRID "1c4a9e9c-ef00-42c9-9845-f64f9ca1e57a" ; + cim:IdentifiedObject.name "Border_HVDC-AC" ; + eu:IdentifiedObject.energyIdentCodeEic "10T-DC-NL-00082X" ; + eu:IdentifiedObject.shortName "HVDC-AC-1" . + + a eu:BoundaryPoint ; + cim:IdentifiedObject.description "HVDC-AC; 220 kV; OHL" ; + cim:IdentifiedObject.mRID "af1d901f-98de-574f-abc3-6c3025e7a686" ; + cim:IdentifiedObject.name "Border_HVDC-AC" ; + eu:BoundaryPoint.ConnectivityNode ; + eu:BoundaryPoint.fromEndIsoCode "NL" ; + eu:BoundaryPoint.fromEndName "HVDC/NL" ; + eu:BoundaryPoint.fromEndNameTso "NL" ; + eu:BoundaryPoint.isDirectCurrent "true" ; + eu:BoundaryPoint.isExcludedFromAreaInterchange "false" ; + eu:BoundaryPoint.toEndIsoCode "BE" ; + eu:BoundaryPoint.toEndName "NL_AC-1" ; + eu:BoundaryPoint.toEndNameTso "NL-HVDC-1" ; + eu:IdentifiedObject.energyIdentCodeEic "10T-DC-NL-00082X" ; + eu:IdentifiedObject.shortName "HVDC-AC-1" . +} \ No newline at end of file diff --git a/rdf-improved/test/trig/MicroGrid-BE-MAS-DY_diff.trig b/rdf-improved/test/trig/MicroGrid-BE-MAS-DY_diff.trig new file mode 100644 index 0000000..304bc88 --- /dev/null +++ b/rdf-improved/test/trig/MicroGrid-BE-MAS-DY_diff.trig @@ -0,0 +1,29 @@ + +@prefix rdf: . +@prefix cim: . +@prefix dm: . +@prefix eu: . +@prefix md: . + + a dm:DifferenceModel ; + dm:forwardDifferences ; + dm:reverseDifferences ; + md:Model.DependentOn ; + md:Model.Supersedes ; + md:Model.created "2021-11-19T23:16:27Z" ; + md:Model.description "CGMES Conformity Assessment Test Configuration. The Test Configuration is owned by ENTSO-E and is provided by ENTSO-E “as it is”. To the fullest extent permitted by law, ENTSO-E shall not be liable for any damages of any kind arising out of the use of the model (including any of its subsequent modifications). ENTSO-E neither warrants, nor represents that the use of the model will not infringe the rights of third parties. Any use of the model shall include a reference to ENTSO-E. ENTSO-E web site is the only official source of information related to the model." ; + md:Model.modelingAuthoritySet "http://elia.be/CGMES" ; + md:Model.profile "http://iec.ch/TC57/ns/CIM/Dynamics-EU/1.0" ; + md:Model.scenarioTime "2021-04-21T15:30:00Z" ; + md:Model.version "002" . + + + + { # reverseDifferences + cim:ExcIEEEAC4A.ka "200" . +} + + { # forwardDifferences + cim:ExcIEEEAC4A.ka "300" ; + cim:IdentifiedObject.description "Modified parameter Ka" . +} \ No newline at end of file diff --git a/rdf-improved/test/trig/MicroGrid-NL-MAS-EQ_diff.trig b/rdf-improved/test/trig/MicroGrid-NL-MAS-EQ_diff.trig new file mode 100644 index 0000000..9687a59 --- /dev/null +++ b/rdf-improved/test/trig/MicroGrid-NL-MAS-EQ_diff.trig @@ -0,0 +1,1421 @@ + +@prefix rdf: . +@prefix cim: . +@prefix dm: . +@prefix eu: . +@prefix md: . + + a dm:DifferenceModel ; + dm:forwardDifferences ; + dm:reverseDifferences ; + md:Model.DependentOn ; + md:Model.Supersedes ; + md:Model.created "2021-11-19T23:16:27Z" ; + md:Model.description "CGMES Conformity Assessment Test Configuration. The Test Configuration is owned by ENTSO-E and is provided by ENTSO-E “as it is”. To the fullest extent permitted by law, ENTSO-E shall not be liable for any damages of any kind arising out of the use of the model (including any of its subsequent modifications). ENTSO-E neither warrants, nor represents that the use of the model will not infringe the rights of third parties. Any use of the model shall include a reference to ENTSO-E. ENTSO-E web site is the only official source of information related to the model." ; + md:Model.modelingAuthoritySet "http://tennet.nl/CGMES" ; + md:Model.profile "http://iec.ch/TC57/ns/CIM/CoreEquipment-EU/3.0" ; + md:Model.profile "http://iec.ch/TC57/ns/CIM/ShortCircuit-EU/3.0" ; + md:Model.scenarioTime "2021-03-25T15:30:00Z" ; + md:Model.version "001" . + + + + { # reverseDifferences + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.68125" . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "-0.01345523" . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.680805" . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "0.05392985" . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "-0.02265452" . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "-0.0614186" . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "-0.07163366" . + + cim:TransformerEnd.Terminal . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "0.03398448" . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "0.02987964" . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.682805" . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.681583" . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.683249" . + + cim:ConformLoad.LoadGroup . + + cim:OperationalLimitSet.Terminal . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "0.01305754" . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "-0.06649923" . + + cim:ControlArea.EnergyArea . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.680916" . + + cim:Terminal.ConnectivityNode . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.681805" . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "0.04207603" . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.682583" . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.682472" . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "0.01732449" . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.682916" . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.68225" . + + cim:TransformerEnd.Terminal . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.682361" . + + cim:RatioTapChanger.RatioTapChangerTable . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.682916" . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.681694" . + + cim:TransformerEnd.Terminal . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.682027" . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "-0.03681348" . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.681361" . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.681583" . + + cim:Terminal.ConnectivityNode . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "0.008747523" . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "0.004395567" . + + cim:RegulatingControl.Terminal . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.681472" . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.683138" . + + cim:Terminal.ConnectivityNode . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.68125" . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "-0.04650027" . + + cim:ConformLoad.LoadGroup . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "-0.05639308" . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "-0.004439676" . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "0.05001429" . + + cim:Terminal.ConnectivityNode . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "0.05780642" . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "-0.01803153" . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.683361" . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "0.04606397" . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "0.02154983" . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "0.02573574" . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "-0.008924291" . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "2000" ; + cim:IdentifiedObject.mRID "03287f0c-5562-4533-be7f-2fb40e1888f5" ; + cim:IdentifiedObject.name "PATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "500" ; + cim:IdentifiedObject.mRID "08ad0781-b65c-4f2e-b5ba-00d58bcf2e58" ; + cim:IdentifiedObject.name "TATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:ConformLoadGroup ; + cim:IdentifiedObject.mRID "113fa6bb-c406-44a1-b9b7-67c43efe8372" ; + cim:IdentifiedObject.name "TENNET TSO B.V.confLoadGr" ; + cim:LoadGroup.SubLoadArea . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "46188.04" ; + cim:IdentifiedObject.mRID "12f7803a-c65b-4a14-8c0d-7e52becb5772" ; + cim:IdentifiedObject.name "PATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:TieFlow ; + cim:IdentifiedObject.mRID "14f1c9bd-93d8-4238-9e26-aacc53fe8855" ; + cim:IdentifiedObject.name "TieFlow" ; + cim:TieFlow.ControlArea ; + cim:TieFlow.Terminal ; + cim:TieFlow.positiveFlowIn "true" . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "1233.9" ; + cim:IdentifiedObject.mRID "1b65a297-4735-499f-8fe8-f08ea01b291f" ; + cim:IdentifiedObject.name "PATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:RatioTapChangerTable ; + cim:IdentifiedObject.mRID "24533a0f-3c24-4253-863a-5b1449e5b2de" ; + cim:IdentifiedObject.name "NL_TR2_3" . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "1233.9" ; + cim:IdentifiedObject.mRID "26069582-0f76-47fb-8bc0-44c99fb08887" ; + cim:IdentifiedObject.name "PATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "46188.04" ; + cim:IdentifiedObject.mRID "26ce5ed9-6557-473e-a710-b7720c2c8355" ; + cim:IdentifiedObject.name "PATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "500" ; + cim:IdentifiedObject.mRID "2783b836-4271-4252-96a7-588c3a1b1826" ; + cim:IdentifiedObject.name "TATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "1371" ; + cim:IdentifiedObject.mRID "2b05a185-07f6-4e72-a2c3-d28425c7aefc" ; + cim:IdentifiedObject.name "PATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "3306.644" ; + cim:IdentifiedObject.mRID "2ca6c9d7-1310-4487-a177-0c3f7b461194" ; + cim:IdentifiedObject.name "PATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "1574" ; + cim:IdentifiedObject.mRID "2f424b90-a264-4592-8854-9838596c9f78" ; + cim:IdentifiedObject.name "PATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:Terminal ; + cim:ACDCTerminal.sequenceNumber "2" ; + cim:IdentifiedObject.mRID "31bf04d0-7e34-465b-95a4-0604700325cf" ; + cim:IdentifiedObject.name "Terminal" ; + cim:Terminal.ConductingEquipment ; + cim:Terminal.ConnectivityNode ; + cim:Terminal.phases cim:PhaseCode.ABC . + + a cim:Terminal ; + cim:ACDCTerminal.sequenceNumber "1" ; + cim:IdentifiedObject.mRID "421c7930-64c3-435d-afb8-2bb73b333e34" ; + cim:IdentifiedObject.name "Terminal" ; + cim:Terminal.ConductingEquipment ; + cim:Terminal.ConnectivityNode ; + cim:Terminal.phases cim:PhaseCode.ABC . + + a cim:TieFlow ; + cim:IdentifiedObject.mRID "4669c2b7-89d0-46d1-9bbb-37e989d581cd" ; + cim:IdentifiedObject.name "TieFlow" ; + cim:TieFlow.ControlArea ; + cim:TieFlow.Terminal ; + cim:TieFlow.positiveFlowIn "true" . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "1876" ; + cim:IdentifiedObject.mRID "47545df1-566d-4a8d-86e8-882655c6e79e" ; + cim:IdentifiedObject.name "PATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:TieFlow ; + cim:IdentifiedObject.mRID "4ed170fe-2571-4044-9bfa-7345e70a69d2" ; + cim:IdentifiedObject.name "TieFlow" ; + cim:TieFlow.ControlArea ; + cim:TieFlow.Terminal ; + cim:TieFlow.positiveFlowIn "true" . + + a cim:PhaseTapChangerTable ; + cim:IdentifiedObject.mRID "50c903e2-ecbb-41b8-9a1d-746543c9b63f" ; + cim:IdentifiedObject.name "NL_TR2_2" . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "1876" ; + cim:IdentifiedObject.mRID "56105225-1754-40da-b6df-43fd7cfeb50a" ; + cim:IdentifiedObject.name "PATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "500" ; + cim:IdentifiedObject.mRID "5bc43480-4543-4193-8b0e-7ba7bf5b3441" ; + cim:IdentifiedObject.name "TATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "3306.644" ; + cim:IdentifiedObject.mRID "6745e040-9fd4-4cc5-8bfd-902d0aed4ee6" ; + cim:IdentifiedObject.name "PATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "500" ; + cim:IdentifiedObject.mRID "6fd8188f-65a6-4473-b8f1-ffe6122ba6ab" ; + cim:IdentifiedObject.name "TATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:Terminal ; + cim:ACDCTerminal.sequenceNumber "2" ; + cim:IdentifiedObject.mRID "70b326a3-5913-494f-b8f8-8e366253b597" ; + cim:IdentifiedObject.name "Terminal" ; + cim:Terminal.ConductingEquipment ; + cim:Terminal.ConnectivityNode ; + cim:Terminal.phases cim:PhaseCode.ABC . + + a cim:LoadArea ; + cim:IdentifiedObject.mRID "70c4656c-f7a0-4319-98bb-84fb5e2e9b37" ; + cim:IdentifiedObject.name "NL LoadArea" . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "1371" ; + cim:IdentifiedObject.mRID "7cfff021-02d4-4aa1-8fe7-b9af9c1fdc44" ; + cim:IdentifiedObject.name "PATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "500" ; + cim:IdentifiedObject.mRID "84c93dae-4254-4b24-b0ee-3fc4bdf1ea02" ; + cim:IdentifiedObject.name "TATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "500" ; + cim:IdentifiedObject.mRID "86764bf6-6472-4ebe-9d6b-bcceffe66dad" ; + cim:IdentifiedObject.name "TATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "500" ; + cim:IdentifiedObject.mRID "89ef40fb-5d77-45cb-8073-cc2d1d171dcd" ; + cim:IdentifiedObject.name "TATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "500" ; + cim:IdentifiedObject.mRID "8eb25188-24dd-4f6e-97d9-b7b03c49454e" ; + cim:IdentifiedObject.name "TATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:TieFlow ; + cim:IdentifiedObject.mRID "945d6e95-1b83-47c5-a0e9-277d434c2d12" ; + cim:IdentifiedObject.name "TieFlow" ; + cim:TieFlow.ControlArea ; + cim:TieFlow.Terminal ; + cim:TieFlow.positiveFlowIn "true" . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "1574" ; + cim:IdentifiedObject.mRID "b35893b0-22d4-4127-9351-9c46fba6059b" ; + cim:IdentifiedObject.name "PATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "500" ; + cim:IdentifiedObject.mRID "b780341b-7b90-498f-ab63-9deb16eff206" ; + cim:IdentifiedObject.name "TATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:OperationalLimitType ; + cim:IdentifiedObject.mRID "bf2a4896-2e92-465b-b5f9-b033993a31c8" ; + cim:IdentifiedObject.name "Limit Type TATL" ; + cim:OperationalLimitType.acceptableDuration "600" ; + cim:OperationalLimitType.direction cim:OperationalLimitDirectionKind.absoluteValue ; + cim:OperationalLimitType.isInfiniteDuration "false" ; + eu:IdentifiedObject.shortName "TATL" ; + eu:OperationalLimitType.kind eu:LimitKind.tatl . + + a cim:SubLoadArea ; + cim:IdentifiedObject.mRID "c4e8eb3a-76b0-4192-91fe-c2f0a60af0df" ; + cim:IdentifiedObject.name "TENNET TSO B.V. SubLoadArea" ; + cim:SubLoadArea.LoadArea . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "2000" ; + cim:IdentifiedObject.mRID "c743cfb3-8279-4721-9eee-12020dd89f64" ; + cim:IdentifiedObject.name "PATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:Terminal ; + cim:ACDCTerminal.sequenceNumber "1" ; + cim:IdentifiedObject.mRID "c9b27b4e-d492-4c3c-b147-67addbb9d3ea" ; + cim:IdentifiedObject.name "Terminal" ; + cim:Terminal.ConductingEquipment ; + cim:Terminal.ConnectivityNode ; + cim:Terminal.phases cim:PhaseCode.ABC . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "500" ; + cim:IdentifiedObject.mRID "d7422ce6-a13d-41ca-8111-9462b2e789dc" ; + cim:IdentifiedObject.name "TATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "461.8804" ; + cim:IdentifiedObject.mRID "e37ee101-2f68-4d55-b24f-c24c5faba8b5" ; + cim:IdentifiedObject.name "PATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "839.7826" ; + cim:IdentifiedObject.mRID "ef715edd-516e-4bfd-adc4-1c882852920e" ; + cim:IdentifiedObject.name "PATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:TieFlow ; + cim:IdentifiedObject.mRID "f9ffc8ea-37f2-404a-9bd3-f3fa15476d4c" ; + cim:IdentifiedObject.name "TieFlow" ; + cim:TieFlow.ControlArea ; + cim:TieFlow.Terminal ; + cim:TieFlow.positiveFlowIn "true" . + + cim:ConformLoad.LoadGroup . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "0.0654528" . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.681027" . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.681916" . + + cim:Terminal.ConnectivityNode . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "-0.07682406" . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "-0.03204435" . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.681139" . + + cim:OperationalLimitSet.Terminal . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "0.06164702" . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "-0.04163161" . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.681139" . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "0.06922422" . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "0.03804918" . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.682138" . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.682694" . + + cim:OperationalLimitSet.Terminal . + + cim:PhaseTapChangerTabular.PhaseTapChangerTable . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.683138" . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "-0.02732521" . + + cim:TransformerEnd.Terminal . + + cim:Terminal.ConnectivityNode . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.682361" . + + cim:OperationalLimitSet.Terminal . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "-0.05142054" . +} + + { # forwardDifferences + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.650056" . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "-0.01462472" . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.641792" . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "0.05861587" . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "-0.02462367" . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "-0.066758" . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "-0.07786135" . + + cim:TransformerEnd.Terminal . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "0.03693753" . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "0.03247588" . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.678981" . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.656254" . + + cim:RegulatingCondEq.RegulatingControl . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.687245" . + + cim:ConformLoad.LoadGroup . + + cim:OperationalLimitSet.Terminal . + + cim:RegulatingCondEq.RegulatingControl . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "0.01419252" . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "-0.07228037" . + + cim:ControlArea.EnergyArea . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.643858" . + + cim:Terminal.ConnectivityNode . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.660387" . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "0.04573255" . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.674849" . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.672783" . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "0.01883037" . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.681047" . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.668651" . + + cim:TransformerEnd.Terminal . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.670717" . + + cim:RatioTapChanger.RatioTapChangerTable . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.681047" . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.65832" . + + cim:TransformerEnd.Terminal . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.664518" . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "-0.0400135" . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.652122" . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.656254" . + + cim:Terminal.ConnectivityNode . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "0.009507872" . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "0.004777636" . + + cim:RegulatingControl.Terminal . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.654188" . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.685179" . + + cim:Terminal.ConnectivityNode . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.650056" . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "-0.05054252" . + + cim:ConformLoad.LoadGroup . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "-0.06129541" . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "-0.004825579" . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "0.05436075" . + + cim:Terminal.ConnectivityNode . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "0.06282941" . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "-0.01959873" . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.689311" . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "0.05006714" . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "0.02342298" . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "0.02797188" . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "-0.009699942" . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "1574" ; + cim:IdentifiedObject.mRID "0474e1ea-11f9-4682-99f3-779139cd68d3" ; + cim:IdentifiedObject.name "PATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "839.7826" ; + cim:IdentifiedObject.mRID "0922f33b-ad8a-4282-b382-c317aa7ce1e9" ; + cim:IdentifiedObject.name "PATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:TieFlow ; + cim:IdentifiedObject.mRID "0960c9a2-9e79-421b-892a-8a9b5016f71c" ; + cim:IdentifiedObject.name "TieFlow" ; + cim:TieFlow.ControlArea ; + cim:TieFlow.Terminal ; + cim:TieFlow.positiveFlowIn "true" . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "46188.04" ; + cim:IdentifiedObject.mRID "0ab669ad-9033-41bd-8460-6036977ff0f4" ; + cim:IdentifiedObject.name "PATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:Breaker ; + cim:Equipment.EquipmentContainer ; + cim:Equipment.aggregate "false" ; + cim:IdentifiedObject.mRID "0c2fa351-239d-463b-a826-0b8615bf6c3c" ; + cim:IdentifiedObject.name "NL_BREAKER_4" ; + cim:Switch.normalOpen "false" ; + cim:Switch.retained "false" . + + a cim:Terminal ; + cim:ACDCTerminal.sequenceNumber "1" ; + cim:IdentifiedObject.mRID "1128e664-0653-448a-9068-e37f1a097c05" ; + cim:IdentifiedObject.name "Terminal" ; + cim:Terminal.ConductingEquipment ; + cim:Terminal.ConnectivityNode ; + cim:Terminal.phases cim:PhaseCode.ABC . + + a cim:BusbarSection ; + cim:Equipment.EquipmentContainer ; + cim:IdentifiedObject.mRID "12733133-1f34-44f3-a020-f5b33cede919" ; + cim:IdentifiedObject.name "N1230822396" . + + a cim:Terminal ; + cim:ACDCTerminal.sequenceNumber "1" ; + cim:IdentifiedObject.mRID "14f212ae-bcd8-46ae-9366-11dec9602a01" ; + cim:IdentifiedObject.name "Terminal" ; + cim:Terminal.ConductingEquipment ; + cim:Terminal.ConnectivityNode ; + cim:Terminal.phases cim:PhaseCode.ABC . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "46188.04" ; + cim:IdentifiedObject.mRID "1501e1ba-0156-40bb-901b-9b8d2b3ed8d3" ; + cim:IdentifiedObject.name "PATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:ConnectivityNode ; + cim:ConnectivityNode.ConnectivityNodeContainer ; + cim:IdentifiedObject.mRID "1520ab3c-9392-41c2-8873-39ec83a76c26" ; + cim:IdentifiedObject.name "N1230822396" . + + a cim:ConnectivityNode ; + cim:ConnectivityNode.ConnectivityNodeContainer ; + cim:IdentifiedObject.mRID "17eb9e2c-dd0d-4005-ac1c-c7174e3a88e1" ; + cim:IdentifiedObject.name "N1230992201" ; + eu:IdentifiedObject.shortName "NL-_B_1" . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "461.8804" ; + cim:IdentifiedObject.mRID "19efa9e2-2070-4e71-ad64-3934bfb5a82e" ; + cim:IdentifiedObject.name "PATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:RegulatingControl ; + cim:IdentifiedObject.mRID "1b3c88f9-c2ca-4250-bd37-ae0efa2fb022" ; + cim:IdentifiedObject.name "NL-G2" ; + cim:RegulatingControl.Terminal ; + cim:RegulatingControl.mode cim:RegulatingControlModeKind.voltage . + + a cim:Breaker ; + cim:Equipment.EquipmentContainer ; + cim:Equipment.aggregate "false" ; + cim:IdentifiedObject.mRID "1ea8f512-451c-40d3-a312-7c4e71d9dbcb" ; + cim:IdentifiedObject.name "NL_BREAKER_1" ; + cim:Switch.normalOpen "false" ; + cim:Switch.retained "false" . + + a cim:Breaker ; + cim:Equipment.EquipmentContainer ; + cim:Equipment.aggregate "false" ; + cim:IdentifiedObject.mRID "21ec578c-689f-4130-80de-fd0fb5a30ed8" ; + cim:IdentifiedObject.name "CIRCB-1230992249" ; + cim:Switch.normalOpen "false" ; + cim:Switch.retained "false" . + + a cim:Terminal ; + cim:ACDCTerminal.sequenceNumber "2" ; + cim:IdentifiedObject.mRID "28797d21-df04-4be6-806b-3be26b040d6a" ; + cim:IdentifiedObject.name "Terminal" ; + cim:Terminal.ConductingEquipment ; + cim:Terminal.ConnectivityNode ; + cim:Terminal.phases cim:PhaseCode.ABC . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "2000" ; + cim:IdentifiedObject.mRID "289ae9f0-42e1-410d-9940-db3d79de5c18" ; + cim:IdentifiedObject.name "PATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "500" ; + cim:IdentifiedObject.mRID "2c29dbdf-10c4-436e-bfe5-f9cce4615886" ; + cim:IdentifiedObject.name "TATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "500" ; + cim:IdentifiedObject.mRID "2e3416d2-6a88-4ce6-b5c0-ce5a63a49a46" ; + cim:IdentifiedObject.name "TATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:Terminal ; + cim:ACDCTerminal.sequenceNumber "1" ; + cim:IdentifiedObject.mRID "30aa2972-aafb-4c38-912d-a14867d47cec" ; + cim:IdentifiedObject.name "Terminal" ; + cim:Terminal.ConductingEquipment ; + cim:Terminal.ConnectivityNode ; + cim:Terminal.phases cim:PhaseCode.ABC . + + a cim:TieFlow ; + cim:IdentifiedObject.mRID "30ef0adf-d1f4-4236-b582-351f95c2af3e" ; + cim:IdentifiedObject.name "TieFlow" ; + cim:TieFlow.ControlArea ; + cim:TieFlow.Terminal ; + cim:TieFlow.positiveFlowIn "true" . + + a cim:Terminal ; + cim:ACDCTerminal.sequenceNumber "2" ; + cim:IdentifiedObject.mRID "3179d96c-7ecd-4f8a-b3f0-f24b62a16e87" ; + cim:IdentifiedObject.name "Terminal" ; + cim:Terminal.ConductingEquipment ; + cim:Terminal.ConnectivityNode ; + cim:Terminal.phases cim:PhaseCode.ABC . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "500" ; + cim:IdentifiedObject.mRID "33abb4cc-fc91-4980-b157-fb9dba880f79" ; + cim:IdentifiedObject.name "TATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "500" ; + cim:IdentifiedObject.mRID "34a5286c-cf17-42f5-8de7-55e1a903d3ad" ; + cim:IdentifiedObject.name "TATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "3306.644" ; + cim:IdentifiedObject.mRID "3a159e62-6947-4902-b611-89a2764b8baa" ; + cim:IdentifiedObject.name "PATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:Terminal ; + cim:ACDCTerminal.sequenceNumber "2" ; + cim:IdentifiedObject.mRID "3c377e5e-65cc-45f1-ba12-e20034df7cb3" ; + cim:IdentifiedObject.name "Terminal" ; + cim:Terminal.ConductingEquipment ; + cim:Terminal.ConnectivityNode ; + cim:Terminal.phases cim:PhaseCode.ABC . + + a cim:Breaker ; + cim:Equipment.EquipmentContainer ; + cim:Equipment.aggregate "false" ; + cim:IdentifiedObject.mRID "3da8f227-5c16-47e1-a17f-4cd92269d301" ; + cim:IdentifiedObject.name "NL_BREAKER_1" ; + cim:Switch.normalOpen "false" ; + cim:Switch.retained "false" . + + a cim:Terminal ; + cim:ACDCTerminal.sequenceNumber "1" ; + cim:IdentifiedObject.mRID "41b735f7-da62-4bd3-ac98-fbdec24baeac" ; + cim:IdentifiedObject.name "Terminal" ; + cim:Terminal.ConductingEquipment ; + cim:Terminal.ConnectivityNode ; + cim:Terminal.phases cim:PhaseCode.ABC . + + a cim:PhaseTapChangerTable ; + cim:IdentifiedObject.mRID "4233da0a-4b2c-4283-a6ee-20e1f9f7e09e" ; + cim:IdentifiedObject.name "NL_TR2_2" . + + a cim:Terminal ; + cim:ACDCTerminal.sequenceNumber "1" ; + cim:IdentifiedObject.mRID "42800bad-5e47-42e6-b9b0-1fb8fc5831aa" ; + cim:IdentifiedObject.name "NL-Busbar_5_Busbar_Section" ; + cim:Terminal.ConductingEquipment ; + cim:Terminal.ConnectivityNode . + + a cim:TieFlow ; + cim:IdentifiedObject.mRID "4661299f-bb32-4f3d-af0b-6ed5393578c6" ; + cim:IdentifiedObject.name "TieFlow" ; + cim:TieFlow.ControlArea ; + cim:TieFlow.Terminal ; + cim:TieFlow.positiveFlowIn "true" . + + a cim:LoadArea ; + cim:IdentifiedObject.mRID "46b92fd3-2077-41cc-a7ed-187bb71b1e16" ; + cim:IdentifiedObject.name "NL LoadArea" . + + a cim:Breaker ; + cim:Equipment.EquipmentContainer ; + cim:Equipment.aggregate "false" ; + cim:IdentifiedObject.mRID "4853e915-48e5-4527-a4db-cce11ab18f73" ; + cim:IdentifiedObject.name "NL_BREAKER_3" ; + cim:Switch.normalOpen "false" ; + cim:Switch.retained "false" . + + a cim:SubLoadArea ; + cim:IdentifiedObject.mRID "4be7c895-f88e-40cd-a17c-a8a2677106b1" ; + cim:IdentifiedObject.name "TENNET TSO B.V. SubLoadArea" ; + cim:SubLoadArea.LoadArea . + + a cim:Terminal ; + cim:ACDCTerminal.sequenceNumber "2" ; + cim:IdentifiedObject.mRID "4f1c405f-07c9-4fb0-b64e-551896a29aa8" ; + cim:IdentifiedObject.name "Terminal" ; + cim:Terminal.ConductingEquipment ; + cim:Terminal.ConnectivityNode ; + cim:Terminal.phases cim:PhaseCode.ABC . + + a cim:RegulatingControl ; + cim:IdentifiedObject.mRID "53e7a6c7-759b-4da2-898a-1c061d788670" ; + cim:IdentifiedObject.name "NL-G3" ; + cim:RegulatingControl.Terminal ; + cim:RegulatingControl.mode cim:RegulatingControlModeKind.voltage . + + a cim:ConnectivityNode ; + cim:ConnectivityNode.ConnectivityNodeContainer ; + cim:IdentifiedObject.mRID "546121e7-acf3-4bc2-ae49-446e550a1e5c" ; + cim:IdentifiedObject.name "N1230992228" ; + eu:IdentifiedObject.shortName "NL-_B_1" . + + a cim:Breaker ; + cim:Equipment.EquipmentContainer ; + cim:Equipment.aggregate "false" ; + cim:IdentifiedObject.mRID "5a094c9f-0af5-48dc-94e9-89c6c220023c" ; + cim:IdentifiedObject.name "busbarcoupler 1" ; + cim:Switch.normalOpen "false" ; + cim:Switch.retained "false" ; + eu:IdentifiedObject.shortName "coupler 1" . + + a cim:ConnectivityNode ; + cim:ConnectivityNode.ConnectivityNodeContainer ; + cim:IdentifiedObject.mRID "5cb2cb9a-695c-458b-b63a-a84c025981e4" ; + cim:IdentifiedObject.name "N1230992198" ; + eu:IdentifiedObject.shortName "NL-_B_1" . + + a cim:Terminal ; + cim:ACDCTerminal.sequenceNumber "2" ; + cim:IdentifiedObject.mRID "5f40c3f7-9540-4e1b-aa97-6553d5524877" ; + cim:IdentifiedObject.name "Terminal" ; + cim:Terminal.ConductingEquipment ; + cim:Terminal.ConnectivityNode ; + cim:Terminal.phases cim:PhaseCode.ABC . + + a cim:Breaker ; + cim:Equipment.EquipmentContainer ; + cim:Equipment.aggregate "false" ; + cim:IdentifiedObject.mRID "5f5d40ae-d52d-4631-9285-b3ceefff784c" ; + cim:IdentifiedObject.name "B1" ; + cim:Switch.normalOpen "false" ; + cim:Switch.retained "true" ; + eu:IdentifiedObject.shortName "B1" . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "1233.9" ; + cim:IdentifiedObject.mRID "6486e856-85fd-46cc-92a5-65f17bb45b96" ; + cim:IdentifiedObject.name "PATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:ConformLoadGroup ; + cim:IdentifiedObject.mRID "6cc3bed4-aee6-44b8-8bea-804fd43af7b1" ; + cim:IdentifiedObject.name "TENNET TSO B.V.confLoadGr" ; + cim:LoadGroup.SubLoadArea . + + a cim:ConnectivityNode ; + cim:ConnectivityNode.ConnectivityNodeContainer ; + cim:IdentifiedObject.mRID "7221e0f9-008b-4273-8d40-b5d4c6efa0fe" ; + cim:IdentifiedObject.name "N1230992195" ; + eu:IdentifiedObject.shortName "NL-_B_1" . + + a cim:Terminal ; + cim:ACDCTerminal.sequenceNumber "1" ; + cim:IdentifiedObject.mRID "74039a16-da9d-46dd-a4f1-dd65fbb09ec4" ; + cim:IdentifiedObject.name "Terminal" ; + cim:Terminal.ConductingEquipment ; + cim:Terminal.ConnectivityNode ; + cim:Terminal.phases cim:PhaseCode.ABC . + + a cim:Terminal ; + cim:ACDCTerminal.sequenceNumber "1" ; + cim:IdentifiedObject.mRID "790df530-60c7-40bc-be5f-f90e9c65bab4" ; + cim:IdentifiedObject.name "Terminal" ; + cim:Terminal.ConductingEquipment ; + cim:Terminal.ConnectivityNode ; + cim:Terminal.phases cim:PhaseCode.ABC . + + a cim:Terminal ; + cim:ACDCTerminal.sequenceNumber "2" ; + cim:IdentifiedObject.mRID "7a7fd92b-1aaf-49de-b609-1d640e63d49f" ; + cim:IdentifiedObject.name "Terminal" ; + cim:Terminal.ConductingEquipment ; + cim:Terminal.ConnectivityNode ; + cim:Terminal.phases cim:PhaseCode.ABC . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "500" ; + cim:IdentifiedObject.mRID "7ad13830-5d4d-4138-a756-5b82949e4fdd" ; + cim:IdentifiedObject.name "TATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "1371" ; + cim:IdentifiedObject.mRID "7e7415f1-54ec-43ca-aeb0-e67adc56ad7d" ; + cim:IdentifiedObject.name "PATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:ConnectivityNode ; + cim:ConnectivityNode.ConnectivityNodeContainer ; + cim:IdentifiedObject.mRID "7e9dd682-86cd-4594-b58f-1a0534540aca" ; + cim:IdentifiedObject.name "NL_TR_BUS1" . + + a cim:Terminal ; + cim:ACDCTerminal.sequenceNumber "1" ; + cim:IdentifiedObject.mRID "7fae7c9d-952f-4321-830d-aa667d21969d" ; + cim:IdentifiedObject.name "Terminal" ; + cim:Terminal.ConductingEquipment ; + cim:Terminal.ConnectivityNode ; + cim:Terminal.phases cim:PhaseCode.ABC . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "1876" ; + cim:IdentifiedObject.mRID "7ffd7be3-8fe0-4104-baa1-f16d0e2adea8" ; + cim:IdentifiedObject.name "PATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:Terminal ; + cim:ACDCTerminal.sequenceNumber "1" ; + cim:IdentifiedObject.mRID "8121d4c3-9cb2-47db-b40a-99678602bb2a" ; + cim:IdentifiedObject.name "Terminal" ; + cim:Terminal.ConductingEquipment ; + cim:Terminal.ConnectivityNode ; + cim:Terminal.phases cim:PhaseCode.ABC . + + a cim:TieFlow ; + cim:IdentifiedObject.mRID "81c5d98b-c998-45aa-bd72-779d74133e35" ; + cim:IdentifiedObject.name "TieFlow" ; + cim:TieFlow.ControlArea ; + cim:TieFlow.Terminal ; + cim:TieFlow.positiveFlowIn "true" . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "500" ; + cim:IdentifiedObject.mRID "81d8d53d-771d-4ed8-8386-d7d89602959a" ; + cim:IdentifiedObject.name "TATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:Terminal ; + cim:ACDCTerminal.sequenceNumber "2" ; + cim:IdentifiedObject.mRID "85ceec9c-21a9-4ef2-b7b0-c2bb9552e799" ; + cim:IdentifiedObject.name "Terminal" ; + cim:Terminal.ConductingEquipment ; + cim:Terminal.ConnectivityNode ; + cim:Terminal.phases cim:PhaseCode.ABC . + + a cim:RatioTapChangerTable ; + cim:IdentifiedObject.mRID "868ba067-8413-45d5-9d06-d75bc913800e" ; + cim:IdentifiedObject.name "NL_TR2_3" . + + a cim:Breaker ; + cim:Equipment.EquipmentContainer ; + cim:Equipment.aggregate "false" ; + cim:IdentifiedObject.mRID "88a19e5c-6885-4e6e-8d30-c5442444b309" ; + cim:IdentifiedObject.name "CIRCB-1230992240" ; + cim:Switch.normalOpen "false" ; + cim:Switch.retained "false" . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "500" ; + cim:IdentifiedObject.mRID "8a39c964-17dd-409d-b293-c92f2d6c07ed" ; + cim:IdentifiedObject.name "TATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "1574" ; + cim:IdentifiedObject.mRID "9f914cec-e319-48be-99bf-a9699adc064b" ; + cim:IdentifiedObject.name "PATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:Terminal ; + cim:ACDCTerminal.sequenceNumber "1" ; + cim:IdentifiedObject.mRID "9f984b04-1736-43d2-9122-3a17fc8aea5f" ; + cim:IdentifiedObject.name "Terminal" ; + cim:Terminal.ConductingEquipment ; + cim:Terminal.ConnectivityNode ; + cim:Terminal.phases cim:PhaseCode.ABC . + + a cim:Terminal ; + cim:ACDCTerminal.sequenceNumber "1" ; + cim:IdentifiedObject.mRID "9fc1ca1a-bb62-4982-9358-fa9b4ac5564d" ; + cim:IdentifiedObject.name "Terminal" ; + cim:Terminal.ConductingEquipment ; + cim:Terminal.ConnectivityNode ; + cim:Terminal.phases cim:PhaseCode.ABC . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "500" ; + cim:IdentifiedObject.mRID "a71f3e4e-c860-4ec0-82ab-2c9301b1aee8" ; + cim:IdentifiedObject.name "TATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:Terminal ; + cim:ACDCTerminal.sequenceNumber "2" ; + cim:IdentifiedObject.mRID "abc40269-5f9a-4b13-a5a5-8e3b3929eff5" ; + cim:IdentifiedObject.name "Terminal" ; + cim:Terminal.ConductingEquipment ; + cim:Terminal.ConnectivityNode ; + cim:Terminal.phases cim:PhaseCode.ABC . + + a cim:Breaker ; + cim:Equipment.EquipmentContainer ; + cim:Equipment.aggregate "false" ; + cim:IdentifiedObject.mRID "b1fc12ae-ba9f-42ee-9558-3d432cc58fbf" ; + cim:IdentifiedObject.name "CIRCB-1230992183" ; + cim:Switch.normalOpen "false" ; + cim:Switch.retained "false" . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "500" ; + cim:IdentifiedObject.mRID "b4df3d17-d8e6-4b95-b7c4-13babc37a325" ; + cim:IdentifiedObject.name "TATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:Breaker ; + cim:Equipment.EquipmentContainer ; + cim:Equipment.aggregate "false" ; + cim:IdentifiedObject.mRID "b5a26150-429d-4acb-b45b-055e42c79055" ; + cim:IdentifiedObject.name "CIRCB-1230992174" ; + cim:Switch.normalOpen "false" ; + cim:Switch.retained "false" . + + a cim:Breaker ; + cim:Equipment.EquipmentContainer ; + cim:Equipment.aggregate "false" ; + cim:IdentifiedObject.mRID "bac0aa59-1318-4032-b192-15a8d49283ee" ; + cim:IdentifiedObject.name "CIRCB-1230992192" ; + cim:Switch.normalOpen "false" ; + cim:Switch.retained "false" . + + a cim:Terminal ; + cim:ACDCTerminal.sequenceNumber "1" ; + cim:IdentifiedObject.mRID "bd61b1f9-474d-424e-9709-42f75337c477" ; + cim:IdentifiedObject.name "Terminal" ; + cim:Terminal.ConductingEquipment ; + cim:Terminal.ConnectivityNode ; + cim:Terminal.phases cim:PhaseCode.ABC . + + a cim:ConnectivityNode ; + cim:ConnectivityNode.ConnectivityNodeContainer ; + cim:IdentifiedObject.mRID "bd68fe72-ecac-45cc-9d34-33d95ed9a47a" ; + cim:IdentifiedObject.name "NL-Busbar_5" ; + eu:IdentifiedObject.shortName "NL-B_5" . + + a cim:ConnectivityNode ; + cim:ConnectivityNode.ConnectivityNodeContainer ; + cim:IdentifiedObject.mRID "c79edc43-4a5e-4ba8-bd08-16fcdd1beee7" ; + cim:IdentifiedObject.name "NL_TR_BUS2" . + + a cim:Terminal ; + cim:ACDCTerminal.sequenceNumber "1" ; + cim:IdentifiedObject.mRID "c9dbf281-e788-4084-b268-3b5a9473ad72" ; + cim:IdentifiedObject.name "Terminal" ; + cim:Terminal.ConductingEquipment ; + cim:Terminal.ConnectivityNode ; + cim:Terminal.phases cim:PhaseCode.ABC . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "1876" ; + cim:IdentifiedObject.mRID "d67dba58-3642-47eb-a78f-1d5a52204d8e" ; + cim:IdentifiedObject.name "PATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:Terminal ; + cim:ACDCTerminal.sequenceNumber "2" ; + cim:IdentifiedObject.mRID "da232169-1c36-495a-8af6-a0d7d2b39f52" ; + cim:IdentifiedObject.name "Terminal" ; + cim:Terminal.ConductingEquipment ; + cim:Terminal.ConnectivityNode ; + cim:Terminal.phases cim:PhaseCode.ABC . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "3306.644" ; + cim:IdentifiedObject.mRID "e0d5941f-212f-431d-a368-db5fdd4b96be" ; + cim:IdentifiedObject.name "PATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:Terminal ; + cim:ACDCTerminal.sequenceNumber "2" ; + cim:IdentifiedObject.mRID "e12338f8-6e9e-4d06-a29a-e12bdd7bd4d7" ; + cim:IdentifiedObject.name "Terminal" ; + cim:Terminal.ConductingEquipment ; + cim:Terminal.ConnectivityNode ; + cim:Terminal.phases cim:PhaseCode.ABC . + + a cim:Terminal ; + cim:ACDCTerminal.sequenceNumber "1" ; + cim:IdentifiedObject.mRID "e19e01f7-eb9b-4ce5-a6fe-4bb4ef0ce6c3" ; + cim:IdentifiedObject.name "Terminal" ; + cim:Terminal.ConductingEquipment ; + cim:Terminal.ConnectivityNode ; + cim:Terminal.phases cim:PhaseCode.ABC . + + a cim:ConnectivityNode ; + cim:ConnectivityNode.ConnectivityNodeContainer ; + cim:IdentifiedObject.mRID "e4743b84-976a-414d-a888-4362532c39e6" ; + cim:IdentifiedObject.name "NL_Busbar_4" ; + eu:IdentifiedObject.shortName "NL_B_4" . + + a cim:BusbarSection ; + cim:Equipment.EquipmentContainer ; + cim:IdentifiedObject.mRID "e6d49e32-b634-4b86-a8ca-15159f1497b5" ; + cim:IdentifiedObject.name "NL-Busbar_5" . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "1371" ; + cim:IdentifiedObject.mRID "e84db454-c2dc-4e28-8091-b4e432deb346" ; + cim:IdentifiedObject.name "PATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:ConnectivityNode ; + cim:ConnectivityNode.ConnectivityNodeContainer ; + cim:IdentifiedObject.mRID "ecb6a97e-bd2d-40c0-91f6-99dc1e7f59e2" ; + cim:IdentifiedObject.name "N1230822413" . + + a cim:Terminal ; + cim:ACDCTerminal.sequenceNumber "1" ; + cim:IdentifiedObject.mRID "ecea10ff-e006-436b-a86a-beac4c2a30c1" ; + cim:IdentifiedObject.name "N1230822396_Busbar_Section" ; + cim:Terminal.ConductingEquipment ; + cim:Terminal.ConnectivityNode . + + a cim:OperationalLimitType ; + cim:IdentifiedObject.mRID "ed8650ba-7ef4-4365-8a2e-f0acbf787c9d" ; + cim:IdentifiedObject.name "Limit Type TATL" ; + cim:OperationalLimitType.acceptableDuration "600" ; + cim:OperationalLimitType.direction cim:OperationalLimitDirectionKind.absoluteValue ; + cim:OperationalLimitType.isInfiniteDuration "false" ; + eu:IdentifiedObject.shortName "TATL" ; + eu:OperationalLimitType.kind eu:LimitKind.tatl . + + a cim:Terminal ; + cim:ACDCTerminal.sequenceNumber "2" ; + cim:IdentifiedObject.mRID "eedefa27-de13-4e6f-91a3-42aa86b539d6" ; + cim:IdentifiedObject.name "Terminal" ; + cim:Terminal.ConductingEquipment ; + cim:Terminal.ConnectivityNode ; + cim:Terminal.phases cim:PhaseCode.ABC . + + a cim:TieFlow ; + cim:IdentifiedObject.mRID "efb67db9-a1ce-40f2-a515-8c84ec5999ba" ; + cim:IdentifiedObject.name "TieFlow" ; + cim:TieFlow.ControlArea ; + cim:TieFlow.Terminal ; + cim:TieFlow.positiveFlowIn "true" . + + a cim:Terminal ; + cim:ACDCTerminal.sequenceNumber "2" ; + cim:IdentifiedObject.mRID "f04ec73d-b94a-4b7e-a3d6-b1234fc37385" ; + cim:IdentifiedObject.name "Terminal" ; + cim:Terminal.ConductingEquipment ; + cim:Terminal.ConnectivityNode ; + cim:Terminal.phases cim:PhaseCode.ABC . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "1233.9" ; + cim:IdentifiedObject.mRID "f12f68ff-52a0-46c6-993d-c9b250dcc381" ; + cim:IdentifiedObject.name "PATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "500" ; + cim:IdentifiedObject.mRID "f19f05c1-c526-4e28-b04e-cddc469e242a" ; + cim:IdentifiedObject.name "TATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:ConnectivityNode ; + cim:ConnectivityNode.ConnectivityNodeContainer ; + cim:IdentifiedObject.mRID "f28134fe-076d-4605-aa92-b9e0bbe96841" ; + cim:IdentifiedObject.name "N1230992231" ; + eu:IdentifiedObject.shortName "NL-_B_1" . + + a cim:CurrentLimit ; + cim:CurrentLimit.normalValue "2000" ; + cim:IdentifiedObject.mRID "f8196a40-21e7-4834-b4e4-d5bb01f05139" ; + cim:IdentifiedObject.name "PATL" ; + cim:OperationalLimit.OperationalLimitSet ; + cim:OperationalLimit.OperationalLimitType . + + a cim:Terminal ; + cim:ACDCTerminal.sequenceNumber "2" ; + cim:IdentifiedObject.mRID "f937c4ac-b9fc-44a2-82a0-99cb34c89974" ; + cim:IdentifiedObject.name "Terminal" ; + cim:Terminal.ConductingEquipment ; + cim:Terminal.ConnectivityNode ; + cim:Terminal.phases cim:PhaseCode.ABC . + + cim:ConformLoad.LoadGroup . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "0.07114049" . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.645924" . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.662453" . + + cim:Terminal.ConnectivityNode . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "-0.08350297" . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "-0.03482978" . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.64799" . + + cim:OperationalLimitSet.Terminal . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "0.06700388" . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "-0.04525049" . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.64799" . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "0.07523897" . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "0.04135566" . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.666584" . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.676915" . + + cim:OperationalLimitSet.Terminal . + + cim:PhaseTapChangerTabular.PhaseTapChangerTable . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.685179" . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "-0.02970046" . + + cim:TransformerEnd.Terminal . + + cim:Terminal.ConnectivityNode . + + cim:RatioTapChangerTablePoint.RatioTapChangerTable ; + cim:TapChangerTablePoint.x "5.670717" . + + cim:OperationalLimitSet.Terminal . + + cim:PhaseTapChangerTablePoint.PhaseTapChangerTable ; + cim:PhaseTapChangerTablePoint.angle "-0.05589059" . +} \ No newline at end of file diff --git a/rdf-improved/test/trig/MicroGrid-NL-MAS-GL_diff.trig b/rdf-improved/test/trig/MicroGrid-NL-MAS-GL_diff.trig new file mode 100644 index 0000000..8168ed4 --- /dev/null +++ b/rdf-improved/test/trig/MicroGrid-NL-MAS-GL_diff.trig @@ -0,0 +1,322 @@ + +@prefix rdf: . +@prefix cim: . +@prefix dm: . +@prefix eu: . +@prefix md: . + + a dm:DifferenceModel ; + dm:forwardDifferences ; + dm:reverseDifferences ; + md:Model.DependentOn ; + md:Model.Supersedes ; + md:Model.created "2021-11-19T23:16:27Z" ; + md:Model.description "CGMES Conformity Assessment Test Configuration. The Test Configuration is owned by ENTSO-E and is provided by ENTSO-E “as it is”. To the fullest extent permitted by law, ENTSO-E shall not be liable for any damages of any kind arising out of the use of the model (including any of its subsequent modifications). ENTSO-E neither warrants, nor represents that the use of the model will not infringe the rights of third parties. Any use of the model shall include a reference to ENTSO-E. ENTSO-E web site is the only official source of information related to the model." ; + md:Model.modelingAuthoritySet "http://tennet.nl/CGMES" ; + md:Model.profile "http://iec.ch/TC57/ns/CIM/GeographicalLocation-EU/3.0" ; + md:Model.scenarioTime "2021-03-25T15:30:00Z" ; + md:Model.version "001" . + + + + { # reverseDifferences + a cim:PositionPoint ; + cim:PositionPoint.Location ; + cim:PositionPoint.sequenceNumber "3" ; + cim:PositionPoint.xPosition "5.04709" ; + cim:PositionPoint.yPosition "52.0699" . + + a cim:CoordinateSystem ; + cim:CoordinateSystem.crsUrn "urn:ogc:def:crs:EPSG::4326" ; + cim:IdentifiedObject.mRID "38876874-fcfc-a4d9-9d16-39fb7da2ad74" ; + cim:IdentifiedObject.name "WGS84" . + + a cim:Location ; + cim:IdentifiedObject.mRID "480fa612-9f7c-44fa-8522-39fb7da2ad7b" ; + cim:IdentifiedObject.name "NL-Line_4" ; + cim:Location.CoordinateSystem ; + cim:Location.PowerSystemResources . + + a cim:PositionPoint ; + cim:PositionPoint.Location ; + cim:PositionPoint.sequenceNumber "3" ; + cim:PositionPoint.xPosition "5.04709" ; + cim:PositionPoint.yPosition "52.0699" . + + a cim:Location ; + cim:IdentifiedObject.mRID "5350c085-4b5e-5909-1d55-39fb7da2ad7b" ; + cim:IdentifiedObject.name "NL-Line_2" ; + cim:Location.CoordinateSystem ; + cim:Location.PowerSystemResources . + + a cim:PositionPoint ; + cim:PositionPoint.Location ; + cim:PositionPoint.sequenceNumber "1" ; + cim:PositionPoint.xPosition "4.84744" ; + cim:PositionPoint.yPosition "52.4027" . + + a cim:PositionPoint ; + cim:PositionPoint.Location ; + cim:PositionPoint.sequenceNumber "3" ; + cim:PositionPoint.xPosition "5.04709" ; + cim:PositionPoint.yPosition "52.0699" . + + a cim:PositionPoint ; + cim:PositionPoint.Location ; + cim:PositionPoint.sequenceNumber "1" ; + cim:PositionPoint.xPosition "4.84845" ; + cim:PositionPoint.yPosition "52.4023" . + + a cim:PositionPoint ; + cim:PositionPoint.Location ; + cim:PositionPoint.sequenceNumber "4" ; + cim:PositionPoint.xPosition "5.07058" ; + cim:PositionPoint.yPosition "51.8731" . + + a cim:PositionPoint ; + cim:PositionPoint.Location ; + cim:PositionPoint.sequenceNumber "2" ; + cim:PositionPoint.xPosition "4.79004" ; + cim:PositionPoint.yPosition "52.1571" . + + a cim:PositionPoint ; + cim:PositionPoint.Location ; + cim:PositionPoint.sequenceNumber "4" ; + cim:PositionPoint.xPosition "5.07294" ; + cim:PositionPoint.yPosition "51.8765" . + + a cim:PositionPoint ; + cim:PositionPoint.Location ; + cim:PositionPoint.sequenceNumber "2" ; + cim:PositionPoint.xPosition "4.79004" ; + cim:PositionPoint.yPosition "52.1571" . + + a cim:Location ; + cim:IdentifiedObject.mRID "a719fa3b-aec1-c681-8da9-39fb7da2ad7b" ; + cim:IdentifiedObject.name "NL-Line_3" ; + cim:Location.CoordinateSystem ; + cim:Location.PowerSystemResources . + + a cim:PositionPoint ; + cim:PositionPoint.Location ; + cim:PositionPoint.sequenceNumber "1" ; + cim:PositionPoint.xPosition "4.84744" ; + cim:PositionPoint.yPosition "52.4027" . + + a cim:PositionPoint ; + cim:PositionPoint.Location ; + cim:PositionPoint.sequenceNumber "2" ; + cim:PositionPoint.xPosition "4.98125" ; + cim:PositionPoint.yPosition "52.2483" . + + a cim:PositionPoint ; + cim:PositionPoint.Location ; + cim:PositionPoint.sequenceNumber "1" ; + cim:PositionPoint.xPosition "4.84744" ; + cim:PositionPoint.yPosition "52.4027" . + + a cim:Location ; + cim:IdentifiedObject.mRID "c84ce457-406b-a13c-ad76-39fb7da2ad7a" ; + cim:IdentifiedObject.name "NL-Line_5" ; + cim:Location.CoordinateSystem ; + cim:Location.PowerSystemResources . + + a cim:PositionPoint ; + cim:PositionPoint.Location ; + cim:PositionPoint.sequenceNumber "4" ; + cim:PositionPoint.xPosition "5.07186" ; + cim:PositionPoint.yPosition "51.8756" . + + a cim:PositionPoint ; + cim:PositionPoint.Location ; + cim:PositionPoint.sequenceNumber "4" ; + cim:PositionPoint.xPosition "4.88798" ; + cim:PositionPoint.yPosition "51.9127" . + + a cim:Location ; + cim:IdentifiedObject.mRID "e072869d-f08d-34f3-bf8f-39fb7da2ad7b" ; + cim:IdentifiedObject.name "NL-Line_1" ; + cim:Location.CoordinateSystem ; + cim:Location.PowerSystemResources . + + a cim:PositionPoint ; + cim:PositionPoint.Location ; + cim:PositionPoint.sequenceNumber "2" ; + cim:PositionPoint.xPosition "4.98125" ; + cim:PositionPoint.yPosition "52.2483" . + + a cim:PositionPoint ; + cim:PositionPoint.Location ; + cim:PositionPoint.sequenceNumber "1" ; + cim:PositionPoint.xPosition "4.84845" ; + cim:PositionPoint.yPosition "52.4023" . + + a cim:PositionPoint ; + cim:PositionPoint.Location ; + cim:PositionPoint.sequenceNumber "2" ; + cim:PositionPoint.xPosition "4.98125" ; + cim:PositionPoint.yPosition "52.2483" . + + a cim:PositionPoint ; + cim:PositionPoint.Location ; + cim:PositionPoint.sequenceNumber "3" ; + cim:PositionPoint.xPosition "4.88892" ; + cim:PositionPoint.yPosition "51.9138" . + + a cim:PositionPoint ; + cim:PositionPoint.Location ; + cim:PositionPoint.sequenceNumber "3" ; + cim:PositionPoint.xPosition "4.88892" ; + cim:PositionPoint.yPosition "51.9138" . +} + + { # forwardDifferences + a cim:PositionPoint ; + cim:PositionPoint.Location ; + cim:PositionPoint.sequenceNumber "1" ; + cim:PositionPoint.xPosition "4.84744" ; + cim:PositionPoint.yPosition "52.4027" . + + a cim:PositionPoint ; + cim:PositionPoint.Location ; + cim:PositionPoint.sequenceNumber "4" ; + cim:PositionPoint.xPosition "5.07058" ; + cim:PositionPoint.yPosition "51.8731" . + + a cim:Location ; + cim:IdentifiedObject.mRID "305f740a-b7a5-d999-e21f-39fb72fb08ce" ; + cim:IdentifiedObject.name "NL-Line_2" ; + cim:Location.CoordinateSystem ; + cim:Location.PowerSystemResources . + + a cim:CoordinateSystem ; + cim:CoordinateSystem.crsUrn "urn:ogc:def:crs:EPSG::4326" ; + cim:IdentifiedObject.mRID "37396e47-63c0-86b9-4a8b-39fb72fb08c8" ; + cim:IdentifiedObject.name "WGS84" . + + a cim:PositionPoint ; + cim:PositionPoint.Location ; + cim:PositionPoint.sequenceNumber "1" ; + cim:PositionPoint.xPosition "4.84845" ; + cim:PositionPoint.yPosition "52.4023" . + + a cim:PositionPoint ; + cim:PositionPoint.Location ; + cim:PositionPoint.sequenceNumber "2" ; + cim:PositionPoint.xPosition "4.98125" ; + cim:PositionPoint.yPosition "52.2483" . + + a cim:PositionPoint ; + cim:PositionPoint.Location ; + cim:PositionPoint.sequenceNumber "4" ; + cim:PositionPoint.xPosition "5.07186" ; + cim:PositionPoint.yPosition "51.8756" . + + a cim:PositionPoint ; + cim:PositionPoint.Location ; + cim:PositionPoint.sequenceNumber "3" ; + cim:PositionPoint.xPosition "5.04709" ; + cim:PositionPoint.yPosition "52.0699" . + + a cim:Location ; + cim:IdentifiedObject.mRID "54239dea-2bd6-8035-e9fb-39fb72fb08cd" ; + cim:IdentifiedObject.name "NL-Line_1" ; + cim:Location.CoordinateSystem ; + cim:Location.PowerSystemResources . + + a cim:Location ; + cim:IdentifiedObject.mRID "545c8085-2c7e-6641-6a5c-39fb72fb08ce" ; + cim:IdentifiedObject.name "NL-Line_4" ; + cim:Location.CoordinateSystem ; + cim:Location.PowerSystemResources . + + a cim:PositionPoint ; + cim:PositionPoint.Location ; + cim:PositionPoint.sequenceNumber "3" ; + cim:PositionPoint.xPosition "4.88892" ; + cim:PositionPoint.yPosition "51.9138" . + + a cim:Location ; + cim:IdentifiedObject.mRID "65fc92a5-86f4-d6e1-0adb-39fb72fb08cd" ; + cim:IdentifiedObject.name "NL-Line_5" ; + cim:Location.CoordinateSystem ; + cim:Location.PowerSystemResources . + + a cim:PositionPoint ; + cim:PositionPoint.Location ; + cim:PositionPoint.sequenceNumber "4" ; + cim:PositionPoint.xPosition "5.07294" ; + cim:PositionPoint.yPosition "51.8765" . + + a cim:PositionPoint ; + cim:PositionPoint.Location ; + cim:PositionPoint.sequenceNumber "2" ; + cim:PositionPoint.xPosition "4.79004" ; + cim:PositionPoint.yPosition "52.1571" . + + a cim:PositionPoint ; + cim:PositionPoint.Location ; + cim:PositionPoint.sequenceNumber "3" ; + cim:PositionPoint.xPosition "5.04709" ; + cim:PositionPoint.yPosition "52.0699" . + + a cim:PositionPoint ; + cim:PositionPoint.Location ; + cim:PositionPoint.sequenceNumber "1" ; + cim:PositionPoint.xPosition "4.84744" ; + cim:PositionPoint.yPosition "52.4027" . + + a cim:PositionPoint ; + cim:PositionPoint.Location ; + cim:PositionPoint.sequenceNumber "1" ; + cim:PositionPoint.xPosition "4.84845" ; + cim:PositionPoint.yPosition "52.4023" . + + a cim:PositionPoint ; + cim:PositionPoint.Location ; + cim:PositionPoint.sequenceNumber "3" ; + cim:PositionPoint.xPosition "5.04709" ; + cim:PositionPoint.yPosition "52.0699" . + + a cim:PositionPoint ; + cim:PositionPoint.Location ; + cim:PositionPoint.sequenceNumber "2" ; + cim:PositionPoint.xPosition "4.98125" ; + cim:PositionPoint.yPosition "52.2483" . + + a cim:PositionPoint ; + cim:PositionPoint.Location ; + cim:PositionPoint.sequenceNumber "1" ; + cim:PositionPoint.xPosition "4.84744" ; + cim:PositionPoint.yPosition "52.4027" . + + a cim:PositionPoint ; + cim:PositionPoint.Location ; + cim:PositionPoint.sequenceNumber "3" ; + cim:PositionPoint.xPosition "4.88892" ; + cim:PositionPoint.yPosition "51.9138" . + + a cim:PositionPoint ; + cim:PositionPoint.Location ; + cim:PositionPoint.sequenceNumber "2" ; + cim:PositionPoint.xPosition "4.79004" ; + cim:PositionPoint.yPosition "52.1571" . + + a cim:PositionPoint ; + cim:PositionPoint.Location ; + cim:PositionPoint.sequenceNumber "4" ; + cim:PositionPoint.xPosition "4.88798" ; + cim:PositionPoint.yPosition "51.9127" . + + a cim:PositionPoint ; + cim:PositionPoint.Location ; + cim:PositionPoint.sequenceNumber "2" ; + cim:PositionPoint.xPosition "4.98125" ; + cim:PositionPoint.yPosition "52.2483" . + + a cim:Location ; + cim:IdentifiedObject.mRID "fd5cdc11-839b-ee50-a070-39fb72fb08ce" ; + cim:IdentifiedObject.name "NL-Line_3" ; + cim:Location.CoordinateSystem ; + cim:Location.PowerSystemResources . +} \ No newline at end of file diff --git a/rdf-improved/trials/option1.jsonld b/rdf-improved/trials/option1.jsonld new file mode 100644 index 0000000..ead25cb --- /dev/null +++ b/rdf-improved/trials/option1.jsonld @@ -0,0 +1,65 @@ +{ + "@context": { + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "cim": "http://iec.ch/TC57/CIM100#", + "md": "http://iec.ch/TC57/61970-552/ModelDescription/1#", + "eu": "http://iec.ch/TC57/CIM100-European#", + "dm": "http://iec.ch/TC57/61970-552/DifferenceModel/1#" + }, + "@graph": [ + { + "@id": "urn:uuid:f52f12c3-db10-4d41-a9f2-b1fe29ab4d6d", + "@type": "dm:DifferenceModel", + "dm:reverseDifferences": [ + { + "@id": "urn:uuid:9d58e5bb-834c-4faa-928c-7da0bb1497d9", + "@type": "cim:ACLineSegment", + "cim:Conductor.length": { + "cim:Length.value": 50.0 + } + }, + { + "@id": "urn:uuid:9d58e5bb-834c-4faa-928c-7da0bb1497d5", + "@type": "cim:Switch", + "cim:IdentifiedObject.Name": "Switch1" + } + ], + "dm:forwardDifferences": [ + { + "@id": "urn:uuid:9d58e5bb-834c-4faa-928c-7da0bb1497d9", + "@type": "cim:ACLineSegment", + "cim:Conductor.length": { + "cim:Length.value": 55.0 + } + }, + { + "@id": "urn:uuid:9d58e5bb-834c-4faa-928c-7da0bb1497d5", + "@type": "cim:Switch", + "cim:IdentifiedObject.Name": "Switch2" + } + ] + }, + { + "@id": "urn:uuid:f52f12c3-db10-4d41-a9f2-b1fe29ab4d6a", + "@type": "dm:DifferenceModel", + "dm:reverseDifferences": [ + { + "@id": "urn:uuid:9d58e5bb-834c-4faa-928c-7da0bb1497d9", + "@type": "cim:ACLineSegment", + "cim:Conductor.length": { + "cim:Length.value": 60.0 + } + } + ], + "dm:forwardDifferences": [ + { + "@id": "urn:uuid:9d58e5bb-834c-4faa-928c-7da0bb1497d9", + "@type": "cim:ACLineSegment", + "cim:Conductor.length": { + "cim:Length.value": 65.0 + } + } + ] + } + ] +} \ No newline at end of file diff --git a/rdf-improved/trials/option1.trig b/rdf-improved/trials/option1.trig new file mode 100644 index 0000000..aa94d99 --- /dev/null +++ b/rdf-improved/trials/option1.trig @@ -0,0 +1,26 @@ +@prefix cim: . +@prefix dm: . +@prefix eu: . +@prefix md: . +@prefix rdf: . + + + rdf:type dm:DifferenceModel ; + dm:forwardDifferences , ; + dm:reverseDifferences , . + + + rdf:type cim:Switch ; + cim:IdentifiedObject.Name "Switch1" , "Switch2" . + + + rdf:type cim:ACLineSegment ; + cim:Conductor.length [ cim:Length.value 60 ] ; + cim:Conductor.length [ cim:Length.value 65 ] ; + cim:Conductor.length [ cim:Length.value 50 ] ; + cim:Conductor.length [ cim:Length.value 55 ] . + + + rdf:type dm:DifferenceModel ; + dm:forwardDifferences ; + dm:reverseDifferences . diff --git a/rdf-improved/trials/option2.jsonld b/rdf-improved/trials/option2.jsonld new file mode 100644 index 0000000..ffeef4d --- /dev/null +++ b/rdf-improved/trials/option2.jsonld @@ -0,0 +1,73 @@ +{ + "@context": { + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "cim": "http://iec.ch/TC57/CIM100#", + "md": "http://iec.ch/TC57/61970-552/ModelDescription/1#", + "eu": "http://iec.ch/TC57/CIM100-European#", + "dm": "http://iec.ch/TC57/61970-552/DifferenceModel/1#" + }, + "@graph": [ + { + "@id": "urn:uuid:f52f12c3-db10-4d41-a9f2-b1fe29ab4d6d", + "@type": "dm:DifferenceModel", + "dm:reverseDifferences": [ + { + "@id": "urn:uuid:9d58e5bb-834c-4faa-928c-7da0bb1497d9", + "@type": "cim:ACLineSegment", + "cim:Conductor.length": { + "cim:Length.value": 50.0 + } + }, + { + "@id": "urn:uuid:9d58e5bb-834c-4faa-928c-7da0bb1497d5", + "@type": "cim:Switch", + "cim:IdentifiedObject.Name": "Switch1" + } + ] + }, + { + "@id": "urn:uuid:f1aa3e3a-8391-4bf9-b435-6bd0702f9e0d", + "@type": "dm:DifferenceModel", + "dm:forwardDifferences": [ + { + "@id": "urn:uuid:9d58e5bb-834c-4faa-928c-7da0bb1497d9", + "@type": "cim:ACLineSegment", + "cim:Conductor.length": { + "cim:Length.value": 55.0 + } + }, + { + "@id": "urn:uuid:9d58e5bb-834c-4faa-928c-7da0bb1497d5", + "@type": "cim:Switch", + "cim:IdentifiedObject.Name": "Switch2" + } + ] + }, + { + "@id": "urn:uuid:f52f12c3-db10-4d41-a9f2-b1fe29ab4d6t", + "@type": "dm:DifferenceModel", + "dm:reverseDifferences": [ + { + "@id": "urn:uuid:9d58e5bb-834c-4faa-928c-7da0bb1497d9", + "@type": "cim:ACLineSegment", + "cim:Conductor.length": { + "cim:Length.value": 60.0 + } + } + ] + }, + { + "@id": "urn:uuid:f1aa3e3a-8391-4bf9-b435-6bd0702f9e0ru", + "@type": "dm:DifferenceModel", + "dm:forwardDifferences": [ + { + "@id": "urn:uuid:9d58e5bb-834c-4faa-928c-7da0bb1497d9", + "@type": "cim:ACLineSegment", + "cim:Conductor.length": { + "cim:Length.value": 65.0 + } + } + ] + } + ] +} \ No newline at end of file diff --git a/rdf-improved/trials/option2.trig b/rdf-improved/trials/option2.trig new file mode 100644 index 0000000..fffc5bc --- /dev/null +++ b/rdf-improved/trials/option2.trig @@ -0,0 +1,32 @@ +@prefix cim: . +@prefix dm: . +@prefix eu: . +@prefix md: . +@prefix rdf: . + + + rdf:type dm:DifferenceModel ; + dm:reverseDifferences , . + + + rdf:type cim:Switch ; + cim:IdentifiedObject.Name "Switch2" , "Switch1" . + + + rdf:type dm:DifferenceModel ; + dm:reverseDifferences . + + + rdf:type dm:DifferenceModel ; + dm:forwardDifferences . + + + rdf:type cim:ACLineSegment ; + cim:Conductor.length [ cim:Length.value 65 ] ; + cim:Conductor.length [ cim:Length.value 60 ] ; + cim:Conductor.length [ cim:Length.value 55 ] ; + cim:Conductor.length [ cim:Length.value 50 ] . + + + rdf:type dm:DifferenceModel ; + dm:forwardDifferences , . diff --git a/rdf-improved/trials/option3.jsonld b/rdf-improved/trials/option3.jsonld new file mode 100644 index 0000000..1edf8f3 --- /dev/null +++ b/rdf-improved/trials/option3.jsonld @@ -0,0 +1,142 @@ +{ + "@graph": [ + { + "@id": "urn:uuid:base-model", + "@type": "dm:Model", + "@graph": [ + { + "@id": "urn:uuid:9d58e5bb-834c-4faa-928c-7da0bb1497d9", + "cim:Conductor.length": { + "@id": "_:b4" + }, + "@type": "cim:ACLineSegment" + }, + { + "@id": "_:b4", + "cim:Length.value": { + "@value": "50", + "@type": "http://www.w3.org/2001/XMLSchema#integer" + } + }, + { + "@id": "urn:uuid:9d58e5bb-834c-4faa-928c-7da0bb1497d5", + "cim:IdentifiedObject.Name": "Switch1", + "@type": "cim:Switch" + } + ] + }, + { + "@id": "urn:uuid:f52f12c3-db10-4d41-a9f2-b1fe29ab4d6a", + "dm:forwardDifferences": { + "@id": "urn:uuid:f52f12c3-db10-4d41-a9f2-b1fe29ab4d6a-forward" + }, + "dm:reverseDifferences": { + "@id": "urn:uuid:f52f12c3-db10-4d41-a9f2-b1fe29ab4d6a-reverse" + }, + "md:Model.Supersedes": { + "@id": "urn:uuid:f52f12c3-db10-4d41-a9f2-b1fe29ab4d6d" + }, + "@type": "dm:DifferenceModel" + }, + { + "@id": "urn:uuid:f52f12c3-db10-4d41-a9f2-b1fe29ab4d6a-forward", + "@graph": [ + { + "@id": "urn:uuid:9d58e5bb-834c-4faa-928c-7da0bb1497d9", + "cim:Conductor.length": { + "@id": "_:b2" + } + }, + { + "@id": "_:b2", + "cim:Length.value": { + "@value": "65", + "@type": "http://www.w3.org/2001/XMLSchema#integer" + } + } + ] + }, + { + "@id": "urn:uuid:f52f12c3-db10-4d41-a9f2-b1fe29ab4d6a-reverse", + "@graph": [ + { + "@id": "_:b1", + "cim:Length.value": { + "@value": "60", + "@type": "http://www.w3.org/2001/XMLSchema#integer" + } + }, + { + "@id": "urn:uuid:9d58e5bb-834c-4faa-928c-7da0bb1497d9", + "cim:Conductor.length": { + "@id": "_:b1" + } + } + ] + }, + { + "@id": "urn:uuid:f52f12c3-db10-4d41-a9f2-b1fe29ab4d6d", + "dm:reverseDifferences": { + "@id": "urn:uuid:f52f12c3-db10-4d41-a9f2-b1fe29ab4d6d-reverse" + }, + "dm:forwardDifferences": { + "@id": "urn:uuid:f52f12c3-db10-4d41-a9f2-b1fe29ab4d6d-forward" + }, + "md:Model.Supersedes": { + "@id": "urn:uuid:base-model" + }, + "@type": "dm:DifferenceModel" + }, + { + "@id": "urn:uuid:f52f12c3-db10-4d41-a9f2-b1fe29ab4d6d-reverse", + "@graph": [ + { + "@id": "_:b0", + "cim:Length.value": { + "@value": "50", + "@type": "http://www.w3.org/2001/XMLSchema#integer" + } + }, + { + "@id": "urn:uuid:9d58e5bb-834c-4faa-928c-7da0bb1497d9", + "cim:Conductor.length": { + "@id": "_:b0" + } + }, + { + "@id": "urn:uuid:9d58e5bb-834c-4faa-928c-7da0bb1497d5", + "cim:IdentifiedObject.Name": "Switch1" + } + ] + }, + { + "@id": "urn:uuid:f52f12c3-db10-4d41-a9f2-b1fe29ab4d6d-forward", + "@graph": [ + { + "@id": "urn:uuid:9d58e5bb-834c-4faa-928c-7da0bb1497d9", + "cim:Conductor.length": { + "@id": "_:b3" + } + }, + { + "@id": "_:b3", + "cim:Length.value": { + "@value": "55", + "@type": "http://www.w3.org/2001/XMLSchema#integer" + } + }, + { + "@id": "urn:uuid:9d58e5bb-834c-4faa-928c-7da0bb1497d5", + "cim:IdentifiedObject.Name": "Switch2" + } + ] + } + ], + "@context": { + "eu": "http://iec.ch/TC57/CIM100-European#", + "dm": "http://iec.ch/TC57/61970-552/DifferenceModel/1#", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "cim": "http://iec.ch/TC57/CIM100#", + "md": "http://iec.ch/TC57/61970-552/ModelDescription/1#" + } +} diff --git a/rdf-improved/trials/option3.trig b/rdf-improved/trials/option3.trig new file mode 100644 index 0000000..46dbf18 --- /dev/null +++ b/rdf-improved/trials/option3.trig @@ -0,0 +1,46 @@ +@prefix cim: . +@prefix dm: . +@prefix eu: . +@prefix md: . +@prefix rdf: . + + a dm:Model. + + { + + rdf:type cim:Switch ; + cim:IdentifiedObject.Name "Switch1". + + + rdf:type cim:ACLineSegment ; + cim:Conductor.length [ cim:Length.value 50 ] . +} + + a dm:DifferenceModel ; + md:Model.Supersedes ; + dm:forwardDifferences ; + dm:reverseDifferences . + + { + cim:Conductor.length [ cim:Length.value 50 ] . + cim:IdentifiedObject.Name "Switch1" . +} + + { + cim:Conductor.length [ cim:Length.value 55 ] . + cim:IdentifiedObject.Name "Switch2" . +} + + + a dm:DifferenceModel ; + md:Model.Supersedes ; + dm:reverseDifferences ; + dm:forwardDifferences . + + { + cim:Conductor.length [ cim:Length.value 60 ] +} + + { + cim:Conductor.length [ cim:Length.value 65 ] +}