RCRSProto_pb2.py 51.9 KB
Newer Older
Juon Kawakami's avatar
init  
Juon Kawakami committed
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
# -*- coding: utf-8 -*-
# Generated by the protocol buffer compiler.  DO NOT EDIT!
# source: RCRSProto.proto
"""Generated protocol buffer code."""
from google.protobuf import descriptor as _descriptor
from google.protobuf import message as _message
from google.protobuf import reflection as _reflection
from google.protobuf import symbol_database as _symbol_database
# @@protoc_insertion_point(imports)

_sym_db = _symbol_database.Default()




DESCRIPTOR = _descriptor.FileDescriptor(
  name='RCRSProto.proto',
  package='',
  syntax='proto3',
  serialized_options=b'\n\035rescuecore2.messages.protobufB\tRCRSProto',
  create_key=_descriptor._internal_create_key,
  serialized_pb=b'\n\x0fRCRSProto.proto\"\x99\x01\n\x0cMessageProto\x12\x0b\n\x03urn\x18\x01 \x01(\x05\x12\x31\n\ncomponents\x18\x02 \x03(\x0b\x32\x1d.MessageProto.ComponentsEntry\x1aI\n\x0f\x43omponentsEntry\x12\x0b\n\x03key\x18\x01 \x01(\x05\x12%\n\x05value\x18\x02 \x01(\x0b\x32\x16.MessageComponentProto:\x02\x38\x01\"3\n\x10MessageListProto\x12\x1f\n\x08\x63ommands\x18\x01 \x03(\x0b\x32\r.MessageProto\"\xc2\x03\n\x15MessageComponentProto\x12$\n\tchangeSet\x18\x01 \x01(\x0b\x32\x0f.ChangeSetProtoH\x00\x12(\n\x0b\x63ommandList\x18\x02 \x01(\x0b\x32\x11.MessageListProtoH\x00\x12\x1e\n\x06\x63onfig\x18\x03 \x01(\x0b\x32\x0c.ConfigProtoH\x00\x12\x1e\n\x06\x65ntity\x18\x04 \x01(\x0b\x32\x0c.EntityProtoH\x00\x12\x12\n\x08\x65ntityID\x18\x05 \x01(\x05H\x00\x12%\n\x0c\x65ntityIDList\x18\x06 \x01(\x0b\x32\r.IntListProtoH\x00\x12&\n\nentityList\x18\x07 \x01(\x0b\x32\x10.EntityListProtoH\x00\x12$\n\tfloatList\x18\x08 \x01(\x0b\x32\x0f.FloatListProtoH\x00\x12\x12\n\x08intValue\x18\t \x01(\x05H\x00\x12 \n\x07intList\x18\n \x01(\x0b\x32\r.IntListProtoH\x00\x12\x11\n\x07rawData\x18\x0b \x01(\x0cH\x00\x12\x15\n\x0bstringValue\x18\x0c \x01(\tH\x00\x12#\n\nstringList\x18\r \x01(\x0b\x32\r.StrListProtoH\x00\x42\x0b\n\tcomponent\"\x1e\n\x0cStrListProto\x12\x0e\n\x06values\x18\x01 \x03(\t\"\x1e\n\x0cIntListProto\x12\x0e\n\x06values\x18\x01 \x03(\x05\" \n\x0e\x46loatListProto\x12\x0e\n\x06values\x18\x01 \x03(\x02\"/\n\x0eIntMatrixProto\x12\x1d\n\x06values\x18\x01 \x03(\x0b\x32\r.IntListProto\"\x88\x02\n\nValueProto\x12\x0f\n\x07\x64\x65\x66ined\x18\x01 \x01(\x08\x12\x12\n\x08intValue\x18\x02 \x01(\x05H\x00\x12\x13\n\tboolValue\x18\x03 \x01(\x08H\x00\x12\x15\n\x0b\x64oubleValue\x18\x04 \x01(\x01H\x00\x12\x12\n\x08\x62yteList\x18\x05 \x01(\x0cH\x00\x12 \n\x07intList\x18\x06 \x01(\x0b\x32\r.IntListProtoH\x00\x12$\n\tintMatrix\x18\x07 \x01(\x0b\x32\x0f.IntMatrixProtoH\x00\x12\"\n\x08\x65\x64geList\x18\x08 \x01(\x0b\x32\x0e.EdgeListProtoH\x00\x12 \n\x07point2D\x18\t \x01(\x0b\x32\r.Point2DProtoH\x00\x42\x07\n\x05value\"\x98\x02\n\rPropertyProto\x12\x0b\n\x03urn\x18\x01 \x01(\x05\x12\x0f\n\x07\x64\x65\x66ined\x18\x02 \x01(\x08\x12\x12\n\x08intValue\x18\x03 \x01(\x05H\x00\x12\x13\n\tboolValue\x18\x04 \x01(\x08H\x00\x12\x15\n\x0b\x64oubleValue\x18\x05 \x01(\x01H\x00\x12\x12\n\x08\x62yteList\x18\x06 \x01(\x0cH\x00\x12 \n\x07intList\x18\x07 \x01(\x0b\x32\r.IntListProtoH\x00\x12$\n\tintMatrix\x18\x08 \x01(\x0b\x32\x0f.IntMatrixProtoH\x00\x12\"\n\x08\x65\x64geList\x18\t \x01(\x0b\x32\x0e.EdgeListProtoH\x00\x12 \n\x07point2D\x18\n \x01(\x0b\x32\r.Point2DProtoH\x00\x42\x07\n\x05value\"$\n\x0cPoint2DProto\x12\t\n\x01X\x18\x01 \x01(\x01\x12\t\n\x01Y\x18\x02 \x01(\x01\"P\n\x0b\x45ntityProto\x12\x0b\n\x03urn\x18\x01 \x01(\x05\x12\x10\n\x08\x65ntityID\x18\x02 \x01(\x05\x12\"\n\nproperties\x18\x03 \x03(\x0b\x32\x0e.PropertyProto\"1\n\x0f\x45ntityListProto\x12\x1e\n\x08\x65ntities\x18\x01 \x03(\x0b\x32\x0c.EntityProto\"`\n\x0b\x43onfigProto\x12$\n\x04\x64\x61ta\x18\x01 \x03(\x0b\x32\x16.ConfigProto.DataEntry\x1a+\n\tDataEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"*\n\rEdgeListProto\x12\x19\n\x05\x65\x64ges\x18\x01 \x03(\x0b\x32\n.EdgeProto\"Z\n\tEdgeProto\x12\x0e\n\x06startX\x18\x01 \x01(\x05\x12\x0e\n\x06startY\x18\x02 \x01(\x05\x12\x0c\n\x04\x65ndX\x18\x03 \x01(\x05\x12\x0c\n\x04\x65ndY\x18\x04 \x01(\x05\x12\x11\n\tneighbour\x18\x05 \x01(\x05\"\xad\x01\n\x0e\x43hangeSetProto\x12\x32\n\x07\x63hanges\x18\x01 \x03(\x0b\x32!.ChangeSetProto.EntityChangeProto\x12\x0f\n\x07\x64\x65letes\x18\x02 \x03(\x05\x1aV\n\x11\x45ntityChangeProto\x12\x10\n\x08\x65ntityID\x18\x01 \x01(\x05\x12\x0b\n\x03urn\x18\x02 \x01(\x05\x12\"\n\nproperties\x18\x03 \x03(\x0b\x32\x0e.PropertyProtoB*\n\x1drescuecore2.messages.protobufB\tRCRSProtob\x06proto3'
)




