-
Notifications
You must be signed in to change notification settings - Fork 1
/
sparql-star-grammar.xhtml
4116 lines (4116 loc) · 395 KB
/
sparql-star-grammar.xhtml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
<meta name="generator" content="Railroad Diagram Generator 1.67" />
<style type="text/css">
::-moz-selection
{
color: #FFFCF0;
background: #0F0C00;
}
::selection
{
color: #FFFCF0;
background: #0F0C00;
}
.ebnf a, .grammar a
{
text-decoration: none;
}
.ebnf a:hover, .grammar a:hover
{
color: #050400;
text-decoration: underline;
}
.signature
{
color: #806600;
font-size: 11px;
text-align: right;
}
body
{
font: normal 12px Verdana, sans-serif;
color: #0F0C00;
background: #FFFCF0;
}
a:link, a:visited
{
color: #0F0C00;
}
a:link.signature, a:visited.signature
{
color: #806600;
}
a.button, #tabs li a
{
padding: 0.25em 0.5em;
border: 1px solid #806600;
background: #F1E8C6;
color: #806600;
text-decoration: none;
font-weight: bold;
}
a.button:hover, #tabs li a:hover
{
color: #050400;
background: #FFF6D1;
border-color: #050400;
}
#tabs
{
padding: 3px 10px;
margin-left: 0;
margin-top: 58px;
border-bottom: 1px solid #0F0C00;
}
#tabs li
{
list-style: none;
margin-left: 5px;
display: inline;
}
#tabs li a
{
border-bottom: 1px solid #0F0C00;
}
#tabs li a.active
{
color: #0F0C00;
background: #FFFCF0;
border-color: #0F0C00;
border-bottom: 1px solid #FFFCF0;
outline: none;
}
#divs div
{
display: none;
overflow:auto;
}
#divs div.active
{
display: block;
}
#text
{
border-color: #806600;
background: #FFFEFA;
color: #050400;
}
.small
{
vertical-align: top;
text-align: right;
font-size: 9px;
font-weight: normal;
line-height: 120%;
}
td.small
{
padding-top: 0px;
}
.hidden
{
visibility: hidden;
}
td:hover .hidden
{
visibility: visible;
}
div.download
{
display: none;
background: #FFFCF0;
position: absolute;
right: 34px;
top: 94px;
padding: 10px;
border: 1px dotted #0F0C00;
}
#divs div.ebnf, .ebnf code
{
display: block;
padding: 10px;
background: #FFF6D1;
width: 992px;
}
#divs div.grammar
{
display: block;
padding-left: 16px;
padding-top: 2px;
padding-bottom: 2px;
background: #FFF6D1;
}
pre
{
margin: 0px;
}
.ebnf div
{
padding-left: 13ch;
text-indent: -13ch;
}
.ebnf code, .grammar code, textarea, pre
{
font:12px SFMono-Regular,Consolas,Liberation Mono,Menlo,Courier,monospace;
}
tr.option-line td:first-child
{
text-align: right
}
tr.option-text td
{
padding-bottom: 10px
}
table.palette
{
border-top: 1px solid #050400;
border-right: 1px solid #050400;
margin-bottom: 4px
}
td.palette
{
border-bottom: 1px solid #050400;
border-left: 1px solid #050400;
}
a.palette
{
padding: 2px 3px 2px 10px;
text-decoration: none;
}
.palette
{
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-o-user-select: none;
-ms-user-select: none;
}
</style><svg xmlns="http://www.w3.org/2000/svg">
<defs>
<style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900; stroke-width: 1;}
.bold-line {stroke: #141000; shape-rendering: crispEdges; stroke-width: 2;}
.thin-line {stroke: #1F1800; shape-rendering: crispEdges}
.filled {fill: #332900; stroke: none;}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #141000;
font-weight: bold;
}
text.nonterminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #1A1400;
font-weight: normal;
}
text.regexp {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #1F1800;
font-weight: normal;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFDB4D; stroke: #332900; stroke-width: 1;}
rect.nonterminal {fill: #FFEC9E; stroke: #332900; stroke-width: 1;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF4C7; stroke: #332900; stroke-width: 1;}
</style>
</defs></svg></head>
<body>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><a name="QueryUnit">QueryUnit:</a></p><svg xmlns="http://www.w3.org/2000/svg" width="117" height="37">
<polygon points="9 17 1 13 1 21"/>
<polygon points="17 17 9 13 9 21"/><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Query" xlink:title="Query">
<rect x="31" y="3" width="58" height="32"/>
<rect x="29" y="1" width="58" height="32" class="nonterminal"/>
<text class="nonterminal" x="39" y="21">Query</text></a><path class="line" d="m17 17 h2 m0 0 h10 m58 0 h10 m3 0 h-3"/>
<polygon points="107 17 115 13 115 21"/>
<polygon points="107 17 99 13 99 21"/></svg><p xmlns:xhtml="http://www.w3.org/1999/xhtml">no references</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><a name="Query">Query:</a></p><svg xmlns="http://www.w3.org/2000/svg" width="439" height="169">
<polygon points="9 17 1 13 1 21"/>
<polygon points="17 17 9 13 9 21"/><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Prologue" xlink:title="Prologue">
<rect x="31" y="3" width="76" height="32"/>
<rect x="29" y="1" width="76" height="32" class="nonterminal"/>
<text class="nonterminal" x="39" y="21">Prologue</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#SelectQuery" xlink:title="SelectQuery">
<rect x="147" y="3" width="96" height="32"/>
<rect x="145" y="1" width="96" height="32" class="nonterminal"/>
<text class="nonterminal" x="155" y="21">SelectQuery</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#ConstructQuery" xlink:title="ConstructQuery">
<rect x="147" y="47" width="118" height="32"/>
<rect x="145" y="45" width="118" height="32" class="nonterminal"/>
<text class="nonterminal" x="155" y="65">ConstructQuery</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#DescribeQuery" xlink:title="DescribeQuery">
<rect x="147" y="91" width="112" height="32"/>
<rect x="145" y="89" width="112" height="32" class="nonterminal"/>
<text class="nonterminal" x="155" y="109">DescribeQuery</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#AskQuery" xlink:title="AskQuery">
<rect x="147" y="135" width="80" height="32"/>
<rect x="145" y="133" width="80" height="32" class="nonterminal"/>
<text class="nonterminal" x="155" y="153">AskQuery</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#ValuesClause" xlink:title="ValuesClause">
<rect x="305" y="3" width="106" height="32"/>
<rect x="303" y="1" width="106" height="32" class="nonterminal"/>
<text class="nonterminal" x="313" y="21">ValuesClause</text></a><path class="line" d="m17 17 h2 m0 0 h10 m76 0 h10 m20 0 h10 m96 0 h10 m0 0 h22 m-158 0 h20 m138 0 h20 m-178 0 q10 0 10 10 m158 0 q0 -10 10 -10 m-168 10 v24 m158 0 v-24 m-158 24 q0 10 10 10 m138 0 q10 0 10 -10 m-148 10 h10 m118 0 h10 m-148 -10 v20 m158 0 v-20 m-158 20 v24 m158 0 v-24 m-158 24 q0 10 10 10 m138 0 q10 0 10 -10 m-148 10 h10 m112 0 h10 m0 0 h6 m-148 -10 v20 m158 0 v-20 m-158 20 v24 m158 0 v-24 m-158 24 q0 10 10 10 m138 0 q10 0 10 -10 m-148 10 h10 m80 0 h10 m0 0 h38 m20 -132 h10 m106 0 h10 m3 0 h-3"/>
<polygon points="429 17 437 13 437 21"/>
<polygon points="429 17 421 13 421 21"/></svg><p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<ul>
<li><a href="#QueryUnit" title="QueryUnit">QueryUnit</a></li>
</ul>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><a name="UpdateUnit">UpdateUnit:</a></p><svg xmlns="http://www.w3.org/2000/svg" width="351" height="113">
<polygon points="9 61 1 57 1 65"/>
<polygon points="17 61 9 57 9 65"/><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Prologue" xlink:title="Prologue">
<rect x="51" y="47" width="76" height="32"/>
<rect x="49" y="45" width="76" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="65">Prologue</text></a><rect x="51" y="3" width="24" height="32" rx="10"/>
<rect x="49" y="1" width="24" height="32" class="terminal" rx="10"/>
<text class="terminal" x="59" y="21">;</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Update1" xlink:title="Update1">
<rect x="95" y="3" width="74" height="32"/>
<rect x="93" y="1" width="74" height="32" class="nonterminal"/>
<text class="nonterminal" x="103" y="21">Update1</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Update1" xlink:title="Update1">
<rect x="229" y="79" width="74" height="32"/>
<rect x="227" y="77" width="74" height="32" class="nonterminal"/>
<text class="nonterminal" x="237" y="97">Update1</text></a><path class="line" d="m17 61 h2 m20 0 h10 m76 0 h10 m0 0 h42 m-158 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -24 q0 -10 10 -10 m138 44 l20 0 m-20 0 q10 0 10 -10 l0 -24 q0 -10 -10 -10 m-138 0 h10 m24 0 h10 m0 0 h10 m74 0 h10 m40 44 h10 m0 0 h84 m-114 0 h20 m94 0 h20 m-134 0 q10 0 10 10 m114 0 q0 -10 10 -10 m-124 10 v12 m114 0 v-12 m-114 12 q0 10 10 10 m94 0 q10 0 10 -10 m-104 10 h10 m74 0 h10 m23 -32 h-3"/>
<polygon points="341 61 349 57 349 65"/>
<polygon points="341 61 333 57 333 65"/></svg><p xmlns:xhtml="http://www.w3.org/1999/xhtml">no references</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><a name="Prologue">Prologue:</a></p><svg xmlns="http://www.w3.org/2000/svg" width="181" height="101">
<polygon points="9 95 1 91 1 99"/>
<polygon points="17 95 9 91 9 99"/><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#BaseDecl" xlink:title="BaseDecl">
<rect x="51" y="47" width="78" height="32"/>
<rect x="49" y="45" width="78" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="65">BaseDecl</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#PrefixDecl" xlink:title="PrefixDecl">
<rect x="51" y="3" width="82" height="32"/>
<rect x="49" y="1" width="82" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="21">PrefixDecl</text></a><path class="line" d="m17 95 h2 m20 0 h10 m0 0 h92 m-122 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -14 q0 -10 10 -10 m102 34 l20 0 m-20 0 q10 0 10 -10 l0 -14 q0 -10 -10 -10 m-102 0 h10 m78 0 h10 m0 0 h4 m-112 10 l0 -44 q0 -10 10 -10 m112 54 l0 -44 q0 -10 -10 -10 m-102 0 h10 m82 0 h10 m23 78 h-3"/>
<polygon points="171 95 179 91 179 99"/>
<polygon points="171 95 163 91 163 99"/></svg><p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<ul>
<li><a href="#Query" title="Query">Query</a></li>
<li><a href="#UpdateUnit" title="UpdateUnit">UpdateUnit</a></li>
</ul>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><a name="BaseDecl">BaseDecl:</a></p><svg xmlns="http://www.w3.org/2000/svg" width="197" height="37">
<polygon points="9 17 1 13 1 21"/>
<polygon points="17 17 9 13 9 21"/>
<rect x="31" y="3" width="56" height="32" rx="10"/>
<rect x="29" y="1" width="56" height="32" class="terminal" rx="10"/>
<text class="terminal" x="39" y="21">BASE</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#IRIREF" xlink:title="IRIREF">
<rect x="107" y="3" width="62" height="32"/>
<rect x="105" y="1" width="62" height="32" class="nonterminal"/>
<text class="nonterminal" x="115" y="21">IRIREF</text></a><path class="line" d="m17 17 h2 m0 0 h10 m56 0 h10 m0 0 h10 m62 0 h10 m3 0 h-3"/>
<polygon points="187 17 195 13 195 21"/>
<polygon points="187 17 179 13 179 21"/></svg><p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<ul>
<li><a href="#Prologue" title="Prologue">Prologue</a></li>
</ul>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><a name="PrefixDecl">PrefixDecl:</a></p><svg xmlns="http://www.w3.org/2000/svg" width="319" height="37">
<polygon points="9 17 1 13 1 21"/>
<polygon points="17 17 9 13 9 21"/>
<rect x="31" y="3" width="70" height="32" rx="10"/>
<rect x="29" y="1" width="70" height="32" class="terminal" rx="10"/>
<text class="terminal" x="39" y="21">PREFIX</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#PNAME_NS" xlink:title="PNAME_NS">
<rect x="121" y="3" width="88" height="32"/>
<rect x="119" y="1" width="88" height="32" class="nonterminal"/>
<text class="nonterminal" x="129" y="21">PNAME_NS</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#IRIREF" xlink:title="IRIREF">
<rect x="229" y="3" width="62" height="32"/>
<rect x="227" y="1" width="62" height="32" class="nonterminal"/>
<text class="nonterminal" x="237" y="21">IRIREF</text></a><path class="line" d="m17 17 h2 m0 0 h10 m70 0 h10 m0 0 h10 m88 0 h10 m0 0 h10 m62 0 h10 m3 0 h-3"/>
<polygon points="309 17 317 13 317 21"/>
<polygon points="309 17 301 13 301 21"/></svg><p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<ul>
<li><a href="#Prologue" title="Prologue">Prologue</a></li>
</ul>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><a name="SelectQuery">SelectQuery:</a></p><svg xmlns="http://www.w3.org/2000/svg" width="601" height="71">
<polygon points="9 51 1 47 1 55"/>
<polygon points="17 51 9 47 9 55"/><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#SelectClause" xlink:title="SelectClause">
<rect x="31" y="37" width="102" height="32"/>
<rect x="29" y="35" width="102" height="32" class="nonterminal"/>
<text class="nonterminal" x="39" y="55">SelectClause</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#DatasetClause" xlink:title="DatasetClause">
<rect x="173" y="3" width="114" height="32"/>
<rect x="171" y="1" width="114" height="32" class="nonterminal"/>
<text class="nonterminal" x="181" y="21">DatasetClause</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#WhereClause" xlink:title="WhereClause">
<rect x="327" y="37" width="104" height="32"/>
<rect x="325" y="35" width="104" height="32" class="nonterminal"/>
<text class="nonterminal" x="335" y="55">WhereClause</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#SolutionModifier" xlink:title="SolutionModifier">
<rect x="451" y="37" width="122" height="32"/>
<rect x="449" y="35" width="122" height="32" class="nonterminal"/>
<text class="nonterminal" x="459" y="55">SolutionModifier</text></a><path class="line" d="m17 51 h2 m0 0 h10 m102 0 h10 m20 0 h10 m0 0 h124 m-154 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -14 q0 -10 10 -10 m134 34 l20 0 m-20 0 q10 0 10 -10 l0 -14 q0 -10 -10 -10 m-134 0 h10 m114 0 h10 m20 34 h10 m104 0 h10 m0 0 h10 m122 0 h10 m3 0 h-3"/>
<polygon points="591 51 599 47 599 55"/>
<polygon points="591 51 583 47 583 55"/></svg><p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<ul>
<li><a href="#Query" title="Query">Query</a></li>
</ul>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><a name="SubSelect">SubSelect:</a></p><svg xmlns="http://www.w3.org/2000/svg" width="553" height="37">
<polygon points="9 17 1 13 1 21"/>
<polygon points="17 17 9 13 9 21"/><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#SelectClause" xlink:title="SelectClause">
<rect x="31" y="3" width="102" height="32"/>
<rect x="29" y="1" width="102" height="32" class="nonterminal"/>
<text class="nonterminal" x="39" y="21">SelectClause</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#WhereClause" xlink:title="WhereClause">
<rect x="153" y="3" width="104" height="32"/>
<rect x="151" y="1" width="104" height="32" class="nonterminal"/>
<text class="nonterminal" x="161" y="21">WhereClause</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#SolutionModifier" xlink:title="SolutionModifier">
<rect x="277" y="3" width="122" height="32"/>
<rect x="275" y="1" width="122" height="32" class="nonterminal"/>
<text class="nonterminal" x="285" y="21">SolutionModifier</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#ValuesClause" xlink:title="ValuesClause">
<rect x="419" y="3" width="106" height="32"/>
<rect x="417" y="1" width="106" height="32" class="nonterminal"/>
<text class="nonterminal" x="427" y="21">ValuesClause</text></a><path class="line" d="m17 17 h2 m0 0 h10 m102 0 h10 m0 0 h10 m104 0 h10 m0 0 h10 m122 0 h10 m0 0 h10 m106 0 h10 m3 0 h-3"/>
<polygon points="543 17 551 13 551 21"/>
<polygon points="543 17 535 13 535 21"/></svg><p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<ul>
<li><a href="#GroupGraphPattern" title="GroupGraphPattern">GroupGraphPattern</a></li>
</ul>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><a name="SelectClause">SelectClause:</a></p><svg xmlns="http://www.w3.org/2000/svg" width="715" height="141">
<polygon points="9 33 1 29 1 37"/>
<polygon points="17 33 9 29 9 37"/>
<rect x="31" y="19" width="70" height="32" rx="10"/>
<rect x="29" y="17" width="70" height="32" class="terminal" rx="10"/>
<text class="terminal" x="39" y="37">SELECT</text>
<rect x="141" y="51" width="86" height="32" rx="10"/>
<rect x="139" y="49" width="86" height="32" class="terminal" rx="10"/>
<text class="terminal" x="149" y="69">DISTINCT</text>
<rect x="141" y="95" width="84" height="32" rx="10"/>
<rect x="139" y="93" width="84" height="32" class="terminal" rx="10"/>
<text class="terminal" x="149" y="113">REDUCED</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Var" xlink:title="Var">
<rect x="327" y="19" width="40" height="32"/>
<rect x="325" y="17" width="40" height="32" class="nonterminal"/>
<text class="nonterminal" x="335" y="37">Var</text></a><rect x="327" y="63" width="26" height="32" rx="10"/>
<rect x="325" y="61" width="26" height="32" class="terminal" rx="10"/>
<text class="terminal" x="335" y="81">(</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Expression" xlink:title="Expression">
<rect x="373" y="63" width="90" height="32"/>
<rect x="371" y="61" width="90" height="32" class="nonterminal"/>
<text class="nonterminal" x="381" y="81">Expression</text></a><rect x="483" y="63" width="38" height="32" rx="10"/>
<rect x="481" y="61" width="38" height="32" class="terminal" rx="10"/>
<text class="terminal" x="491" y="81">AS</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Var" xlink:title="Var">
<rect x="541" y="63" width="40" height="32"/>
<rect x="539" y="61" width="40" height="32" class="nonterminal"/>
<text class="nonterminal" x="549" y="81">Var</text></a><rect x="601" y="63" width="26" height="32" rx="10"/>
<rect x="599" y="61" width="26" height="32" class="terminal" rx="10"/>
<text class="terminal" x="609" y="81">)</text>
<rect x="287" y="107" width="28" height="32" rx="10"/>
<rect x="285" y="105" width="28" height="32" class="terminal" rx="10"/>
<text class="terminal" x="295" y="125">*</text>
<path class="line" d="m17 33 h2 m0 0 h10 m70 0 h10 m20 0 h10 m0 0 h96 m-126 0 h20 m106 0 h20 m-146 0 q10 0 10 10 m126 0 q0 -10 10 -10 m-136 10 v12 m126 0 v-12 m-126 12 q0 10 10 10 m106 0 q10 0 10 -10 m-116 10 h10 m86 0 h10 m-116 -10 v20 m126 0 v-20 m-126 20 v24 m126 0 v-24 m-126 24 q0 10 10 10 m106 0 q10 0 10 -10 m-116 10 h10 m84 0 h10 m0 0 h2 m80 -76 h10 m40 0 h10 m0 0 h260 m-340 0 h20 m320 0 h20 m-360 0 q10 0 10 10 m340 0 q0 -10 10 -10 m-350 10 v24 m340 0 v-24 m-340 24 q0 10 10 10 m320 0 q10 0 10 -10 m-330 10 h10 m26 0 h10 m0 0 h10 m90 0 h10 m0 0 h10 m38 0 h10 m0 0 h10 m40 0 h10 m0 0 h10 m26 0 h10 m-360 -44 l20 0 m-1 0 q-9 0 -9 -10 l0 -12 q0 -10 10 -10 m360 32 l20 0 m-20 0 q10 0 10 -10 l0 -12 q0 -10 -10 -10 m-360 0 h10 m0 0 h350 m-400 32 h20 m400 0 h20 m-440 0 q10 0 10 10 m420 0 q0 -10 10 -10 m-430 10 v68 m420 0 v-68 m-420 68 q0 10 10 10 m400 0 q10 0 10 -10 m-410 10 h10 m28 0 h10 m0 0 h352 m23 -88 h-3"/>
<polygon points="705 33 713 29 713 37"/>
<polygon points="705 33 697 29 697 37"/></svg><p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<ul>
<li><a href="#SelectQuery" title="SelectQuery">SelectQuery</a></li>
<li><a href="#SubSelect" title="SubSelect">SubSelect</a></li>
</ul>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><a name="ConstructQuery">ConstructQuery:</a></p><svg xmlns="http://www.w3.org/2000/svg" width="931" height="169">
<polygon points="9 51 1 47 1 55"/>
<polygon points="17 51 9 47 9 55"/>
<rect x="31" y="37" width="104" height="32" rx="10"/>
<rect x="29" y="35" width="104" height="32" class="terminal" rx="10"/>
<text class="terminal" x="39" y="55">CONSTRUCT</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#ConstructTemplate" xlink:title="ConstructTemplate">
<rect x="155" y="37" width="140" height="32"/>
<rect x="153" y="35" width="140" height="32" class="nonterminal"/>
<text class="nonterminal" x="163" y="55">ConstructTemplate</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#DatasetClause" xlink:title="DatasetClause">
<rect x="335" y="3" width="114" height="32"/>
<rect x="333" y="1" width="114" height="32" class="nonterminal"/>
<text class="nonterminal" x="343" y="21">DatasetClause</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#WhereClause" xlink:title="WhereClause">
<rect x="489" y="37" width="104" height="32"/>
<rect x="487" y="35" width="104" height="32" class="nonterminal"/>
<text class="nonterminal" x="497" y="55">WhereClause</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#SolutionModifier" xlink:title="SolutionModifier">
<rect x="613" y="37" width="122" height="32"/>
<rect x="611" y="35" width="122" height="32" class="nonterminal"/>
<text class="nonterminal" x="621" y="55">SolutionModifier</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#DatasetClause" xlink:title="DatasetClause">
<rect x="775" y="3" width="114" height="32"/>
<rect x="773" y="1" width="114" height="32" class="nonterminal"/>
<text class="nonterminal" x="783" y="21">DatasetClause</text></a><rect x="415" y="103" width="70" height="32" rx="10"/>
<rect x="413" y="101" width="70" height="32" class="terminal" rx="10"/>
<text class="terminal" x="423" y="121">WHERE</text>
<rect x="505" y="103" width="28" height="32" rx="10"/>
<rect x="503" y="101" width="28" height="32" class="terminal" rx="10"/>
<text class="terminal" x="513" y="121">{</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#TriplesTemplate" xlink:title="TriplesTemplate">
<rect x="573" y="135" width="120" height="32"/>
<rect x="571" y="133" width="120" height="32" class="nonterminal"/>
<text class="nonterminal" x="581" y="153">TriplesTemplate</text></a><rect x="733" y="103" width="28" height="32" rx="10"/>
<rect x="731" y="101" width="28" height="32" class="terminal" rx="10"/>
<text class="terminal" x="741" y="121">}</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#SolutionModifier" xlink:title="SolutionModifier">
<rect x="781" y="103" width="122" height="32"/>
<rect x="779" y="101" width="122" height="32" class="nonterminal"/>
<text class="nonterminal" x="789" y="121">SolutionModifier</text></a><path class="line" d="m17 51 h2 m0 0 h10 m104 0 h10 m0 0 h10 m140 0 h10 m20 0 h10 m0 0 h124 m-154 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -14 q0 -10 10 -10 m134 34 l20 0 m-20 0 q10 0 10 -10 l0 -14 q0 -10 -10 -10 m-134 0 h10 m114 0 h10 m20 34 h10 m104 0 h10 m0 0 h10 m122 0 h10 m20 0 h10 m0 0 h124 m-154 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -14 q0 -10 10 -10 m134 34 l20 0 m-20 0 q10 0 10 -10 l0 -14 q0 -10 -10 -10 m-134 0 h10 m114 0 h10 m22 34 l2 0 m2 0 l2 0 m2 0 l2 0 m-538 66 l2 0 m2 0 l2 0 m2 0 l2 0 m2 0 h10 m70 0 h10 m0 0 h10 m28 0 h10 m20 0 h10 m0 0 h130 m-160 0 h20 m140 0 h20 m-180 0 q10 0 10 10 m160 0 q0 -10 10 -10 m-170 10 v12 m160 0 v-12 m-160 12 q0 10 10 10 m140 0 q10 0 10 -10 m-150 10 h10 m120 0 h10 m20 -32 h10 m28 0 h10 m0 0 h10 m122 0 h10 m3 0 h-3"/>
<polygon points="921 117 929 113 929 121"/>
<polygon points="921 117 913 113 913 121"/></svg><p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<ul>
<li><a href="#Query" title="Query">Query</a></li>
</ul>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><a name="DescribeQuery">DescribeQuery:</a></p><svg xmlns="http://www.w3.org/2000/svg" width="795" height="115">
<polygon points="9 51 1 47 1 55"/>
<polygon points="17 51 9 47 9 55"/>
<rect x="31" y="37" width="88" height="32" rx="10"/>
<rect x="29" y="35" width="88" height="32" class="terminal" rx="10"/>
<text class="terminal" x="39" y="55">DESCRIBE</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#VarOrIri" xlink:title="VarOrIri">
<rect x="179" y="37" width="68" height="32"/>
<rect x="177" y="35" width="68" height="32" class="nonterminal"/>
<text class="nonterminal" x="187" y="55">VarOrIri</text></a><rect x="159" y="81" width="28" height="32" rx="10"/>
<rect x="157" y="79" width="28" height="32" class="terminal" rx="10"/>
<text class="terminal" x="167" y="99">*</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#DatasetClause" xlink:title="DatasetClause">
<rect x="327" y="3" width="114" height="32"/>
<rect x="325" y="1" width="114" height="32" class="nonterminal"/>
<text class="nonterminal" x="335" y="21">DatasetClause</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#WhereClause" xlink:title="WhereClause">
<rect x="501" y="69" width="104" height="32"/>
<rect x="499" y="67" width="104" height="32" class="nonterminal"/>
<text class="nonterminal" x="509" y="87">WhereClause</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#SolutionModifier" xlink:title="SolutionModifier">
<rect x="645" y="37" width="122" height="32"/>
<rect x="643" y="35" width="122" height="32" class="nonterminal"/>
<text class="nonterminal" x="653" y="55">SolutionModifier</text></a><path class="line" d="m17 51 h2 m0 0 h10 m88 0 h10 m40 0 h10 m68 0 h10 m-108 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -12 q0 -10 10 -10 m88 32 l20 0 m-20 0 q10 0 10 -10 l0 -12 q0 -10 -10 -10 m-88 0 h10 m0 0 h78 m-128 32 h20 m128 0 h20 m-168 0 q10 0 10 10 m148 0 q0 -10 10 -10 m-158 10 v24 m148 0 v-24 m-148 24 q0 10 10 10 m128 0 q10 0 10 -10 m-138 10 h10 m28 0 h10 m0 0 h80 m40 -44 h10 m0 0 h124 m-154 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -14 q0 -10 10 -10 m134 34 l20 0 m-20 0 q10 0 10 -10 l0 -14 q0 -10 -10 -10 m-134 0 h10 m114 0 h10 m40 34 h10 m0 0 h114 m-144 0 h20 m124 0 h20 m-164 0 q10 0 10 10 m144 0 q0 -10 10 -10 m-154 10 v12 m144 0 v-12 m-144 12 q0 10 10 10 m124 0 q10 0 10 -10 m-134 10 h10 m104 0 h10 m20 -32 h10 m122 0 h10 m3 0 h-3"/>
<polygon points="785 51 793 47 793 55"/>
<polygon points="785 51 777 47 777 55"/></svg><p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<ul>
<li><a href="#Query" title="Query">Query</a></li>
</ul>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><a name="AskQuery">AskQuery:</a></p><svg xmlns="http://www.w3.org/2000/svg" width="531" height="71">
<polygon points="9 51 1 47 1 55"/>
<polygon points="17 51 9 47 9 55"/>
<rect x="31" y="37" width="48" height="32" rx="10"/>
<rect x="29" y="35" width="48" height="32" class="terminal" rx="10"/>
<text class="terminal" x="39" y="55">ASK</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#DatasetClause" xlink:title="DatasetClause">
<rect x="119" y="3" width="114" height="32"/>
<rect x="117" y="1" width="114" height="32" class="nonterminal"/>
<text class="nonterminal" x="127" y="21">DatasetClause</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#WhereClause" xlink:title="WhereClause">
<rect x="273" y="37" width="104" height="32"/>
<rect x="271" y="35" width="104" height="32" class="nonterminal"/>
<text class="nonterminal" x="281" y="55">WhereClause</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#ValuesClause" xlink:title="ValuesClause">
<rect x="397" y="37" width="106" height="32"/>
<rect x="395" y="35" width="106" height="32" class="nonterminal"/>
<text class="nonterminal" x="405" y="55">ValuesClause</text></a><path class="line" d="m17 51 h2 m0 0 h10 m48 0 h10 m20 0 h10 m0 0 h124 m-154 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -14 q0 -10 10 -10 m134 34 l20 0 m-20 0 q10 0 10 -10 l0 -14 q0 -10 -10 -10 m-134 0 h10 m114 0 h10 m20 34 h10 m104 0 h10 m0 0 h10 m106 0 h10 m3 0 h-3"/>
<polygon points="521 51 529 47 529 55"/>
<polygon points="521 51 513 47 513 55"/></svg><p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<ul>
<li><a href="#Query" title="Query">Query</a></li>
</ul>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><a name="DatasetClause">DatasetClause:</a></p><svg xmlns="http://www.w3.org/2000/svg" width="325" height="81">
<polygon points="9 17 1 13 1 21"/>
<polygon points="17 17 9 13 9 21"/>
<rect x="31" y="3" width="60" height="32" rx="10"/>
<rect x="29" y="1" width="60" height="32" class="terminal" rx="10"/>
<text class="terminal" x="39" y="21">FROM</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#DefaultGraphClause" xlink:title="DefaultGraphClause">
<rect x="131" y="3" width="146" height="32"/>
<rect x="129" y="1" width="146" height="32" class="nonterminal"/>
<text class="nonterminal" x="139" y="21">DefaultGraphClause</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#NamedGraphClause" xlink:title="NamedGraphClause">
<rect x="131" y="47" width="146" height="32"/>
<rect x="129" y="45" width="146" height="32" class="nonterminal"/>
<text class="nonterminal" x="139" y="65">NamedGraphClause</text></a><path class="line" d="m17 17 h2 m0 0 h10 m60 0 h10 m20 0 h10 m146 0 h10 m-186 0 h20 m166 0 h20 m-206 0 q10 0 10 10 m186 0 q0 -10 10 -10 m-196 10 v24 m186 0 v-24 m-186 24 q0 10 10 10 m166 0 q10 0 10 -10 m-176 10 h10 m146 0 h10 m23 -44 h-3"/>
<polygon points="315 17 323 13 323 21"/>
<polygon points="315 17 307 13 307 21"/></svg><p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<ul>
<li><a href="#AskQuery" title="AskQuery">AskQuery</a></li>
<li><a href="#ConstructQuery" title="ConstructQuery">ConstructQuery</a></li>
<li><a href="#DescribeQuery" title="DescribeQuery">DescribeQuery</a></li>
<li><a href="#SelectQuery" title="SelectQuery">SelectQuery</a></li>
</ul>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><a name="DefaultGraphClause">DefaultGraphClause:</a></p><svg xmlns="http://www.w3.org/2000/svg" width="173" height="37">
<polygon points="9 17 1 13 1 21"/>
<polygon points="17 17 9 13 9 21"/><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#SourceSelector" xlink:title="SourceSelector">
<rect x="31" y="3" width="114" height="32"/>
<rect x="29" y="1" width="114" height="32" class="nonterminal"/>
<text class="nonterminal" x="39" y="21">SourceSelector</text></a><path class="line" d="m17 17 h2 m0 0 h10 m114 0 h10 m3 0 h-3"/>
<polygon points="163 17 171 13 171 21"/>
<polygon points="163 17 155 13 155 21"/></svg><p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<ul>
<li><a href="#DatasetClause" title="DatasetClause">DatasetClause</a></li>
</ul>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><a name="NamedGraphClause">NamedGraphClause:</a></p><svg xmlns="http://www.w3.org/2000/svg" width="261" height="37">
<polygon points="9 17 1 13 1 21"/>
<polygon points="17 17 9 13 9 21"/>
<rect x="31" y="3" width="68" height="32" rx="10"/>
<rect x="29" y="1" width="68" height="32" class="terminal" rx="10"/>
<text class="terminal" x="39" y="21">NAMED</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#SourceSelector" xlink:title="SourceSelector">
<rect x="119" y="3" width="114" height="32"/>
<rect x="117" y="1" width="114" height="32" class="nonterminal"/>
<text class="nonterminal" x="127" y="21">SourceSelector</text></a><path class="line" d="m17 17 h2 m0 0 h10 m68 0 h10 m0 0 h10 m114 0 h10 m3 0 h-3"/>
<polygon points="251 17 259 13 259 21"/>
<polygon points="251 17 243 13 243 21"/></svg><p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<ul>
<li><a href="#DatasetClause" title="DatasetClause">DatasetClause</a></li>
</ul>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><a name="SourceSelector">SourceSelector:</a></p><svg xmlns="http://www.w3.org/2000/svg" width="91" height="37">
<polygon points="9 17 1 13 1 21"/>
<polygon points="17 17 9 13 9 21"/><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#iri" xlink:title="iri">
<rect x="31" y="3" width="32" height="32"/>
<rect x="29" y="1" width="32" height="32" class="nonterminal"/>
<text class="nonterminal" x="39" y="21">iri</text></a><path class="line" d="m17 17 h2 m0 0 h10 m32 0 h10 m3 0 h-3"/>
<polygon points="81 17 89 13 89 21"/>
<polygon points="81 17 73 13 73 21"/></svg><p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<ul>
<li><a href="#DefaultGraphClause" title="DefaultGraphClause">DefaultGraphClause</a></li>
<li><a href="#NamedGraphClause" title="NamedGraphClause">NamedGraphClause</a></li>
</ul>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><a name="WhereClause">WhereClause:</a></p><svg xmlns="http://www.w3.org/2000/svg" width="333" height="69">
<polygon points="9 17 1 13 1 21"/>
<polygon points="17 17 9 13 9 21"/>
<rect x="51" y="35" width="70" height="32" rx="10"/>
<rect x="49" y="33" width="70" height="32" class="terminal" rx="10"/>
<text class="terminal" x="59" y="53">WHERE</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#GroupGraphPattern" xlink:title="GroupGraphPattern">
<rect x="161" y="3" width="144" height="32"/>
<rect x="159" y="1" width="144" height="32" class="nonterminal"/>
<text class="nonterminal" x="169" y="21">GroupGraphPattern</text></a><path class="line" d="m17 17 h2 m20 0 h10 m0 0 h80 m-110 0 h20 m90 0 h20 m-130 0 q10 0 10 10 m110 0 q0 -10 10 -10 m-120 10 v12 m110 0 v-12 m-110 12 q0 10 10 10 m90 0 q10 0 10 -10 m-100 10 h10 m70 0 h10 m20 -32 h10 m144 0 h10 m3 0 h-3"/>
<polygon points="323 17 331 13 331 21"/>
<polygon points="323 17 315 13 315 21"/></svg><p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<ul>
<li><a href="#AskQuery" title="AskQuery">AskQuery</a></li>
<li><a href="#ConstructQuery" title="ConstructQuery">ConstructQuery</a></li>
<li><a href="#DescribeQuery" title="DescribeQuery">DescribeQuery</a></li>
<li><a href="#SelectQuery" title="SelectQuery">SelectQuery</a></li>
<li><a href="#SubSelect" title="SubSelect">SubSelect</a></li>
</ul>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><a name="SolutionModifier">SolutionModifier:</a></p><svg xmlns="http://www.w3.org/2000/svg" width="723" height="57">
<polygon points="9 5 1 1 1 9"/>
<polygon points="17 5 9 1 9 9"/><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#GroupClause" xlink:title="GroupClause">
<rect x="51" y="23" width="102" height="32"/>
<rect x="49" y="21" width="102" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="41">GroupClause</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#HavingClause" xlink:title="HavingClause">
<rect x="213" y="23" width="106" height="32"/>
<rect x="211" y="21" width="106" height="32" class="nonterminal"/>
<text class="nonterminal" x="221" y="41">HavingClause</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#OrderClause" xlink:title="OrderClause">
<rect x="379" y="23" width="98" height="32"/>
<rect x="377" y="21" width="98" height="32" class="nonterminal"/>
<text class="nonterminal" x="387" y="41">OrderClause</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#LimitOffsetClauses" xlink:title="LimitOffsetClauses">
<rect x="537" y="23" width="138" height="32"/>
<rect x="535" y="21" width="138" height="32" class="nonterminal"/>
<text class="nonterminal" x="545" y="41">LimitOffsetClauses</text></a><path class="line" d="m17 5 h2 m20 0 h10 m0 0 h112 m-142 0 h20 m122 0 h20 m-162 0 q10 0 10 10 m142 0 q0 -10 10 -10 m-152 10 v12 m142 0 v-12 m-142 12 q0 10 10 10 m122 0 q10 0 10 -10 m-132 10 h10 m102 0 h10 m40 -32 h10 m0 0 h116 m-146 0 h20 m126 0 h20 m-166 0 q10 0 10 10 m146 0 q0 -10 10 -10 m-156 10 v12 m146 0 v-12 m-146 12 q0 10 10 10 m126 0 q10 0 10 -10 m-136 10 h10 m106 0 h10 m40 -32 h10 m0 0 h108 m-138 0 h20 m118 0 h20 m-158 0 q10 0 10 10 m138 0 q0 -10 10 -10 m-148 10 v12 m138 0 v-12 m-138 12 q0 10 10 10 m118 0 q10 0 10 -10 m-128 10 h10 m98 0 h10 m40 -32 h10 m0 0 h148 m-178 0 h20 m158 0 h20 m-198 0 q10 0 10 10 m178 0 q0 -10 10 -10 m-188 10 v12 m178 0 v-12 m-178 12 q0 10 10 10 m158 0 q10 0 10 -10 m-168 10 h10 m138 0 h10 m23 -32 h-3"/>
<polygon points="713 5 721 1 721 9"/>
<polygon points="713 5 705 1 705 9"/></svg><p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<ul>
<li><a href="#ConstructQuery" title="ConstructQuery">ConstructQuery</a></li>
<li><a href="#DescribeQuery" title="DescribeQuery">DescribeQuery</a></li>
<li><a href="#SelectQuery" title="SelectQuery">SelectQuery</a></li>
<li><a href="#SubSelect" title="SubSelect">SubSelect</a></li>
</ul>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><a name="GroupClause">GroupClause:</a></p><svg xmlns="http://www.w3.org/2000/svg" width="363" height="53">
<polygon points="9 33 1 29 1 37"/>
<polygon points="17 33 9 29 9 37"/>
<rect x="31" y="19" width="68" height="32" rx="10"/>
<rect x="29" y="17" width="68" height="32" class="terminal" rx="10"/>
<text class="terminal" x="39" y="37">GROUP</text>
<rect x="119" y="19" width="38" height="32" rx="10"/>
<rect x="117" y="17" width="38" height="32" class="terminal" rx="10"/>
<text class="terminal" x="127" y="37">BY</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#GroupCondition" xlink:title="GroupCondition">
<rect x="197" y="19" width="118" height="32"/>
<rect x="195" y="17" width="118" height="32" class="nonterminal"/>
<text class="nonterminal" x="205" y="37">GroupCondition</text></a><path class="line" d="m17 33 h2 m0 0 h10 m68 0 h10 m0 0 h10 m38 0 h10 m20 0 h10 m118 0 h10 m-158 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -12 q0 -10 10 -10 m138 32 l20 0 m-20 0 q10 0 10 -10 l0 -12 q0 -10 -10 -10 m-138 0 h10 m0 0 h128 m23 32 h-3"/>
<polygon points="353 33 361 29 361 37"/>
<polygon points="353 33 345 29 345 37"/></svg><p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<ul>
<li><a href="#SolutionModifier" title="SolutionModifier">SolutionModifier</a></li>
</ul>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><a name="GroupCondition">GroupCondition:</a></p><svg xmlns="http://www.w3.org/2000/svg" width="439" height="201">
<polygon points="9 17 1 13 1 21"/>
<polygon points="17 17 9 13 9 21"/><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#BuiltInCall" xlink:title="BuiltInCall">
<rect x="51" y="3" width="84" height="32"/>
<rect x="49" y="1" width="84" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="21">BuiltInCall</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#FunctionCall" xlink:title="FunctionCall">
<rect x="51" y="47" width="96" height="32"/>
<rect x="49" y="45" width="96" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="65">FunctionCall</text></a><rect x="51" y="91" width="26" height="32" rx="10"/>
<rect x="49" y="89" width="26" height="32" class="terminal" rx="10"/>
<text class="terminal" x="59" y="109">(</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Expression" xlink:title="Expression">
<rect x="97" y="91" width="90" height="32"/>
<rect x="95" y="89" width="90" height="32" class="nonterminal"/>
<text class="nonterminal" x="105" y="109">Expression</text></a><rect x="227" y="123" width="38" height="32" rx="10"/>
<rect x="225" y="121" width="38" height="32" class="terminal" rx="10"/>
<text class="terminal" x="235" y="141">AS</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Var" xlink:title="Var">
<rect x="285" y="123" width="40" height="32"/>
<rect x="283" y="121" width="40" height="32" class="nonterminal"/>
<text class="nonterminal" x="293" y="141">Var</text></a><rect x="365" y="91" width="26" height="32" rx="10"/>
<rect x="363" y="89" width="26" height="32" class="terminal" rx="10"/>
<text class="terminal" x="373" y="109">)</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Var" xlink:title="Var">
<rect x="51" y="167" width="40" height="32"/>
<rect x="49" y="165" width="40" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="185">Var</text></a><path class="line" d="m17 17 h2 m20 0 h10 m84 0 h10 m0 0 h256 m-380 0 h20 m360 0 h20 m-400 0 q10 0 10 10 m380 0 q0 -10 10 -10 m-390 10 v24 m380 0 v-24 m-380 24 q0 10 10 10 m360 0 q10 0 10 -10 m-370 10 h10 m96 0 h10 m0 0 h244 m-370 -10 v20 m380 0 v-20 m-380 20 v24 m380 0 v-24 m-380 24 q0 10 10 10 m360 0 q10 0 10 -10 m-370 10 h10 m26 0 h10 m0 0 h10 m90 0 h10 m20 0 h10 m0 0 h108 m-138 0 h20 m118 0 h20 m-158 0 q10 0 10 10 m138 0 q0 -10 10 -10 m-148 10 v12 m138 0 v-12 m-138 12 q0 10 10 10 m118 0 q10 0 10 -10 m-128 10 h10 m38 0 h10 m0 0 h10 m40 0 h10 m20 -32 h10 m26 0 h10 m-370 -10 v20 m380 0 v-20 m-380 20 v56 m380 0 v-56 m-380 56 q0 10 10 10 m360 0 q10 0 10 -10 m-370 10 h10 m40 0 h10 m0 0 h300 m23 -164 h-3"/>
<polygon points="429 17 437 13 437 21"/>
<polygon points="429 17 421 13 421 21"/></svg><p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<ul>
<li><a href="#GroupClause" title="GroupClause">GroupClause</a></li>
</ul>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><a name="HavingClause">HavingClause:</a></p><svg xmlns="http://www.w3.org/2000/svg" width="317" height="53">
<polygon points="9 33 1 29 1 37"/>
<polygon points="17 33 9 29 9 37"/>
<rect x="31" y="19" width="74" height="32" rx="10"/>
<rect x="29" y="17" width="74" height="32" class="terminal" rx="10"/>
<text class="terminal" x="39" y="37">HAVING</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#HavingCondition" xlink:title="HavingCondition">
<rect x="145" y="19" width="124" height="32"/>
<rect x="143" y="17" width="124" height="32" class="nonterminal"/>
<text class="nonterminal" x="153" y="37">HavingCondition</text></a><path class="line" d="m17 33 h2 m0 0 h10 m74 0 h10 m20 0 h10 m124 0 h10 m-164 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -12 q0 -10 10 -10 m144 32 l20 0 m-20 0 q10 0 10 -10 l0 -12 q0 -10 -10 -10 m-144 0 h10 m0 0 h134 m23 32 h-3"/>
<polygon points="307 33 315 29 315 37"/>
<polygon points="307 33 299 29 299 37"/></svg><p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<ul>
<li><a href="#SolutionModifier" title="SolutionModifier">SolutionModifier</a></li>
</ul>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><a name="HavingCondition">HavingCondition:</a></p><svg xmlns="http://www.w3.org/2000/svg" width="145" height="37">
<polygon points="9 17 1 13 1 21"/>
<polygon points="17 17 9 13 9 21"/><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Constraint" xlink:title="Constraint">
<rect x="31" y="3" width="86" height="32"/>
<rect x="29" y="1" width="86" height="32" class="nonterminal"/>
<text class="nonterminal" x="39" y="21">Constraint</text></a><path class="line" d="m17 17 h2 m0 0 h10 m86 0 h10 m3 0 h-3"/>
<polygon points="135 17 143 13 143 21"/>
<polygon points="135 17 127 13 127 21"/></svg><p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<ul>
<li><a href="#HavingClause" title="HavingClause">HavingClause</a></li>
</ul>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><a name="OrderClause">OrderClause:</a></p><svg xmlns="http://www.w3.org/2000/svg" width="361" height="53">
<polygon points="9 33 1 29 1 37"/>
<polygon points="17 33 9 29 9 37"/>
<rect x="31" y="19" width="68" height="32" rx="10"/>
<rect x="29" y="17" width="68" height="32" class="terminal" rx="10"/>
<text class="terminal" x="39" y="37">ORDER</text>
<rect x="119" y="19" width="38" height="32" rx="10"/>
<rect x="117" y="17" width="38" height="32" class="terminal" rx="10"/>
<text class="terminal" x="127" y="37">BY</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#OrderCondition" xlink:title="OrderCondition">
<rect x="197" y="19" width="116" height="32"/>
<rect x="195" y="17" width="116" height="32" class="nonterminal"/>
<text class="nonterminal" x="205" y="37">OrderCondition</text></a><path class="line" d="m17 33 h2 m0 0 h10 m68 0 h10 m0 0 h10 m38 0 h10 m20 0 h10 m116 0 h10 m-156 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -12 q0 -10 10 -10 m136 32 l20 0 m-20 0 q10 0 10 -10 l0 -12 q0 -10 -10 -10 m-136 0 h10 m0 0 h126 m23 32 h-3"/>
<polygon points="351 33 359 29 359 37"/>
<polygon points="351 33 343 29 343 37"/></svg><p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<ul>
<li><a href="#SolutionModifier" title="SolutionModifier">SolutionModifier</a></li>
</ul>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><a name="OrderCondition">OrderCondition:</a></p><svg xmlns="http://www.w3.org/2000/svg" width="373" height="169">
<polygon points="9 17 1 13 1 21"/>
<polygon points="17 17 9 13 9 21"/>
<rect x="71" y="3" width="46" height="32" rx="10"/>
<rect x="69" y="1" width="46" height="32" class="terminal" rx="10"/>
<text class="terminal" x="79" y="21">ASC</text>
<rect x="71" y="47" width="56" height="32" rx="10"/>
<rect x="69" y="45" width="56" height="32" class="terminal" rx="10"/>
<text class="terminal" x="79" y="65">DESC</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#BrackettedExpression" xlink:title="BrackettedExpression">
<rect x="167" y="3" width="158" height="32"/>
<rect x="165" y="1" width="158" height="32" class="nonterminal"/>
<text class="nonterminal" x="175" y="21">BrackettedExpression</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Constraint" xlink:title="Constraint">
<rect x="51" y="91" width="86" height="32"/>
<rect x="49" y="89" width="86" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="109">Constraint</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Var" xlink:title="Var">
<rect x="51" y="135" width="40" height="32"/>
<rect x="49" y="133" width="40" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="153">Var</text></a><path class="line" d="m17 17 h2 m40 0 h10 m46 0 h10 m0 0 h10 m-96 0 h20 m76 0 h20 m-116 0 q10 0 10 10 m96 0 q0 -10 10 -10 m-106 10 v24 m96 0 v-24 m-96 24 q0 10 10 10 m76 0 q10 0 10 -10 m-86 10 h10 m56 0 h10 m20 -44 h10 m158 0 h10 m-314 0 h20 m294 0 h20 m-334 0 q10 0 10 10 m314 0 q0 -10 10 -10 m-324 10 v68 m314 0 v-68 m-314 68 q0 10 10 10 m294 0 q10 0 10 -10 m-304 10 h10 m86 0 h10 m0 0 h188 m-304 -10 v20 m314 0 v-20 m-314 20 v24 m314 0 v-24 m-314 24 q0 10 10 10 m294 0 q10 0 10 -10 m-304 10 h10 m40 0 h10 m0 0 h234 m23 -132 h-3"/>
<polygon points="363 17 371 13 371 21"/>
<polygon points="363 17 355 13 355 21"/></svg><p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<ul>
<li><a href="#OrderClause" title="OrderClause">OrderClause</a></li>
</ul>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><a name="LimitOffsetClauses">LimitOffsetClauses:</a></p><svg xmlns="http://www.w3.org/2000/svg" width="353" height="145">
<polygon points="9 17 1 13 1 21"/>
<polygon points="17 17 9 13 9 21"/><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#LimitClause" xlink:title="LimitClause">
<rect x="51" y="3" width="94" height="32"/>
<rect x="49" y="1" width="94" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="21">LimitClause</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#OffsetClause" xlink:title="OffsetClause">
<rect x="185" y="35" width="100" height="32"/>
<rect x="183" y="33" width="100" height="32" class="nonterminal"/>
<text class="nonterminal" x="193" y="53">OffsetClause</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#OffsetClause" xlink:title="OffsetClause">
<rect x="51" y="79" width="100" height="32"/>
<rect x="49" y="77" width="100" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="97">OffsetClause</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#LimitClause" xlink:title="LimitClause">
<rect x="191" y="111" width="94" height="32"/>
<rect x="189" y="109" width="94" height="32" class="nonterminal"/>
<text class="nonterminal" x="199" y="129">LimitClause</text></a><path class="line" d="m17 17 h2 m20 0 h10 m94 0 h10 m20 0 h10 m0 0 h110 m-140 0 h20 m120 0 h20 m-160 0 q10 0 10 10 m140 0 q0 -10 10 -10 m-150 10 v12 m140 0 v-12 m-140 12 q0 10 10 10 m120 0 q10 0 10 -10 m-130 10 h10 m100 0 h10 m-274 -32 h20 m274 0 h20 m-314 0 q10 0 10 10 m294 0 q0 -10 10 -10 m-304 10 v56 m294 0 v-56 m-294 56 q0 10 10 10 m274 0 q10 0 10 -10 m-284 10 h10 m100 0 h10 m20 0 h10 m0 0 h104 m-134 0 h20 m114 0 h20 m-154 0 q10 0 10 10 m134 0 q0 -10 10 -10 m-144 10 v12 m134 0 v-12 m-134 12 q0 10 10 10 m114 0 q10 0 10 -10 m-124 10 h10 m94 0 h10 m43 -108 h-3"/>
<polygon points="343 17 351 13 351 21"/>
<polygon points="343 17 335 13 335 21"/></svg><p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<ul>
<li><a href="#SolutionModifier" title="SolutionModifier">SolutionModifier</a></li>
</ul>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><a name="LimitClause">LimitClause:</a></p><svg xmlns="http://www.w3.org/2000/svg" width="213" height="37">
<polygon points="9 17 1 13 1 21"/>
<polygon points="17 17 9 13 9 21"/>
<rect x="31" y="3" width="60" height="32" rx="10"/>
<rect x="29" y="1" width="60" height="32" class="terminal" rx="10"/>
<text class="terminal" x="39" y="21">LIMIT</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#INTEGER" xlink:title="INTEGER">
<rect x="111" y="3" width="74" height="32"/>
<rect x="109" y="1" width="74" height="32" class="nonterminal"/>
<text class="nonterminal" x="119" y="21">INTEGER</text></a><path class="line" d="m17 17 h2 m0 0 h10 m60 0 h10 m0 0 h10 m74 0 h10 m3 0 h-3"/>
<polygon points="203 17 211 13 211 21"/>
<polygon points="203 17 195 13 195 21"/></svg><p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<ul>
<li><a href="#LimitOffsetClauses" title="LimitOffsetClauses">LimitOffsetClauses</a></li>
</ul>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><a name="OffsetClause">OffsetClause:</a></p><svg xmlns="http://www.w3.org/2000/svg" width="225" height="37">
<polygon points="9 17 1 13 1 21"/>
<polygon points="17 17 9 13 9 21"/>
<rect x="31" y="3" width="72" height="32" rx="10"/>
<rect x="29" y="1" width="72" height="32" class="terminal" rx="10"/>
<text class="terminal" x="39" y="21">OFFSET</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#INTEGER" xlink:title="INTEGER">
<rect x="123" y="3" width="74" height="32"/>
<rect x="121" y="1" width="74" height="32" class="nonterminal"/>
<text class="nonterminal" x="131" y="21">INTEGER</text></a><path class="line" d="m17 17 h2 m0 0 h10 m72 0 h10 m0 0 h10 m74 0 h10 m3 0 h-3"/>
<polygon points="215 17 223 13 223 21"/>
<polygon points="215 17 207 13 207 21"/></svg><p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<ul>
<li><a href="#LimitOffsetClauses" title="LimitOffsetClauses">LimitOffsetClauses</a></li>
</ul>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><a name="ValuesClause">ValuesClause:</a></p><svg xmlns="http://www.w3.org/2000/svg" width="273" height="57">
<polygon points="9 5 1 1 1 9"/>
<polygon points="17 5 9 1 9 9"/>
<rect x="51" y="23" width="72" height="32" rx="10"/>
<rect x="49" y="21" width="72" height="32" class="terminal" rx="10"/>
<text class="terminal" x="59" y="41">VALUES</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#DataBlock" xlink:title="DataBlock">
<rect x="143" y="23" width="82" height="32"/>
<rect x="141" y="21" width="82" height="32" class="nonterminal"/>
<text class="nonterminal" x="151" y="41">DataBlock</text></a><path class="line" d="m17 5 h2 m20 0 h10 m0 0 h184 m-214 0 h20 m194 0 h20 m-234 0 q10 0 10 10 m214 0 q0 -10 10 -10 m-224 10 v12 m214 0 v-12 m-214 12 q0 10 10 10 m194 0 q10 0 10 -10 m-204 10 h10 m72 0 h10 m0 0 h10 m82 0 h10 m23 -32 h-3"/>
<polygon points="263 5 271 1 271 9"/>
<polygon points="263 5 255 1 255 9"/></svg><p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<ul>
<li><a href="#AskQuery" title="AskQuery">AskQuery</a></li>
<li><a href="#Query" title="Query">Query</a></li>
<li><a href="#SubSelect" title="SubSelect">SubSelect</a></li>
</ul>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><a name="Update1">Update1:</a></p><svg xmlns="http://www.w3.org/2000/svg" width="203" height="477">
<polygon points="9 17 1 13 1 21"/>
<polygon points="17 17 9 13 9 21"/><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Load" xlink:title="Load">
<rect x="51" y="3" width="50" height="32"/>
<rect x="49" y="1" width="50" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="21">Load</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Clear" xlink:title="Clear">
<rect x="51" y="47" width="52" height="32"/>
<rect x="49" y="45" width="52" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="65">Clear</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Drop" xlink:title="Drop">
<rect x="51" y="91" width="50" height="32"/>
<rect x="49" y="89" width="50" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="109">Drop</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Add" xlink:title="Add">
<rect x="51" y="135" width="44" height="32"/>
<rect x="49" y="133" width="44" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="153">Add</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Move" xlink:title="Move">
<rect x="51" y="179" width="52" height="32"/>
<rect x="49" y="177" width="52" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="197">Move</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Copy" xlink:title="Copy">
<rect x="51" y="223" width="52" height="32"/>
<rect x="49" y="221" width="52" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="241">Copy</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Create" xlink:title="Create">
<rect x="51" y="267" width="62" height="32"/>
<rect x="49" y="265" width="62" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="285">Create</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#InsertData" xlink:title="InsertData">
<rect x="51" y="311" width="88" height="32"/>
<rect x="49" y="309" width="88" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="329">InsertData</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#DeleteData" xlink:title="DeleteData">
<rect x="51" y="355" width="92" height="32"/>
<rect x="49" y="353" width="92" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="373">DeleteData</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#DeleteWhere" xlink:title="DeleteWhere">
<rect x="51" y="399" width="104" height="32"/>
<rect x="49" y="397" width="104" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="417">DeleteWhere</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Modify" xlink:title="Modify">
<rect x="51" y="443" width="60" height="32"/>
<rect x="49" y="441" width="60" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="461">Modify</text></a><path class="line" d="m17 17 h2 m20 0 h10 m50 0 h10 m0 0 h54 m-144 0 h20 m124 0 h20 m-164 0 q10 0 10 10 m144 0 q0 -10 10 -10 m-154 10 v24 m144 0 v-24 m-144 24 q0 10 10 10 m124 0 q10 0 10 -10 m-134 10 h10 m52 0 h10 m0 0 h52 m-134 -10 v20 m144 0 v-20 m-144 20 v24 m144 0 v-24 m-144 24 q0 10 10 10 m124 0 q10 0 10 -10 m-134 10 h10 m50 0 h10 m0 0 h54 m-134 -10 v20 m144 0 v-20 m-144 20 v24 m144 0 v-24 m-144 24 q0 10 10 10 m124 0 q10 0 10 -10 m-134 10 h10 m44 0 h10 m0 0 h60 m-134 -10 v20 m144 0 v-20 m-144 20 v24 m144 0 v-24 m-144 24 q0 10 10 10 m124 0 q10 0 10 -10 m-134 10 h10 m52 0 h10 m0 0 h52 m-134 -10 v20 m144 0 v-20 m-144 20 v24 m144 0 v-24 m-144 24 q0 10 10 10 m124 0 q10 0 10 -10 m-134 10 h10 m52 0 h10 m0 0 h52 m-134 -10 v20 m144 0 v-20 m-144 20 v24 m144 0 v-24 m-144 24 q0 10 10 10 m124 0 q10 0 10 -10 m-134 10 h10 m62 0 h10 m0 0 h42 m-134 -10 v20 m144 0 v-20 m-144 20 v24 m144 0 v-24 m-144 24 q0 10 10 10 m124 0 q10 0 10 -10 m-134 10 h10 m88 0 h10 m0 0 h16 m-134 -10 v20 m144 0 v-20 m-144 20 v24 m144 0 v-24 m-144 24 q0 10 10 10 m124 0 q10 0 10 -10 m-134 10 h10 m92 0 h10 m0 0 h12 m-134 -10 v20 m144 0 v-20 m-144 20 v24 m144 0 v-24 m-144 24 q0 10 10 10 m124 0 q10 0 10 -10 m-134 10 h10 m104 0 h10 m-134 -10 v20 m144 0 v-20 m-144 20 v24 m144 0 v-24 m-144 24 q0 10 10 10 m124 0 q10 0 10 -10 m-134 10 h10 m60 0 h10 m0 0 h44 m23 -440 h-3"/>
<polygon points="193 17 201 13 201 21"/>
<polygon points="193 17 185 13 185 21"/></svg><p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<ul>
<li><a href="#UpdateUnit" title="UpdateUnit">UpdateUnit</a></li>
</ul>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><a name="Load">Load:</a></p><svg xmlns="http://www.w3.org/2000/svg" width="513" height="69">
<polygon points="9 17 1 13 1 21"/>
<polygon points="17 17 9 13 9 21"/>
<rect x="31" y="3" width="58" height="32" rx="10"/>
<rect x="29" y="1" width="58" height="32" class="terminal" rx="10"/>
<text class="terminal" x="39" y="21">LOAD</text>
<rect x="129" y="35" width="70" height="32" rx="10"/>
<rect x="127" y="33" width="70" height="32" class="terminal" rx="10"/>
<text class="terminal" x="137" y="53">SILENT</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#iri" xlink:title="iri">
<rect x="239" y="3" width="32" height="32"/>
<rect x="237" y="1" width="32" height="32" class="nonterminal"/>
<text class="nonterminal" x="247" y="21">iri</text></a><rect x="311" y="35" width="56" height="32" rx="10"/>
<rect x="309" y="33" width="56" height="32" class="terminal" rx="10"/>
<text class="terminal" x="319" y="53">INTO</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#GraphRef" xlink:title="GraphRef">
<rect x="387" y="35" width="78" height="32"/>
<rect x="385" y="33" width="78" height="32" class="nonterminal"/>
<text class="nonterminal" x="395" y="53">GraphRef</text></a><path class="line" d="m17 17 h2 m0 0 h10 m58 0 h10 m20 0 h10 m0 0 h80 m-110 0 h20 m90 0 h20 m-130 0 q10 0 10 10 m110 0 q0 -10 10 -10 m-120 10 v12 m110 0 v-12 m-110 12 q0 10 10 10 m90 0 q10 0 10 -10 m-100 10 h10 m70 0 h10 m20 -32 h10 m32 0 h10 m20 0 h10 m0 0 h164 m-194 0 h20 m174 0 h20 m-214 0 q10 0 10 10 m194 0 q0 -10 10 -10 m-204 10 v12 m194 0 v-12 m-194 12 q0 10 10 10 m174 0 q10 0 10 -10 m-184 10 h10 m56 0 h10 m0 0 h10 m78 0 h10 m23 -32 h-3"/>
<polygon points="503 17 511 13 511 21"/>
<polygon points="503 17 495 13 495 21"/></svg><p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<ul>
<li><a href="#Update1" title="Update1">Update1</a></li>
</ul>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><a name="Clear">Clear:</a></p><svg xmlns="http://www.w3.org/2000/svg" width="367" height="69">
<polygon points="9 17 1 13 1 21"/>
<polygon points="17 17 9 13 9 21"/>
<rect x="31" y="3" width="64" height="32" rx="10"/>
<rect x="29" y="1" width="64" height="32" class="terminal" rx="10"/>
<text class="terminal" x="39" y="21">CLEAR</text>
<rect x="135" y="35" width="70" height="32" rx="10"/>
<rect x="133" y="33" width="70" height="32" class="terminal" rx="10"/>
<text class="terminal" x="143" y="53">SILENT</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#GraphRefAll" xlink:title="GraphRefAll">
<rect x="245" y="3" width="94" height="32"/>
<rect x="243" y="1" width="94" height="32" class="nonterminal"/>
<text class="nonterminal" x="253" y="21">GraphRefAll</text></a><path class="line" d="m17 17 h2 m0 0 h10 m64 0 h10 m20 0 h10 m0 0 h80 m-110 0 h20 m90 0 h20 m-130 0 q10 0 10 10 m110 0 q0 -10 10 -10 m-120 10 v12 m110 0 v-12 m-110 12 q0 10 10 10 m90 0 q10 0 10 -10 m-100 10 h10 m70 0 h10 m20 -32 h10 m94 0 h10 m3 0 h-3"/>
<polygon points="357 17 365 13 365 21"/>
<polygon points="357 17 349 13 349 21"/></svg><p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<ul>
<li><a href="#Update1" title="Update1">Update1</a></li>
</ul>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><a name="Drop">Drop:</a></p><svg xmlns="http://www.w3.org/2000/svg" width="361" height="69">
<polygon points="9 17 1 13 1 21"/>
<polygon points="17 17 9 13 9 21"/>
<rect x="31" y="3" width="58" height="32" rx="10"/>
<rect x="29" y="1" width="58" height="32" class="terminal" rx="10"/>
<text class="terminal" x="39" y="21">DROP</text>
<rect x="129" y="35" width="70" height="32" rx="10"/>
<rect x="127" y="33" width="70" height="32" class="terminal" rx="10"/>
<text class="terminal" x="137" y="53">SILENT</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#GraphRefAll" xlink:title="GraphRefAll">
<rect x="239" y="3" width="94" height="32"/>
<rect x="237" y="1" width="94" height="32" class="nonterminal"/>
<text class="nonterminal" x="247" y="21">GraphRefAll</text></a><path class="line" d="m17 17 h2 m0 0 h10 m58 0 h10 m20 0 h10 m0 0 h80 m-110 0 h20 m90 0 h20 m-130 0 q10 0 10 10 m110 0 q0 -10 10 -10 m-120 10 v12 m110 0 v-12 m-110 12 q0 10 10 10 m90 0 q10 0 10 -10 m-100 10 h10 m70 0 h10 m20 -32 h10 m94 0 h10 m3 0 h-3"/>
<polygon points="351 17 359 13 359 21"/>
<polygon points="351 17 343 13 343 21"/></svg><p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<ul>
<li><a href="#Update1" title="Update1">Update1</a></li>
</ul>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><a name="Create">Create:</a></p><svg xmlns="http://www.w3.org/2000/svg" width="359" height="69">
<polygon points="9 17 1 13 1 21"/>
<polygon points="17 17 9 13 9 21"/>
<rect x="31" y="3" width="72" height="32" rx="10"/>
<rect x="29" y="1" width="72" height="32" class="terminal" rx="10"/>
<text class="terminal" x="39" y="21">CREATE</text>
<rect x="143" y="35" width="70" height="32" rx="10"/>
<rect x="141" y="33" width="70" height="32" class="terminal" rx="10"/>
<text class="terminal" x="151" y="53">SILENT</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#GraphRef" xlink:title="GraphRef">
<rect x="253" y="3" width="78" height="32"/>
<rect x="251" y="1" width="78" height="32" class="nonterminal"/>
<text class="nonterminal" x="261" y="21">GraphRef</text></a><path class="line" d="m17 17 h2 m0 0 h10 m72 0 h10 m20 0 h10 m0 0 h80 m-110 0 h20 m90 0 h20 m-130 0 q10 0 10 10 m110 0 q0 -10 10 -10 m-120 10 v12 m110 0 v-12 m-110 12 q0 10 10 10 m90 0 q10 0 10 -10 m-100 10 h10 m70 0 h10 m20 -32 h10 m78 0 h10 m3 0 h-3"/>
<polygon points="349 17 357 13 357 21"/>
<polygon points="349 17 341 13 341 21"/></svg><p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<ul>
<li><a href="#Update1" title="Update1">Update1</a></li>
</ul>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><a name="Add">Add:</a></p><svg xmlns="http://www.w3.org/2000/svg" width="571" height="69">
<polygon points="9 17 1 13 1 21"/>
<polygon points="17 17 9 13 9 21"/>
<rect x="31" y="3" width="48" height="32" rx="10"/>
<rect x="29" y="1" width="48" height="32" class="terminal" rx="10"/>
<text class="terminal" x="39" y="21">ADD</text>
<rect x="119" y="35" width="70" height="32" rx="10"/>
<rect x="117" y="33" width="70" height="32" class="terminal" rx="10"/>
<text class="terminal" x="127" y="53">SILENT</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#GraphOrDefault" xlink:title="GraphOrDefault">
<rect x="229" y="3" width="118" height="32"/>
<rect x="227" y="1" width="118" height="32" class="nonterminal"/>
<text class="nonterminal" x="237" y="21">GraphOrDefault</text></a><rect x="367" y="3" width="38" height="32" rx="10"/>
<rect x="365" y="1" width="38" height="32" class="terminal" rx="10"/>
<text class="terminal" x="375" y="21">TO</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#GraphOrDefault" xlink:title="GraphOrDefault">
<rect x="425" y="3" width="118" height="32"/>
<rect x="423" y="1" width="118" height="32" class="nonterminal"/>
<text class="nonterminal" x="433" y="21">GraphOrDefault</text></a><path class="line" d="m17 17 h2 m0 0 h10 m48 0 h10 m20 0 h10 m0 0 h80 m-110 0 h20 m90 0 h20 m-130 0 q10 0 10 10 m110 0 q0 -10 10 -10 m-120 10 v12 m110 0 v-12 m-110 12 q0 10 10 10 m90 0 q10 0 10 -10 m-100 10 h10 m70 0 h10 m20 -32 h10 m118 0 h10 m0 0 h10 m38 0 h10 m0 0 h10 m118 0 h10 m3 0 h-3"/>
<polygon points="561 17 569 13 569 21"/>
<polygon points="561 17 553 13 553 21"/></svg><p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<ul>
<li><a href="#Update1" title="Update1">Update1</a></li>
</ul>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><a name="Move">Move:</a></p><svg xmlns="http://www.w3.org/2000/svg" width="583" height="69">
<polygon points="9 17 1 13 1 21"/>
<polygon points="17 17 9 13 9 21"/>
<rect x="31" y="3" width="60" height="32" rx="10"/>
<rect x="29" y="1" width="60" height="32" class="terminal" rx="10"/>
<text class="terminal" x="39" y="21">MOVE</text>
<rect x="131" y="35" width="70" height="32" rx="10"/>
<rect x="129" y="33" width="70" height="32" class="terminal" rx="10"/>
<text class="terminal" x="139" y="53">SILENT</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#GraphOrDefault" xlink:title="GraphOrDefault">
<rect x="241" y="3" width="118" height="32"/>
<rect x="239" y="1" width="118" height="32" class="nonterminal"/>
<text class="nonterminal" x="249" y="21">GraphOrDefault</text></a><rect x="379" y="3" width="38" height="32" rx="10"/>
<rect x="377" y="1" width="38" height="32" class="terminal" rx="10"/>
<text class="terminal" x="387" y="21">TO</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#GraphOrDefault" xlink:title="GraphOrDefault">
<rect x="437" y="3" width="118" height="32"/>
<rect x="435" y="1" width="118" height="32" class="nonterminal"/>
<text class="nonterminal" x="445" y="21">GraphOrDefault</text></a><path class="line" d="m17 17 h2 m0 0 h10 m60 0 h10 m20 0 h10 m0 0 h80 m-110 0 h20 m90 0 h20 m-130 0 q10 0 10 10 m110 0 q0 -10 10 -10 m-120 10 v12 m110 0 v-12 m-110 12 q0 10 10 10 m90 0 q10 0 10 -10 m-100 10 h10 m70 0 h10 m20 -32 h10 m118 0 h10 m0 0 h10 m38 0 h10 m0 0 h10 m118 0 h10 m3 0 h-3"/>
<polygon points="573 17 581 13 581 21"/>
<polygon points="573 17 565 13 565 21"/></svg><p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<ul>
<li><a href="#Update1" title="Update1">Update1</a></li>
</ul>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><a name="Copy">Copy:</a></p><svg xmlns="http://www.w3.org/2000/svg" width="581" height="69">
<polygon points="9 17 1 13 1 21"/>
<polygon points="17 17 9 13 9 21"/>
<rect x="31" y="3" width="58" height="32" rx="10"/>
<rect x="29" y="1" width="58" height="32" class="terminal" rx="10"/>
<text class="terminal" x="39" y="21">COPY</text>
<rect x="129" y="35" width="70" height="32" rx="10"/>
<rect x="127" y="33" width="70" height="32" class="terminal" rx="10"/>
<text class="terminal" x="137" y="53">SILENT</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#GraphOrDefault" xlink:title="GraphOrDefault">
<rect x="239" y="3" width="118" height="32"/>
<rect x="237" y="1" width="118" height="32" class="nonterminal"/>
<text class="nonterminal" x="247" y="21">GraphOrDefault</text></a><rect x="377" y="3" width="38" height="32" rx="10"/>
<rect x="375" y="1" width="38" height="32" class="terminal" rx="10"/>
<text class="terminal" x="385" y="21">TO</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#GraphOrDefault" xlink:title="GraphOrDefault">
<rect x="435" y="3" width="118" height="32"/>
<rect x="433" y="1" width="118" height="32" class="nonterminal"/>
<text class="nonterminal" x="443" y="21">GraphOrDefault</text></a><path class="line" d="m17 17 h2 m0 0 h10 m58 0 h10 m20 0 h10 m0 0 h80 m-110 0 h20 m90 0 h20 m-130 0 q10 0 10 10 m110 0 q0 -10 10 -10 m-120 10 v12 m110 0 v-12 m-110 12 q0 10 10 10 m90 0 q10 0 10 -10 m-100 10 h10 m70 0 h10 m20 -32 h10 m118 0 h10 m0 0 h10 m38 0 h10 m0 0 h10 m118 0 h10 m3 0 h-3"/>
<polygon points="571 17 579 13 579 21"/>
<polygon points="571 17 563 13 563 21"/></svg><p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<ul>
<li><a href="#Update1" title="Update1">Update1</a></li>
</ul>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><a name="InsertData">InsertData:</a></p><svg xmlns="http://www.w3.org/2000/svg" width="275" height="37">
<polygon points="9 17 1 13 1 21"/>
<polygon points="17 17 9 13 9 21"/>
<rect x="31" y="3" width="112" height="32" rx="10"/>
<rect x="29" y="1" width="112" height="32" class="terminal" rx="10"/>
<text class="terminal" x="39" y="21">INSERT DATA</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#QuadData" xlink:title="QuadData">
<rect x="163" y="3" width="84" height="32"/>
<rect x="161" y="1" width="84" height="32" class="nonterminal"/>
<text class="nonterminal" x="171" y="21">QuadData</text></a><path class="line" d="m17 17 h2 m0 0 h10 m112 0 h10 m0 0 h10 m84 0 h10 m3 0 h-3"/>
<polygon points="265 17 273 13 273 21"/>
<polygon points="265 17 257 13 257 21"/></svg><p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<ul>
<li><a href="#Update1" title="Update1">Update1</a></li>
</ul>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><a name="DeleteData">DeleteData:</a></p><svg xmlns="http://www.w3.org/2000/svg" width="273" height="37">
<polygon points="9 17 1 13 1 21"/>
<polygon points="17 17 9 13 9 21"/>
<rect x="31" y="3" width="110" height="32" rx="10"/>
<rect x="29" y="1" width="110" height="32" class="terminal" rx="10"/>
<text class="terminal" x="39" y="21">DELETE DATA</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#QuadData" xlink:title="QuadData">
<rect x="161" y="3" width="84" height="32"/>
<rect x="159" y="1" width="84" height="32" class="nonterminal"/>
<text class="nonterminal" x="169" y="21">QuadData</text></a><path class="line" d="m17 17 h2 m0 0 h10 m110 0 h10 m0 0 h10 m84 0 h10 m3 0 h-3"/>
<polygon points="263 17 271 13 271 21"/>
<polygon points="263 17 255 13 255 21"/></svg><p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<ul>
<li><a href="#Update1" title="Update1">Update1</a></li>
</ul>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><a name="DeleteWhere">DeleteWhere:</a></p><svg xmlns="http://www.w3.org/2000/svg" width="303" height="37">
<polygon points="9 17 1 13 1 21"/>
<polygon points="17 17 9 13 9 21"/>
<rect x="31" y="3" width="124" height="32" rx="10"/>
<rect x="29" y="1" width="124" height="32" class="terminal" rx="10"/>
<text class="terminal" x="39" y="21">DELETE WHERE</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#QuadPattern" xlink:title="QuadPattern">
<rect x="175" y="3" width="100" height="32"/>
<rect x="173" y="1" width="100" height="32" class="nonterminal"/>
<text class="nonterminal" x="183" y="21">QuadPattern</text></a><path class="line" d="m17 17 h2 m0 0 h10 m124 0 h10 m0 0 h10 m100 0 h10 m3 0 h-3"/>
<polygon points="293 17 301 13 301 21"/>
<polygon points="293 17 285 13 285 21"/></svg><p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<ul>
<li><a href="#Update1" title="Update1">Update1</a></li>
</ul>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><a name="Modify">Modify:</a></p><svg xmlns="http://www.w3.org/2000/svg" width="945" height="147">
<polygon points="9 51 1 47 1 55"/>
<polygon points="17 51 9 47 9 55"/>
<rect x="51" y="69" width="58" height="32" rx="10"/>
<rect x="49" y="67" width="58" height="32" class="terminal" rx="10"/>
<text class="terminal" x="59" y="87">WITH</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#iri" xlink:title="iri">
<rect x="129" y="69" width="32" height="32"/>
<rect x="127" y="67" width="32" height="32" class="nonterminal"/>
<text class="nonterminal" x="137" y="87">iri</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#DeleteClause" xlink:title="DeleteClause">
<rect x="221" y="37" width="104" height="32"/>
<rect x="219" y="35" width="104" height="32" class="nonterminal"/>
<text class="nonterminal" x="229" y="55">DeleteClause</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#InsertClause" xlink:title="InsertClause">
<rect x="365" y="69" width="100" height="32"/>
<rect x="363" y="67" width="100" height="32" class="nonterminal"/>
<text class="nonterminal" x="373" y="87">InsertClause</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#InsertClause" xlink:title="InsertClause">
<rect x="221" y="113" width="100" height="32"/>
<rect x="219" y="111" width="100" height="32" class="nonterminal"/>
<text class="nonterminal" x="229" y="131">InsertClause</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#UsingClause" xlink:title="UsingClause">
<rect x="545" y="3" width="98" height="32"/>
<rect x="543" y="1" width="98" height="32" class="nonterminal"/>
<text class="nonterminal" x="553" y="21">UsingClause</text></a><rect x="683" y="37" width="70" height="32" rx="10"/>
<rect x="681" y="35" width="70" height="32" class="terminal" rx="10"/>
<text class="terminal" x="691" y="55">WHERE</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#GroupGraphPattern" xlink:title="GroupGraphPattern">
<rect x="773" y="37" width="144" height="32"/>
<rect x="771" y="35" width="144" height="32" class="nonterminal"/>
<text class="nonterminal" x="781" y="55">GroupGraphPattern</text></a><path class="line" d="m17 51 h2 m20 0 h10 m0 0 h120 m-150 0 h20 m130 0 h20 m-170 0 q10 0 10 10 m150 0 q0 -10 10 -10 m-160 10 v12 m150 0 v-12 m-150 12 q0 10 10 10 m130 0 q10 0 10 -10 m-140 10 h10 m58 0 h10 m0 0 h10 m32 0 h10 m40 -32 h10 m104 0 h10 m20 0 h10 m0 0 h110 m-140 0 h20 m120 0 h20 m-160 0 q10 0 10 10 m140 0 q0 -10 10 -10 m-150 10 v12 m140 0 v-12 m-140 12 q0 10 10 10 m120 0 q10 0 10 -10 m-130 10 h10 m100 0 h10 m-284 -32 h20 m284 0 h20 m-324 0 q10 0 10 10 m304 0 q0 -10 10 -10 m-314 10 v56 m304 0 v-56 m-304 56 q0 10 10 10 m284 0 q10 0 10 -10 m-294 10 h10 m100 0 h10 m0 0 h164 m40 -76 h10 m0 0 h108 m-138 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -14 q0 -10 10 -10 m118 34 l20 0 m-20 0 q10 0 10 -10 l0 -14 q0 -10 -10 -10 m-118 0 h10 m98 0 h10 m20 34 h10 m70 0 h10 m0 0 h10 m144 0 h10 m3 0 h-3"/>
<polygon points="935 51 943 47 943 55"/>
<polygon points="935 51 927 47 927 55"/></svg><p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<ul>
<li><a href="#Update1" title="Update1">Update1</a></li>