_MESSAGEPROTO_COMPONENTSENTRY = _descriptor.Descriptor(
  name='ComponentsEntry',
  full_name='MessageProto.ComponentsEntry',
  filename=None,
  file=DESCRIPTOR,
  containing_type=None,
  create_key=_descriptor._internal_create_key,
  fields=[
    _descriptor.FieldDescriptor(
      name='key', full_name='MessageProto.ComponentsEntry.key', index=0,
      number=1, type=5, cpp_type=1, label=1,
      has_default_value=False, default_value=0,
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
    _descriptor.FieldDescriptor(
      name='value', full_name='MessageProto.ComponentsEntry.value', index=1,
      number=2, type=11, cpp_type=10, label=1,
      has_default_value=False, default_value=None,
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
  ],
  extensions=[
  ],
  nested_types=[],
  enum_types=[
  ],
  serialized_options=b'8\001',
  is_extendable=False,
  syntax='proto3',
  extension_ranges=[],
  oneofs=[
  ],
  serialized_start=100,
  serialized_end=173,
)

_MESSAGEPROTO = _descriptor.Descriptor(
  name='MessageProto',
  full_name='MessageProto',
  filename=None,
  file=DESCRIPTOR,
  containing_type=None,
  create_key=_descriptor._internal_create_key,
  fields=[
    _descriptor.FieldDescriptor(
      name='urn', full_name='MessageProto.urn', index=0,
      number=1, type=5, cpp_type=1, label=1,
      has_default_value=False, default_value=0,
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
    _descriptor.FieldDescriptor(
      name='components', full_name='MessageProto.components', index=1,
      number=2, type=11, cpp_type=10, label=3,
      has_default_value=False, default_value=[],
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
  ],
  extensions=[
  ],
  nested_types=[_MESSAGEPROTO_COMPONENTSENTRY, ],
  enum_types=[
  ],
  serialized_options=None,
  is_extendable=False,
  syntax='proto3',
  extension_ranges=[],
  oneofs=[
  ],
  serialized_start=20,
  serialized_end=173,
)


_MESSAGELISTPROTO = _descriptor.Descriptor(
  name='MessageListProto',
  full_name='MessageListProto',
  filename=None,
  file=DESCRIPTOR,
  containing_type=None,
  create_key=_descriptor._internal_create_key,
  fields=[
    _descriptor.FieldDescriptor(
      name='commands', full_name='MessageListProto.commands', index=0,
      number=1, type=11, cpp_type=10, label=3,
      has_default_value=False, default_value=[],
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
  ],
  extensions=[
  ],
  nested_types=[],
  enum_types=[
  ],
  serialized_options=None,
  is_extendable=False,
  syntax='proto3',
  extension_ranges=[],
  oneofs=[
  ],
  serialized_start=175,
  serialized_end=226,
)


_MESSAGECOMPONENTPROTO = _descriptor.Descriptor(
  name='MessageComponentProto',
  full_name='MessageComponentProto',
  filename=None,
  file=DESCRIPTOR,
  containing_type=None,
  create_key=_descriptor._internal_create_key,
  fields=[
    _descriptor.FieldDescriptor(
      name='changeSet', full_name='MessageComponentProto.changeSet', index=0,
      number=1, type=11, cpp_type=10, label=1,
      has_default_value=False, default_value=None,
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
    _descriptor.FieldDescriptor(
      name='commandList', full_name='MessageComponentProto.commandList', index=1,
      number=2, type=11, cpp_type=10, label=1,
      has_default_value=False, default_value=None,
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
    _descriptor.FieldDescriptor(
      name='config', full_name='MessageComponentProto.config', index=2,
      number=3, type=11, cpp_type=10, label=1,
      has_default_value=False, default_value=None,
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
    _descriptor.FieldDescriptor(
      name='entity', full_name='MessageComponentProto.entity', index=3,
      number=4, type=11, cpp_type=10, label=1,
      has_default_value=False, default_value=None,
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
    _descriptor.FieldDescriptor(
      name='entityID', full_name='MessageComponentProto.entityID', index=4,
      number=5, type=5, cpp_type=1, label=1,
      has_default_value=False, default_value=0,
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
    _descriptor.FieldDescriptor(
      name='entityIDList', full_name='MessageComponentProto.entityIDList', index=5,
      number=6, type=11, cpp_type=10, label=1,
      has_default_value=False, default_value=None,
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
    _descriptor.FieldDescriptor(
      name='entityList', full_name='MessageComponentProto.entityList', index=6,
      number=7, type=11, cpp_type=10, label=1,
      has_default_value=False, default_value=None,
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
    _descriptor.FieldDescriptor(
      name='floatList', full_name='MessageComponentProto.floatList', index=7,
      number=8, type=11, cpp_type=10, label=1,
      has_default_value=False, default_value=None,
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
    _descriptor.FieldDescriptor(
      name='intValue', full_name='MessageComponentProto.intValue', index=8,
      number=9, type=5, cpp_type=1, label=1,
      has_default_value=False, default_value=0,
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
    _descriptor.FieldDescriptor(
      name='intList', full_name='MessageComponentProto.intList', index=9,
      number=10, type=11, cpp_type=10, label=1,
      has_default_value=False, default_value=None,
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
    _descriptor.FieldDescriptor(
      name='rawData', full_name='MessageComponentProto.rawData', index=10,
      number=11, type=12, cpp_type=9, label=1,
      has_default_value=False, default_value=b"",
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
    _descriptor.FieldDescriptor(
      name='stringValue', full_name='MessageComponentProto.stringValue', index=11,
      number=12, type=9, cpp_type=9, label=1,
      has_default_value=False, default_value=b"".decode('utf-8'),
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
    _descriptor.FieldDescriptor(
      name='stringList', full_name='MessageComponentProto.stringList', index=12,
      number=13, type=11, cpp_type=10, label=1,
      has_default_value=False, default_value=None,
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
  ],
  extensions=[
  ],
  nested_types=[],
  enum_types=[
  ],
  serialized_options=None,
  is_extendable=False,
  syntax='proto3',
  extension_ranges=[],
  oneofs=[
    _descriptor.OneofDescriptor(
      name='component', full_name='MessageComponentProto.component',
      index=0, containing_type=None,
      create_key=_descriptor._internal_create_key,
    fields=[]),
  ],
  serialized_start=229,
  serialized_end=679,
)


_STRLISTPROTO = _descriptor.Descriptor(
  name='StrListProto',
  full_name='StrListProto',
  filename=None,
  file=DESCRIPTOR,
  containing_type=None,
  create_key=_descriptor._internal_create_key,
  fields=[
    _descriptor.FieldDescriptor(
      name='values', full_name='StrListProto.values', index=0,
      number=1, type=9, cpp_type=9, label=3,
      has_default_value=False, default_value=[],
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
  ],
  extensions=[
  ],
  nested_types=[],
  enum_types=[
  ],
  serialized_options=None,
  is_extendable=False,
  syntax='proto3',
  extension_ranges=[],
  oneofs=[
  ],
  serialized_start=681,
  serialized_end=711,
)


_INTLISTPROTO = _descriptor.Descriptor(
  name='IntListProto',
  full_name='IntListProto',
  filename=None,
  file=DESCRIPTOR,
  containing_type=None,
  create_key=_descriptor._internal_create_key,
  fields=[
    _descriptor.FieldDescriptor(
      name='values', full_name='IntListProto.values', index=0,
      number=1, type=5, cpp_type=1, label=3,
      has_default_value=False, default_value=[],
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
  ],
  extensions=[
  ],
  nested_types=[],
  enum_types=[
  ],
  serialized_options=None,
  is_extendable=False,
  syntax='proto3',
  extension_ranges=[],
  oneofs=[
  ],
  serialized_start=713,
  serialized_end=743,
)


_FLOATLISTPROTO = _descriptor.Descriptor(
  name='FloatListProto',
  full_name='FloatListProto',
  filename=None,
  file=DESCRIPTOR,
  containing_type=None,
  create_key=_descriptor._internal_create_key,
  fields=[
    _descriptor.FieldDescriptor(
      name='values', full_name='FloatListProto.values', index=0,
      number=1, type=2, cpp_type=6, label=3,
      has_default_value=False, default_value=[],
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
  ],
  extensions=[
  ],
  nested_types=[],
  enum_types=[
  ],
  serialized_options=None,
  is_extendable=False,
  syntax='proto3',
  extension_ranges=[],
  oneofs=[
  ],
  serialized_start=745,
  serialized_end=777,
)


_INTMATRIXPROTO = _descriptor.Descriptor(
  name='IntMatrixProto',
  full_name='IntMatrixProto',
  filename=None,
  file=DESCRIPTOR,
  containing_type=None,
  create_key=_descriptor._internal_create_key,
  fields=[
    _descriptor.FieldDescriptor(
      name='values', full_name='IntMatrixProto.values', index=0,
      number=1, type=11, cpp_type=10, label=3,
      has_default_value=False, default_value=[],
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
  ],
  extensions=[
  ],
  nested_types=[],
  enum_types=[
  ],
  serialized_options=None,
  is_extendable=False,
  syntax='proto3',
  extension_ranges=[],
  oneofs=[
  ],
  serialized_start=779,
  serialized_end=826,
)


_VALUEPROTO = _descriptor.Descriptor(
  name='ValueProto',
  full_name='ValueProto',
  filename=None,
  file=DESCRIPTOR,
  containing_type=None,
  create_key=_descriptor._internal_create_key,
  fields=[
    _descriptor.FieldDescriptor(
      name='defined', full_name='ValueProto.defined', index=0,
      number=1, type=8, cpp_type=7, label=1,
      has_default_value=False, default_value=False,
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
    _descriptor.FieldDescriptor(
      name='intValue', full_name='ValueProto.intValue', index=1,
      number=2, type=5, cpp_type=1, label=1,
      has_default_value=False, default_value=0,
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
    _descriptor.FieldDescriptor(
      name='boolValue', full_name='ValueProto.boolValue', index=2,
      number=3, type=8, cpp_type=7, label=1,
      has_default_value=False, default_value=False,
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
    _descriptor.FieldDescriptor(
      name='doubleValue', full_name='ValueProto.doubleValue', index=3,
      number=4, type=1, cpp_type=5, label=1,
      has_default_value=False, default_value=float(0),
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
    _descriptor.FieldDescriptor(
      name='byteList', full_name='ValueProto.byteList', index=4,
      number=5, type=12, cpp_type=9, label=1,
      has_default_value=False, default_value=b"",
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
    _descriptor.FieldDescriptor(
      name='intList', full_name='ValueProto.intList', index=5,
      number=6, type=11, cpp_type=10, label=1,
      has_default_value=False, default_value=None,
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
    _descriptor.FieldDescriptor(
      name='intMatrix', full_name='ValueProto.intMatrix', index=6,
      number=7, type=11, cpp_type=10, label=1,
      has_default_value=False, default_value=None,
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
    _descriptor.FieldDescriptor(
      name='edgeList', full_name='ValueProto.edgeList', index=7,
      number=8, type=11, cpp_type=10, label=1,
      has_default_value=False, default_value=None,
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
    _descriptor.FieldDescriptor(
      name='point2D', full_name='ValueProto.point2D', index=8,
      number=9, type=11, cpp_type=10, label=1,
      has_default_value=False, default_value=None,
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
  ],
  extensions=[
  ],
  nested_types=[],
  enum_types=[
  ],
  serialized_options=None,
  is_extendable=False,
  syntax='proto3',
  extension_ranges=[],
  oneofs=[
    _descriptor.OneofDescriptor(
      name='value', full_name='ValueProto.value',
      index=0, containing_type=None,
      create_key=_descriptor._internal_create_key,
    fields=[]),
  ],
  serialized_start=829,
  serialized_end=1093,
)


_PROPERTYPROTO = _descriptor.Descriptor(
  name='PropertyProto',
  full_name='PropertyProto',
  filename=None,
  file=DESCRIPTOR,
  containing_type=None,
  create_key=_descriptor._internal_create_key,
  fields=[
    _descriptor.FieldDescriptor(
      name='urn', full_name='PropertyProto.urn', index=0,
      number=1, type=5, cpp_type=1, label=1,
      has_default_value=False, default_value=0,
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
    _descriptor.FieldDescriptor(
      name='defined', full_name='PropertyProto.defined', index=1,
      number=2, type=8, cpp_type=7, label=1,
      has_default_value=False, default_value=False,
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
    _descriptor.FieldDescriptor(
      name='intValue', full_name='PropertyProto.intValue', index=2,
      number=3, type=5, cpp_type=1, label=1,
      has_default_value=False, default_value=0,
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
    _descriptor.FieldDescriptor(
      name='boolValue', full_name='PropertyProto.boolValue', index=3,
      number=4, type=8, cpp_type=7, label=1,
      has_default_value=False, default_value=False,
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
    _descriptor.FieldDescriptor(
      name='doubleValue', full_name='PropertyProto.doubleValue', index=4,
      number=5, type=1, cpp_type=5, label=1,
      has_default_value=False, default_value=float(0),
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
    _descriptor.FieldDescriptor(
      name='byteList', full_name='PropertyProto.byteList', index=5,
      number=6, type=12, cpp_type=9, label=1,
      has_default_value=False, default_value=b"",
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
    _descriptor.FieldDescriptor(
      name='intList', full_name='PropertyProto.intList', index=6,
      number=7, type=11, cpp_type=10, label=1,
      has_default_value=False, default_value=None,
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
    _descriptor.FieldDescriptor(
      name='intMatrix', full_name='PropertyProto.intMatrix', index=7,
      number=8, type=11, cpp_type=10, label=1,
      has_default_value=False, default_value=None,
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
    _descriptor.FieldDescriptor(
      name='edgeList', full_name='PropertyProto.edgeList', index=8,
      number=9, type=11, cpp_type=10, label=1,
      has_default_value=False, default_value=None,
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
    _descriptor.FieldDescriptor(
      name='point2D', full_name='PropertyProto.point2D', index=9,
      number=10, type=11, cpp_type=10, label=1,
      has_default_value=False, default_value=None,
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
  ],
  extensions=[
  ],
  nested_types=[],
  enum_types=[
  ],
  serialized_options=None,
  is_extendable=False,
  syntax='proto3',
  extension_ranges=[],
  oneofs=[
    _descriptor.OneofDescriptor(
      name='value', full_name='PropertyProto.value',
      index=0, containing_type=None,
      create_key=_descriptor._internal_create_key,
    fields=[]),
  ],
  serialized_start=1096,
  serialized_end=1376,
)


_POINT2DPROTO = _descriptor.Descriptor(
  name='Point2DProto',
  full_name='Point2DProto',
  filename=None,
  file=DESCRIPTOR,
  containing_type=None,
  create_key=_descriptor._internal_create_key,
  fields=[
    _descriptor.FieldDescriptor(
      name='X', full_name='Point2DProto.X', index=0,
      number=1, type=1, cpp_type=5, label=1,
      has_default_value=False, default_value=float(0),
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
    _descriptor.FieldDescriptor(
      name='Y', full_name='Point2DProto.Y', index=1,
      number=2, type=1, cpp_type=5, label=1,
      has_default_value=False, default_value=float(0),
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
  ],
  extensions=[
  ],
  nested_types=[],
  enum_types=[
  ],
  serialized_options=None,
  is_extendable=False,
  syntax='proto3',
  extension_ranges=[],
  oneofs=[
  ],
  serialized_start=1378,
  serialized_end=1414,
)


_ENTITYPROTO = _descriptor.Descriptor(
  name='EntityProto',
  full_name='EntityProto',
  filename=None,
  file=DESCRIPTOR,
  containing_type=None,
  create_key=_descriptor._internal_create_key,
  fields=[
    _descriptor.FieldDescriptor(
      name='urn', full_name='EntityProto.urn', index=0,
      number=1, type=5, cpp_type=1, label=1,
      has_default_value=False, default_value=0,
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
    _descriptor.FieldDescriptor(
      name='entityID', full_name='EntityProto.entityID', index=1,
      number=2, type=5, cpp_type=1, label=1,
      has_default_value=False, default_value=0,
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
    _descriptor.FieldDescriptor(
      name='properties', full_name='EntityProto.properties', index=2,
      number=3, type=11, cpp_type=10, label=3,
      has_default_value=False, default_value=[],
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
  ],
  extensions=[
  ],
  nested_types=[],
  enum_types=[
  ],
  serialized_options=None,
  is_extendable=False,
  syntax='proto3',
  extension_ranges=[],
  oneofs=[
  ],
  serialized_start=1416,
  serialized_end=1496,
)


_ENTITYLISTPROTO = _descriptor.Descriptor(
  name='EntityListProto',
  full_name='EntityListProto',
  filename=None,
  file=DESCRIPTOR,
  containing_type=None,
  create_key=_descriptor._internal_create_key,
  fields=[
    _descriptor.FieldDescriptor(
      name='entities', full_name='EntityListProto.entities', index=0,
      number=1, type=11, cpp_type=10, label=3,
      has_default_value=False, default_value=[],
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
  ],
  extensions=[
  ],
  nested_types=[],
  enum_types=[
  ],
  serialized_options=None,
  is_extendable=False,
  syntax='proto3',
  extension_ranges=[],
  oneofs=[
  ],
  serialized_start=1498,
  serialized_end=1547,
)


_CONFIGPROTO_DATAENTRY = _descriptor.Descriptor(
  name='DataEntry',
  full_name='ConfigProto.DataEntry',
  filename=None,
  file=DESCRIPTOR,
  containing_type=None,
  create_key=_descriptor._internal_create_key,
  fields=[
    _descriptor.FieldDescriptor(
      name='key', full_name='ConfigProto.DataEntry.key', index=0,
      number=1, type=9, cpp_type=9, label=1,
      has_default_value=False, default_value=b"".decode('utf-8'),
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
    _descriptor.FieldDescriptor(
      name='value', full_name='ConfigProto.DataEntry.value', index=1,
      number=2, type=9, cpp_type=9, label=1,
      has_default_value=False, default_value=b"".decode('utf-8'),
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
  ],
  extensions=[
  ],
  nested_types=[],
  enum_types=[
  ],
  serialized_options=b'8\001',
  is_extendable=False,
  syntax='proto3',
  extension_ranges=[],
  oneofs=[
  ],
  serialized_start=1602,
  serialized_end=1645,
)

_CONFIGPROTO = _descriptor.Descriptor(
  name='ConfigProto',
  full_name='ConfigProto',
  filename=None,
  file=DESCRIPTOR,
  containing_type=None,
  create_key=_descriptor._internal_create_key,
  fields=[
    _descriptor.FieldDescriptor(
      name='data', full_name='ConfigProto.data', index=0,
      number=1, type=11, cpp_type=10, label=3,
      has_default_value=False, default_value=[],
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
  ],
  extensions=[
  ],
  nested_types=[_CONFIGPROTO_DATAENTRY, ],
  enum_types=[
  ],
  serialized_options=None,
  is_extendable=False,
  syntax='proto3',
  extension_ranges=[],
  oneofs=[
  ],
  serialized_start=1549,
  serialized_end=1645,
)


_EDGELISTPROTO = _descriptor.Descriptor(
  name='EdgeListProto',
  full_name='EdgeListProto',
  filename=None,
  file=DESCRIPTOR,
  containing_type=None,
  create_key=_descriptor._internal_create_key,
  fields=[
    _descriptor.FieldDescriptor(
      name='edges', full_name='EdgeListProto.edges', index=0,
      number=1, type=11, cpp_type=10, label=3,
      has_default_value=False, default_value=[],
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
  ],
  extensions=[
  ],
  nested_types=[],
  enum_types=[
  ],
  serialized_options=None,
  is_extendable=False,
  syntax='proto3',
  extension_ranges=[],
  oneofs=[
  ],
  serialized_start=1647,
  serialized_end=1689,
)


_EDGEPROTO = _descriptor.Descriptor(
  name='EdgeProto',
  full_name='EdgeProto',
  filename=None,
  file=DESCRIPTOR,
  containing_type=None,
  create_key=_descriptor._internal_create_key,
  fields=[
    _descriptor.FieldDescriptor(
      name='startX', full_name='EdgeProto.startX', index=0,
      number=1, type=5, cpp_type=1, label=1,
      has_default_value=False, default_value=0,
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
    _descriptor.FieldDescriptor(
      name='startY', full_name='EdgeProto.startY', index=1,
      number=2, type=5, cpp_type=1, label=1,
      has_default_value=False, default_value=0,
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
    _descriptor.FieldDescriptor(
      name='endX', full_name='EdgeProto.endX', index=2,
      number=3, type=5, cpp_type=1, label=1,
      has_default_value=False, default_value=0,
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
    _descriptor.FieldDescriptor(
      name='endY', full_name='EdgeProto.endY', index=3,
      number=4, type=5, cpp_type=1, label=1,
      has_default_value=False, default_value=0,
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
    _descriptor.FieldDescriptor(
      name='neighbour', full_name='EdgeProto.neighbour', index=4,
      number=5, type=5, cpp_type=1, label=1,
      has_default_value=False, default_value=0,
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
  ],
  extensions=[
  ],
  nested_types=[],
  enum_types=[
  ],
  serialized_options=None,
  is_extendable=False,
  syntax='proto3',
  extension_ranges=[],
  oneofs=[
  ],
  serialized_start=1691,
  serialized_end=1781,
)


_CHANGESETPROTO_ENTITYCHANGEPROTO = _descriptor.Descriptor(
  name='EntityChangeProto',
  full_name='ChangeSetProto.EntityChangeProto',
  filename=None,
  file=DESCRIPTOR,
  containing_type=None,
  create_key=_descriptor._internal_create_key,
  fields=[
    _descriptor.FieldDescriptor(
      name='entityID', full_name='ChangeSetProto.EntityChangeProto.entityID', index=0,
      number=1, type=5, cpp_type=1, label=1,
      has_default_value=False, default_value=0,
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
    _descriptor.FieldDescriptor(
      name='urn', full_name='ChangeSetProto.EntityChangeProto.urn', index=1,
      number=2, type=5, cpp_type=1, label=1,
      has_default_value=False, default_value=0,
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
    _descriptor.FieldDescriptor(
      name='properties', full_name='ChangeSetProto.EntityChangeProto.properties', index=2,
      number=3, type=11, cpp_type=10, label=3,
      has_default_value=False, default_value=[],
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
  ],
  extensions=[
  ],
  nested_types=[],
  enum_types=[
  ],
  serialized_options=None,
  is_extendable=False,
  syntax='proto3',
  extension_ranges=[],
  oneofs=[
  ],
  serialized_start=1871,
  serialized_end=1957,
)

_CHANGESETPROTO = _descriptor.Descriptor(
  name='ChangeSetProto',
  full_name='ChangeSetProto',
  filename=None,
  file=DESCRIPTOR,
  containing_type=None,
  create_key=_descriptor._internal_create_key,
  fields=[
    _descriptor.FieldDescriptor(
      name='changes', full_name='ChangeSetProto.changes', index=0,
      number=1, type=11, cpp_type=10, label=3,
      has_default_value=False, default_value=[],
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
    _descriptor.FieldDescriptor(
      name='deletes', full_name='ChangeSetProto.deletes', index=1,
      number=2, type=5, cpp_type=1, label=3,
      has_default_value=False, default_value=[],
      message_type=None, enum_type=None, containing_type=None,
      is_extension=False, extension_scope=None,
      serialized_options=None, file=DESCRIPTOR,  create_key=_descriptor._internal_create_key),
  ],
  extensions=[
  ],
  nested_types=[_CHANGESETPROTO_ENTITYCHANGEPROTO, ],
  enum_types=[
  ],
  serialized_options=None,
  is_extendable=False,
  syntax='proto3',
  extension_ranges=[],
  oneofs=[
  ],
  serialized_start=1784,
  serialized_end=1957,
)

_MESSAGEPROTO_COMPONENTSENTRY.fields_by_name['value'].message_type = _MESSAGECOMPONENTPROTO
_MESSAGEPROTO_COMPONENTSENTRY.containing_type = _MESSAGEPROTO
_MESSAGEPROTO.fields_by_name['components'].message_type = _MESSAGEPROTO_COMPONENTSENTRY
_MESSAGELISTPROTO.fields_by_name['commands'].message_type = _MESSAGEPROTO
_MESSAGECOMPONENTPROTO.fields_by_name['changeSet'].message_type = _CHANGESETPROTO
_MESSAGECOMPONENTPROTO.fields_by_name['commandList'].message_type = _MESSAGELISTPROTO
_MESSAGECOMPONENTPROTO.fields_by_name['config'].message_type = _CONFIGPROTO
_MESSAGECOMPONENTPROTO.fields_by_name['entity'].message_type = _ENTITYPROTO
_MESSAGECOMPONENTPROTO.fields_by_name['entityIDList'].message_type = _INTLISTPROTO
_MESSAGECOMPONENTPROTO.fields_by_name['entityList'].message_type = _ENTITYLISTPROTO
_MESSAGECOMPONENTPROTO.fields_by_name['floatList'].message_type = _FLOATLISTPROTO
_MESSAGECOMPONENTPROTO.fields_by_name['intList'].message_type = _INTLISTPROTO
_MESSAGECOMPONENTPROTO.fields_by_name['stringList'].message_type = _STRLISTPROTO
_MESSAGECOMPONENTPROTO.oneofs_by_name['component'].fields.append(
  _MESSAGECOMPONENTPROTO.fields_by_name['changeSet'])
_MESSAGECOMPONENTPROTO.fields_by_name['changeSet'].containing_oneof = _MESSAGECOMPONENTPROTO.oneofs_by_name['component']
_MESSAGECOMPONENTPROTO.oneofs_by_name['component'].fields.append(
  _MESSAGECOMPONENTPROTO.fields_by_name['commandList'])
_MESSAGECOMPONENTPROTO.fields_by_name['commandList'].containing_oneof = _MESSAGECOMPONENTPROTO.oneofs_by_name['component']
_MESSAGECOMPONENTPROTO.oneofs_by_name['component'].fields.append(
  _MESSAGECOMPONENTPROTO.fields_by_name['config'])
_MESSAGECOMPONENTPROTO.fields_by_name['config'].containing_oneof = _MESSAGECOMPONENTPROTO.oneofs_by_name['component']
_MESSAGECOMPONENTPROTO.oneofs_by_name['component'].fields.append(
  _MESSAGECOMPONENTPROTO.fields_by_name['entity'])
_MESSAGECOMPONENTPROTO.fields_by_name['entity'].containing_oneof = _MESSAGECOMPONENTPROTO.oneofs_by_name['component']
_MESSAGECOMPONENTPROTO.oneofs_by_name['component'].fields.append(
  _MESSAGECOMPONENTPROTO.fields_by_name['entityID'])
_MESSAGECOMPONENTPROTO.fields_by_name['entityID'].containing_oneof = _MESSAGECOMPONENTPROTO.oneofs_by_name['component']
_MESSAGECOMPONENTPROTO.oneofs_by_name['component'].fields.append(
  _MESSAGECOMPONENTPROTO.fields_by_name['entityIDList'])
_MESSAGECOMPONENTPROTO.fields_by_name['entityIDList'].containing_oneof = _MESSAGECOMPONENTPROTO.oneofs_by_name['component']
_MESSAGECOMPONENTPROTO.oneofs_by_name['component'].fields.append(
  _MESSAGECOMPONENTPROTO.fields_by_name['entityList'])
_MESSAGECOMPONENTPROTO.fields_by_name['entityList'].containing_oneof = _MESSAGECOMPONENTPROTO.oneofs_by_name['component']
_MESSAGECOMPONENTPROTO.oneofs_by_name['component'].fields.append(
  _MESSAGECOMPONENTPROTO.fields_by_name['floatList'])
_MESSAGECOMPONENTPROTO.fields_by_name['floatList'].containing_oneof = _MESSAGECOMPONENTPROTO.oneofs_by_name['component']
_MESSAGECOMPONENTPROTO.oneofs_by_name['component'].fields.append(
  _MESSAGECOMPONENTPROTO.fields_by_name['intValue'])
_MESSAGECOMPONENTPROTO.fields_by_name['intValue'].containing_oneof = _MESSAGECOMPONENTPROTO.oneofs_by_name['component']
_MESSAGECOMPONENTPROTO.oneofs_by_name['component'].fields.append(
  _MESSAGECOMPONENTPROTO.fields_by_name['intList'])
_MESSAGECOMPONENTPROTO.fields_by_name['intList'].containing_oneof = _MESSAGECOMPONENTPROTO.oneofs_by_name['component']
_MESSAGECOMPONENTPROTO.oneofs_by_name['component'].fields.append(
  _MESSAGECOMPONENTPROTO.fields_by_name['rawData'])
_MESSAGECOMPONENTPROTO.fields_by_name['rawData'].containing_oneof = _MESSAGECOMPONENTPROTO.oneofs_by_name['component']
_MESSAGECOMPONENTPROTO.oneofs_by_name['component'].fields.append(
  _MESSAGECOMPONENTPROTO.fields_by_name['stringValue'])
_MESSAGECOMPONENTPROTO.fields_by_name['stringValue'].containing_oneof = _MESSAGECOMPONENTPROTO.oneofs_by_name['component']
_MESSAGECOMPONENTPROTO.oneofs_by_name['component'].fields.append(
  _MESSAGECOMPONENTPROTO.fields_by_name['stringList'])
_MESSAGECOMPONENTPROTO.fields_by_name['stringList'].containing_oneof = _MESSAGECOMPONENTPROTO.oneofs_by_name['component']
_INTMATRIXPROTO.fields_by_name['values'].message_type = _INTLISTPROTO
_VALUEPROTO.fields_by_name['intList'].message_type = _INTLISTPROTO
_VALUEPROTO.fields_by_name['intMatrix'].message_type = _INTMATRIXPROTO
_VALUEPROTO.fields_by_name['edgeList'].message_type = _EDGELISTPROTO
_VALUEPROTO.fields_by_name['point2D'].message_type = _POINT2DPROTO
_VALUEPROTO.oneofs_by_name['value'].fields.append(
  _VALUEPROTO.fields_by_name['intValue'])
_VALUEPROTO.fields_by_name['intValue'].containing_oneof = _VALUEPROTO.oneofs_by_name['value']
For faster browsing, not all history is shown. View entire blame