Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(272)

Side by Side Diff: mojo/dart/packages/_mojo_for_test_only/lib/sample/sample_interfaces.mojom.dart

Issue 1753013002: Mojom runtime type info: New implementation for Dart. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: No changes to sha1s Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 library sample_interfaces_mojom; 5 library sample_interfaces_mojom;
6 import 'dart:async'; 6 import 'dart:async';
7 import 'dart:collection'; 7 import 'dart:collection';
8 import 'dart:typed_data';
8 import 'package:mojo/bindings.dart' as bindings; 9 import 'package:mojo/bindings.dart' as bindings;
9 import 'package:mojo/core.dart' as core; 10 import 'package:mojo/core.dart' as core;
10 import 'package:mojo/mojo/bindings/types/mojom_types.mojom.dart' as mojom_types; 11 import 'package:mojo/mojo/bindings/types/mojom_types.mojom.dart' as mojom_types;
11 import 'package:mojo/mojo/bindings/types/service_describer.mojom.dart' as servic e_describer; 12 import 'package:mojo/mojo/bindings/types/service_describer.mojom.dart' as servic e_describer;
12 const int kLong = 4405; 13 const int kLong = 4405;
13 14
14 class Enum extends bindings.MojoEnum { 15 class Enum extends bindings.MojoEnum {
15 static const Enum value = const Enum._(0); 16 static const Enum value = const Enum._(0);
16 17
17 const Enum._(int v) : super(v); 18 const Enum._(int v) : super(v);
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 case value: 50 case value:
50 return 'Enum.value'; 51 return 'Enum.value';
51 default: 52 default:
52 return null; 53 return null;
53 } 54 }
54 } 55 }
55 56
56 int toJson() => mojoEnumValue; 57 int toJson() => mojoEnumValue;
57 } 58 }
58 59
59 mojom_types.MojomEnum _sampleInterfacesEnum() {
60 return new mojom_types.MojomEnum()
61 ..declData = (new mojom_types.DeclarationData()
62 ..shortName = 'Enum'
63 ..fullIdentifier = 'sample.Enum')
64 ..values = <mojom_types.EnumValue>[
65 new mojom_types.EnumValue()
66 ..declData = (new mojom_types.DeclarationData()
67 ..shortName = 'Value')
68 ..enumTypeKey = 'sample_interfaces_Enum__'
69 ..intValue = 0,];
70 }
71
72 60
73 61
74 class _ProviderEchoStringParams extends bindings.Struct { 62 class _ProviderEchoStringParams extends bindings.Struct {
75 static const List<bindings.StructDataHeader> kVersions = const [ 63 static const List<bindings.StructDataHeader> kVersions = const [
76 const bindings.StructDataHeader(16, 0) 64 const bindings.StructDataHeader(16, 0)
77 ]; 65 ];
78 String a = null; 66 String a = null;
79 67
80 _ProviderEchoStringParams() : super(kVersions.last.size); 68 _ProviderEchoStringParams() : super(kVersions.last.size);
81 69
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 "a: $a" ")"; 123 "a: $a" ")";
136 } 124 }
137 125
138 Map toJson() { 126 Map toJson() {
139 Map map = new Map(); 127 Map map = new Map();
140 map["a"] = a; 128 map["a"] = a;
141 return map; 129 return map;
142 } 130 }
143 } 131 }
144 132
145 mojom_types.MojomStruct _sampleInterfacesProviderEchoStringParams() {
146 return new mojom_types.MojomStruct()
147 ..declData = (new mojom_types.DeclarationData()
148 ..shortName = 'ProviderEchoStringParams'
149 ..fullIdentifier = 'sample.Provider_EchoString_Params')
150 ..fields = <mojom_types.StructField>[
151 new mojom_types.StructField()
152 ..declData = (new mojom_types.DeclarationData()
153 ..shortName = 'A')
154 ..type = (new mojom_types.Type()
155 ..stringType = (new mojom_types.StringType())),];
156 }
157
158 133
159 class ProviderEchoStringResponseParams extends bindings.Struct { 134 class ProviderEchoStringResponseParams extends bindings.Struct {
160 static const List<bindings.StructDataHeader> kVersions = const [ 135 static const List<bindings.StructDataHeader> kVersions = const [
161 const bindings.StructDataHeader(16, 0) 136 const bindings.StructDataHeader(16, 0)
162 ]; 137 ];
163 String a = null; 138 String a = null;
164 139
165 ProviderEchoStringResponseParams() : super(kVersions.last.size); 140 ProviderEchoStringResponseParams() : super(kVersions.last.size);
166 141
167 static ProviderEchoStringResponseParams deserialize(bindings.Message message) { 142 static ProviderEchoStringResponseParams deserialize(bindings.Message message) {
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 "a: $a" ")"; 195 "a: $a" ")";
221 } 196 }
222 197
223 Map toJson() { 198 Map toJson() {
224 Map map = new Map(); 199 Map map = new Map();
225 map["a"] = a; 200 map["a"] = a;
226 return map; 201 return map;
227 } 202 }
228 } 203 }
229 204
230 mojom_types.MojomStruct _sampleInterfacesProviderEchoStringResponseParams() {
231 return new mojom_types.MojomStruct()
232 ..declData = (new mojom_types.DeclarationData()
233 ..shortName = 'ProviderEchoStringResponseParams'
234 ..fullIdentifier = 'sample.Provider_EchoString_ResponseParams')
235 ..fields = <mojom_types.StructField>[
236 new mojom_types.StructField()
237 ..declData = (new mojom_types.DeclarationData()
238 ..shortName = 'A')
239 ..type = (new mojom_types.Type()
240 ..stringType = (new mojom_types.StringType())),];
241 }
242
243 205
244 class _ProviderEchoStringsParams extends bindings.Struct { 206 class _ProviderEchoStringsParams extends bindings.Struct {
245 static const List<bindings.StructDataHeader> kVersions = const [ 207 static const List<bindings.StructDataHeader> kVersions = const [
246 const bindings.StructDataHeader(24, 0) 208 const bindings.StructDataHeader(24, 0)
247 ]; 209 ];
248 String a = null; 210 String a = null;
249 String b = null; 211 String b = null;
250 212
251 _ProviderEchoStringsParams() : super(kVersions.last.size); 213 _ProviderEchoStringsParams() : super(kVersions.last.size);
252 214
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
319 } 281 }
320 282
321 Map toJson() { 283 Map toJson() {
322 Map map = new Map(); 284 Map map = new Map();
323 map["a"] = a; 285 map["a"] = a;
324 map["b"] = b; 286 map["b"] = b;
325 return map; 287 return map;
326 } 288 }
327 } 289 }
328 290
329 mojom_types.MojomStruct _sampleInterfacesProviderEchoStringsParams() {
330 return new mojom_types.MojomStruct()
331 ..declData = (new mojom_types.DeclarationData()
332 ..shortName = 'ProviderEchoStringsParams'
333 ..fullIdentifier = 'sample.Provider_EchoStrings_Params')
334 ..fields = <mojom_types.StructField>[
335 new mojom_types.StructField()
336 ..declData = (new mojom_types.DeclarationData()
337 ..shortName = 'A')
338 ..type = (new mojom_types.Type()
339 ..stringType = (new mojom_types.StringType())),
340 new mojom_types.StructField()
341 ..declData = (new mojom_types.DeclarationData()
342 ..shortName = 'B')
343 ..type = (new mojom_types.Type()
344 ..stringType = (new mojom_types.StringType())),];
345 }
346
347 291
348 class ProviderEchoStringsResponseParams extends bindings.Struct { 292 class ProviderEchoStringsResponseParams extends bindings.Struct {
349 static const List<bindings.StructDataHeader> kVersions = const [ 293 static const List<bindings.StructDataHeader> kVersions = const [
350 const bindings.StructDataHeader(24, 0) 294 const bindings.StructDataHeader(24, 0)
351 ]; 295 ];
352 String a = null; 296 String a = null;
353 String b = null; 297 String b = null;
354 298
355 ProviderEchoStringsResponseParams() : super(kVersions.last.size); 299 ProviderEchoStringsResponseParams() : super(kVersions.last.size);
356 300
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
423 } 367 }
424 368
425 Map toJson() { 369 Map toJson() {
426 Map map = new Map(); 370 Map map = new Map();
427 map["a"] = a; 371 map["a"] = a;
428 map["b"] = b; 372 map["b"] = b;
429 return map; 373 return map;
430 } 374 }
431 } 375 }
432 376
433 mojom_types.MojomStruct _sampleInterfacesProviderEchoStringsResponseParams() {
434 return new mojom_types.MojomStruct()
435 ..declData = (new mojom_types.DeclarationData()
436 ..shortName = 'ProviderEchoStringsResponseParams'
437 ..fullIdentifier = 'sample.Provider_EchoStrings_ResponseParams')
438 ..fields = <mojom_types.StructField>[
439 new mojom_types.StructField()
440 ..declData = (new mojom_types.DeclarationData()
441 ..shortName = 'A')
442 ..type = (new mojom_types.Type()
443 ..stringType = (new mojom_types.StringType())),
444 new mojom_types.StructField()
445 ..declData = (new mojom_types.DeclarationData()
446 ..shortName = 'B')
447 ..type = (new mojom_types.Type()
448 ..stringType = (new mojom_types.StringType())),];
449 }
450
451 377
452 class _ProviderEchoMessagePipeHandleParams extends bindings.Struct { 378 class _ProviderEchoMessagePipeHandleParams extends bindings.Struct {
453 static const List<bindings.StructDataHeader> kVersions = const [ 379 static const List<bindings.StructDataHeader> kVersions = const [
454 const bindings.StructDataHeader(16, 0) 380 const bindings.StructDataHeader(16, 0)
455 ]; 381 ];
456 core.MojoMessagePipeEndpoint a = null; 382 core.MojoMessagePipeEndpoint a = null;
457 383
458 _ProviderEchoMessagePipeHandleParams() : super(kVersions.last.size); 384 _ProviderEchoMessagePipeHandleParams() : super(kVersions.last.size);
459 385
460 static _ProviderEchoMessagePipeHandleParams deserialize(bindings.Message messa ge) { 386 static _ProviderEchoMessagePipeHandleParams deserialize(bindings.Message messa ge) {
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
512 return "_ProviderEchoMessagePipeHandleParams(" 438 return "_ProviderEchoMessagePipeHandleParams("
513 "a: $a" ")"; 439 "a: $a" ")";
514 } 440 }
515 441
516 Map toJson() { 442 Map toJson() {
517 throw new bindings.MojoCodecError( 443 throw new bindings.MojoCodecError(
518 'Object containing handles cannot be encoded to JSON.'); 444 'Object containing handles cannot be encoded to JSON.');
519 } 445 }
520 } 446 }
521 447
522 mojom_types.MojomStruct _sampleInterfacesProviderEchoMessagePipeHandleParams() {
523 return new mojom_types.MojomStruct()
524 ..declData = (new mojom_types.DeclarationData()
525 ..shortName = 'ProviderEchoMessagePipeHandleParams'
526 ..fullIdentifier = 'sample.Provider_EchoMessagePipeHandle_Params')
527 ..fields = <mojom_types.StructField>[
528 new mojom_types.StructField()
529 ..declData = (new mojom_types.DeclarationData()
530 ..shortName = 'A')
531 ..type = (new mojom_types.Type()
532 ..handleType = (new mojom_types.HandleType()
533 ..kind = mojom_types.HandleTypeKind.messagePipe)),];
534 }
535
536 448
537 class ProviderEchoMessagePipeHandleResponseParams extends bindings.Struct { 449 class ProviderEchoMessagePipeHandleResponseParams extends bindings.Struct {
538 static const List<bindings.StructDataHeader> kVersions = const [ 450 static const List<bindings.StructDataHeader> kVersions = const [
539 const bindings.StructDataHeader(16, 0) 451 const bindings.StructDataHeader(16, 0)
540 ]; 452 ];
541 core.MojoMessagePipeEndpoint a = null; 453 core.MojoMessagePipeEndpoint a = null;
542 454
543 ProviderEchoMessagePipeHandleResponseParams() : super(kVersions.last.size); 455 ProviderEchoMessagePipeHandleResponseParams() : super(kVersions.last.size);
544 456
545 static ProviderEchoMessagePipeHandleResponseParams deserialize(bindings.Messag e message) { 457 static ProviderEchoMessagePipeHandleResponseParams deserialize(bindings.Messag e message) {
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
597 return "ProviderEchoMessagePipeHandleResponseParams(" 509 return "ProviderEchoMessagePipeHandleResponseParams("
598 "a: $a" ")"; 510 "a: $a" ")";
599 } 511 }
600 512
601 Map toJson() { 513 Map toJson() {
602 throw new bindings.MojoCodecError( 514 throw new bindings.MojoCodecError(
603 'Object containing handles cannot be encoded to JSON.'); 515 'Object containing handles cannot be encoded to JSON.');
604 } 516 }
605 } 517 }
606 518
607 mojom_types.MojomStruct _sampleInterfacesProviderEchoMessagePipeHandleResponsePa rams() {
608 return new mojom_types.MojomStruct()
609 ..declData = (new mojom_types.DeclarationData()
610 ..shortName = 'ProviderEchoMessagePipeHandleResponseParams'
611 ..fullIdentifier = 'sample.Provider_EchoMessagePipeHandle_ResponseParams')
612 ..fields = <mojom_types.StructField>[
613 new mojom_types.StructField()
614 ..declData = (new mojom_types.DeclarationData()
615 ..shortName = 'A')
616 ..type = (new mojom_types.Type()
617 ..handleType = (new mojom_types.HandleType()
618 ..kind = mojom_types.HandleTypeKind.messagePipe)),];
619 }
620
621 519
622 class _ProviderEchoEnumParams extends bindings.Struct { 520 class _ProviderEchoEnumParams extends bindings.Struct {
623 static const List<bindings.StructDataHeader> kVersions = const [ 521 static const List<bindings.StructDataHeader> kVersions = const [
624 const bindings.StructDataHeader(16, 0) 522 const bindings.StructDataHeader(16, 0)
625 ]; 523 ];
626 Enum a = null; 524 Enum a = null;
627 525
628 _ProviderEchoEnumParams() : super(kVersions.last.size); 526 _ProviderEchoEnumParams() : super(kVersions.last.size);
629 527
630 static _ProviderEchoEnumParams deserialize(bindings.Message message) { 528 static _ProviderEchoEnumParams deserialize(bindings.Message message) {
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
687 "a: $a" ")"; 585 "a: $a" ")";
688 } 586 }
689 587
690 Map toJson() { 588 Map toJson() {
691 Map map = new Map(); 589 Map map = new Map();
692 map["a"] = a; 590 map["a"] = a;
693 return map; 591 return map;
694 } 592 }
695 } 593 }
696 594
697 mojom_types.MojomStruct _sampleInterfacesProviderEchoEnumParams() {
698 return new mojom_types.MojomStruct()
699 ..declData = (new mojom_types.DeclarationData()
700 ..shortName = 'ProviderEchoEnumParams'
701 ..fullIdentifier = 'sample.Provider_EchoEnum_Params')
702 ..fields = <mojom_types.StructField>[
703 new mojom_types.StructField()
704 ..declData = (new mojom_types.DeclarationData()
705 ..shortName = 'A')
706 ..type = (new mojom_types.Type()
707 ..typeReference = (new mojom_types.TypeReference()
708 ..identifier = 'sample_interfaces_Enum__'
709 ..typeKey = 'sample_interfaces_Enum__'
710 )),];
711 }
712
713 595
714 class ProviderEchoEnumResponseParams extends bindings.Struct { 596 class ProviderEchoEnumResponseParams extends bindings.Struct {
715 static const List<bindings.StructDataHeader> kVersions = const [ 597 static const List<bindings.StructDataHeader> kVersions = const [
716 const bindings.StructDataHeader(16, 0) 598 const bindings.StructDataHeader(16, 0)
717 ]; 599 ];
718 Enum a = null; 600 Enum a = null;
719 601
720 ProviderEchoEnumResponseParams() : super(kVersions.last.size); 602 ProviderEchoEnumResponseParams() : super(kVersions.last.size);
721 603
722 static ProviderEchoEnumResponseParams deserialize(bindings.Message message) { 604 static ProviderEchoEnumResponseParams deserialize(bindings.Message message) {
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
779 "a: $a" ")"; 661 "a: $a" ")";
780 } 662 }
781 663
782 Map toJson() { 664 Map toJson() {
783 Map map = new Map(); 665 Map map = new Map();
784 map["a"] = a; 666 map["a"] = a;
785 return map; 667 return map;
786 } 668 }
787 } 669 }
788 670
789 mojom_types.MojomStruct _sampleInterfacesProviderEchoEnumResponseParams() {
790 return new mojom_types.MojomStruct()
791 ..declData = (new mojom_types.DeclarationData()
792 ..shortName = 'ProviderEchoEnumResponseParams'
793 ..fullIdentifier = 'sample.Provider_EchoEnum_ResponseParams')
794 ..fields = <mojom_types.StructField>[
795 new mojom_types.StructField()
796 ..declData = (new mojom_types.DeclarationData()
797 ..shortName = 'A')
798 ..type = (new mojom_types.Type()
799 ..typeReference = (new mojom_types.TypeReference()
800 ..identifier = 'sample_interfaces_Enum__'
801 ..typeKey = 'sample_interfaces_Enum__'
802 )),];
803 }
804
805 671
806 class _ProviderEchoIntParams extends bindings.Struct { 672 class _ProviderEchoIntParams extends bindings.Struct {
807 static const List<bindings.StructDataHeader> kVersions = const [ 673 static const List<bindings.StructDataHeader> kVersions = const [
808 const bindings.StructDataHeader(16, 0) 674 const bindings.StructDataHeader(16, 0)
809 ]; 675 ];
810 int a = 0; 676 int a = 0;
811 677
812 _ProviderEchoIntParams() : super(kVersions.last.size); 678 _ProviderEchoIntParams() : super(kVersions.last.size);
813 679
814 static _ProviderEchoIntParams deserialize(bindings.Message message) { 680 static _ProviderEchoIntParams deserialize(bindings.Message message) {
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
867 "a: $a" ")"; 733 "a: $a" ")";
868 } 734 }
869 735
870 Map toJson() { 736 Map toJson() {
871 Map map = new Map(); 737 Map map = new Map();
872 map["a"] = a; 738 map["a"] = a;
873 return map; 739 return map;
874 } 740 }
875 } 741 }
876 742
877 mojom_types.MojomStruct _sampleInterfacesProviderEchoIntParams() {
878 return new mojom_types.MojomStruct()
879 ..declData = (new mojom_types.DeclarationData()
880 ..shortName = 'ProviderEchoIntParams'
881 ..fullIdentifier = 'sample.Provider_EchoInt_Params')
882 ..fields = <mojom_types.StructField>[
883 new mojom_types.StructField()
884 ..declData = (new mojom_types.DeclarationData()
885 ..shortName = 'A')
886 ..type = (new mojom_types.Type()
887 ..simpleType = mojom_types.SimpleType.int32),];
888 }
889
890 743
891 class ProviderEchoIntResponseParams extends bindings.Struct { 744 class ProviderEchoIntResponseParams extends bindings.Struct {
892 static const List<bindings.StructDataHeader> kVersions = const [ 745 static const List<bindings.StructDataHeader> kVersions = const [
893 const bindings.StructDataHeader(16, 0) 746 const bindings.StructDataHeader(16, 0)
894 ]; 747 ];
895 int a = 0; 748 int a = 0;
896 749
897 ProviderEchoIntResponseParams() : super(kVersions.last.size); 750 ProviderEchoIntResponseParams() : super(kVersions.last.size);
898 751
899 static ProviderEchoIntResponseParams deserialize(bindings.Message message) { 752 static ProviderEchoIntResponseParams deserialize(bindings.Message message) {
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
952 "a: $a" ")"; 805 "a: $a" ")";
953 } 806 }
954 807
955 Map toJson() { 808 Map toJson() {
956 Map map = new Map(); 809 Map map = new Map();
957 map["a"] = a; 810 map["a"] = a;
958 return map; 811 return map;
959 } 812 }
960 } 813 }
961 814
962 mojom_types.MojomStruct _sampleInterfacesProviderEchoIntResponseParams() {
963 return new mojom_types.MojomStruct()
964 ..declData = (new mojom_types.DeclarationData()
965 ..shortName = 'ProviderEchoIntResponseParams'
966 ..fullIdentifier = 'sample.Provider_EchoInt_ResponseParams')
967 ..fields = <mojom_types.StructField>[
968 new mojom_types.StructField()
969 ..declData = (new mojom_types.DeclarationData()
970 ..shortName = 'A')
971 ..type = (new mojom_types.Type()
972 ..simpleType = mojom_types.SimpleType.int32),];
973 }
974
975 815
976 class _IntegerAccessorGetIntegerParams extends bindings.Struct { 816 class _IntegerAccessorGetIntegerParams extends bindings.Struct {
977 static const List<bindings.StructDataHeader> kVersions = const [ 817 static const List<bindings.StructDataHeader> kVersions = const [
978 const bindings.StructDataHeader(8, 0) 818 const bindings.StructDataHeader(8, 0)
979 ]; 819 ];
980 820
981 _IntegerAccessorGetIntegerParams() : super(kVersions.last.size); 821 _IntegerAccessorGetIntegerParams() : super(kVersions.last.size);
982 822
983 static _IntegerAccessorGetIntegerParams deserialize(bindings.Message message) { 823 static _IntegerAccessorGetIntegerParams deserialize(bindings.Message message) {
984 var decoder = new bindings.Decoder(message); 824 var decoder = new bindings.Decoder(message);
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
1023 String toString() { 863 String toString() {
1024 return "_IntegerAccessorGetIntegerParams("")"; 864 return "_IntegerAccessorGetIntegerParams("")";
1025 } 865 }
1026 866
1027 Map toJson() { 867 Map toJson() {
1028 Map map = new Map(); 868 Map map = new Map();
1029 return map; 869 return map;
1030 } 870 }
1031 } 871 }
1032 872
1033 mojom_types.MojomStruct _sampleInterfacesIntegerAccessorGetIntegerParams() {
1034 return new mojom_types.MojomStruct()
1035 ..declData = (new mojom_types.DeclarationData()
1036 ..shortName = 'IntegerAccessorGetIntegerParams'
1037 ..fullIdentifier = 'sample.IntegerAccessor_GetInteger_Params')
1038 ..fields = <mojom_types.StructField>[];
1039 }
1040
1041 873
1042 class IntegerAccessorGetIntegerResponseParams extends bindings.Struct { 874 class IntegerAccessorGetIntegerResponseParams extends bindings.Struct {
1043 static const List<bindings.StructDataHeader> kVersions = const [ 875 static const List<bindings.StructDataHeader> kVersions = const [
1044 const bindings.StructDataHeader(16, 0), 876 const bindings.StructDataHeader(16, 0),
1045 const bindings.StructDataHeader(24, 2) 877 const bindings.StructDataHeader(24, 2)
1046 ]; 878 ];
1047 int data = 0; 879 int data = 0;
1048 Enum type = null; 880 Enum type = null;
1049 881
1050 IntegerAccessorGetIntegerResponseParams() : super(kVersions.last.size); 882 IntegerAccessorGetIntegerResponseParams() : super(kVersions.last.size);
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
1122 } 954 }
1123 955
1124 Map toJson() { 956 Map toJson() {
1125 Map map = new Map(); 957 Map map = new Map();
1126 map["data"] = data; 958 map["data"] = data;
1127 map["type"] = type; 959 map["type"] = type;
1128 return map; 960 return map;
1129 } 961 }
1130 } 962 }
1131 963
1132 mojom_types.MojomStruct _sampleInterfacesIntegerAccessorGetIntegerResponseParams () {
1133 return new mojom_types.MojomStruct()
1134 ..declData = (new mojom_types.DeclarationData()
1135 ..shortName = 'IntegerAccessorGetIntegerResponseParams'
1136 ..fullIdentifier = 'sample.IntegerAccessor_GetInteger_ResponseParams')
1137 ..fields = <mojom_types.StructField>[
1138 new mojom_types.StructField()
1139 ..declData = (new mojom_types.DeclarationData()
1140 ..shortName = 'Data')
1141 ..type = (new mojom_types.Type()
1142 ..simpleType = mojom_types.SimpleType.int64),
1143 new mojom_types.StructField()
1144 ..declData = (new mojom_types.DeclarationData()
1145 ..shortName = 'Type')
1146 ..type = (new mojom_types.Type()
1147 ..typeReference = (new mojom_types.TypeReference()
1148 ..identifier = 'sample_interfaces_Enum__'
1149 ..typeKey = 'sample_interfaces_Enum__'
1150 )),];
1151 }
1152
1153 964
1154 class _IntegerAccessorSetIntegerParams extends bindings.Struct { 965 class _IntegerAccessorSetIntegerParams extends bindings.Struct {
1155 static const List<bindings.StructDataHeader> kVersions = const [ 966 static const List<bindings.StructDataHeader> kVersions = const [
1156 const bindings.StructDataHeader(16, 0), 967 const bindings.StructDataHeader(16, 0),
1157 const bindings.StructDataHeader(24, 3) 968 const bindings.StructDataHeader(24, 3)
1158 ]; 969 ];
1159 int data = 0; 970 int data = 0;
1160 Enum type = null; 971 Enum type = null;
1161 972
1162 _IntegerAccessorSetIntegerParams() : super(kVersions.last.size); 973 _IntegerAccessorSetIntegerParams() : super(kVersions.last.size);
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
1234 } 1045 }
1235 1046
1236 Map toJson() { 1047 Map toJson() {
1237 Map map = new Map(); 1048 Map map = new Map();
1238 map["data"] = data; 1049 map["data"] = data;
1239 map["type"] = type; 1050 map["type"] = type;
1240 return map; 1051 return map;
1241 } 1052 }
1242 } 1053 }
1243 1054
1244 mojom_types.MojomStruct _sampleInterfacesIntegerAccessorSetIntegerParams() {
1245 return new mojom_types.MojomStruct()
1246 ..declData = (new mojom_types.DeclarationData()
1247 ..shortName = 'IntegerAccessorSetIntegerParams'
1248 ..fullIdentifier = 'sample.IntegerAccessor_SetInteger_Params')
1249 ..fields = <mojom_types.StructField>[
1250 new mojom_types.StructField()
1251 ..declData = (new mojom_types.DeclarationData()
1252 ..shortName = 'Data')
1253 ..type = (new mojom_types.Type()
1254 ..simpleType = mojom_types.SimpleType.int64),
1255 new mojom_types.StructField()
1256 ..declData = (new mojom_types.DeclarationData()
1257 ..shortName = 'Type')
1258 ..type = (new mojom_types.Type()
1259 ..typeReference = (new mojom_types.TypeReference()
1260 ..identifier = 'sample_interfaces_Enum__'
1261 ..typeKey = 'sample_interfaces_Enum__'
1262 )),];
1263 }
1264
1265 1055
1266 class _SampleInterfaceSampleMethod0Params extends bindings.Struct { 1056 class _SampleInterfaceSampleMethod0Params extends bindings.Struct {
1267 static const List<bindings.StructDataHeader> kVersions = const [ 1057 static const List<bindings.StructDataHeader> kVersions = const [
1268 const bindings.StructDataHeader(8, 0) 1058 const bindings.StructDataHeader(8, 0)
1269 ]; 1059 ];
1270 1060
1271 _SampleInterfaceSampleMethod0Params() : super(kVersions.last.size); 1061 _SampleInterfaceSampleMethod0Params() : super(kVersions.last.size);
1272 1062
1273 static _SampleInterfaceSampleMethod0Params deserialize(bindings.Message messag e) { 1063 static _SampleInterfaceSampleMethod0Params deserialize(bindings.Message messag e) {
1274 var decoder = new bindings.Decoder(message); 1064 var decoder = new bindings.Decoder(message);
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
1313 String toString() { 1103 String toString() {
1314 return "_SampleInterfaceSampleMethod0Params("")"; 1104 return "_SampleInterfaceSampleMethod0Params("")";
1315 } 1105 }
1316 1106
1317 Map toJson() { 1107 Map toJson() {
1318 Map map = new Map(); 1108 Map map = new Map();
1319 return map; 1109 return map;
1320 } 1110 }
1321 } 1111 }
1322 1112
1323 mojom_types.MojomStruct _sampleInterfacesSampleInterfaceSampleMethod0Params() {
1324 return new mojom_types.MojomStruct()
1325 ..declData = (new mojom_types.DeclarationData()
1326 ..shortName = 'SampleInterfaceSampleMethod0Params'
1327 ..fullIdentifier = 'sample.SampleInterface_SampleMethod0_Params')
1328 ..fields = <mojom_types.StructField>[];
1329 }
1330
1331 1113
1332 class _SampleInterfaceSampleMethod1Params extends bindings.Struct { 1114 class _SampleInterfaceSampleMethod1Params extends bindings.Struct {
1333 static const List<bindings.StructDataHeader> kVersions = const [ 1115 static const List<bindings.StructDataHeader> kVersions = const [
1334 const bindings.StructDataHeader(24, 0) 1116 const bindings.StructDataHeader(24, 0)
1335 ]; 1117 ];
1336 int in1 = 0; 1118 int in1 = 0;
1337 String in2 = null; 1119 String in2 = null;
1338 1120
1339 _SampleInterfaceSampleMethod1Params() : super(kVersions.last.size); 1121 _SampleInterfaceSampleMethod1Params() : super(kVersions.last.size);
1340 1122
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
1407 } 1189 }
1408 1190
1409 Map toJson() { 1191 Map toJson() {
1410 Map map = new Map(); 1192 Map map = new Map();
1411 map["in1"] = in1; 1193 map["in1"] = in1;
1412 map["in2"] = in2; 1194 map["in2"] = in2;
1413 return map; 1195 return map;
1414 } 1196 }
1415 } 1197 }
1416 1198
1417 mojom_types.MojomStruct _sampleInterfacesSampleInterfaceSampleMethod1Params() {
1418 return new mojom_types.MojomStruct()
1419 ..declData = (new mojom_types.DeclarationData()
1420 ..shortName = 'SampleInterfaceSampleMethod1Params'
1421 ..fullIdentifier = 'sample.SampleInterface_SampleMethod1_Params')
1422 ..fields = <mojom_types.StructField>[
1423 new mojom_types.StructField()
1424 ..declData = (new mojom_types.DeclarationData()
1425 ..shortName = 'In1')
1426 ..type = (new mojom_types.Type()
1427 ..simpleType = mojom_types.SimpleType.int32),
1428 new mojom_types.StructField()
1429 ..declData = (new mojom_types.DeclarationData()
1430 ..shortName = 'In2')
1431 ..type = (new mojom_types.Type()
1432 ..stringType = (new mojom_types.StringType()
1433 ..nullable = true
1434 )),];
1435 }
1436
1437 1199
1438 class SampleInterfaceSampleMethod1ResponseParams extends bindings.Struct { 1200 class SampleInterfaceSampleMethod1ResponseParams extends bindings.Struct {
1439 static const List<bindings.StructDataHeader> kVersions = const [ 1201 static const List<bindings.StructDataHeader> kVersions = const [
1440 const bindings.StructDataHeader(24, 0) 1202 const bindings.StructDataHeader(24, 0)
1441 ]; 1203 ];
1442 String out1 = null; 1204 String out1 = null;
1443 Enum out2 = null; 1205 Enum out2 = null;
1444 1206
1445 SampleInterfaceSampleMethod1ResponseParams() : super(kVersions.last.size); 1207 SampleInterfaceSampleMethod1ResponseParams() : super(kVersions.last.size);
1446 1208
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
1517 } 1279 }
1518 1280
1519 Map toJson() { 1281 Map toJson() {
1520 Map map = new Map(); 1282 Map map = new Map();
1521 map["out1"] = out1; 1283 map["out1"] = out1;
1522 map["out2"] = out2; 1284 map["out2"] = out2;
1523 return map; 1285 return map;
1524 } 1286 }
1525 } 1287 }
1526 1288
1527 mojom_types.MojomStruct _sampleInterfacesSampleInterfaceSampleMethod1ResponsePar ams() {
1528 return new mojom_types.MojomStruct()
1529 ..declData = (new mojom_types.DeclarationData()
1530 ..shortName = 'SampleInterfaceSampleMethod1ResponseParams'
1531 ..fullIdentifier = 'sample.SampleInterface_SampleMethod1_ResponseParams')
1532 ..fields = <mojom_types.StructField>[
1533 new mojom_types.StructField()
1534 ..declData = (new mojom_types.DeclarationData()
1535 ..shortName = 'Out1')
1536 ..type = (new mojom_types.Type()
1537 ..stringType = (new mojom_types.StringType()
1538 ..nullable = true
1539 )),
1540 new mojom_types.StructField()
1541 ..declData = (new mojom_types.DeclarationData()
1542 ..shortName = 'Out2')
1543 ..type = (new mojom_types.Type()
1544 ..typeReference = (new mojom_types.TypeReference()
1545 ..identifier = 'sample_interfaces_Enum__'
1546 ..typeKey = 'sample_interfaces_Enum__'
1547 )),];
1548 }
1549
1550 1289
1551 class _SampleInterfaceSampleMethod2Params extends bindings.Struct { 1290 class _SampleInterfaceSampleMethod2Params extends bindings.Struct {
1552 static const List<bindings.StructDataHeader> kVersions = const [ 1291 static const List<bindings.StructDataHeader> kVersions = const [
1553 const bindings.StructDataHeader(8, 0) 1292 const bindings.StructDataHeader(8, 0)
1554 ]; 1293 ];
1555 1294
1556 _SampleInterfaceSampleMethod2Params() : super(kVersions.last.size); 1295 _SampleInterfaceSampleMethod2Params() : super(kVersions.last.size);
1557 1296
1558 static _SampleInterfaceSampleMethod2Params deserialize(bindings.Message messag e) { 1297 static _SampleInterfaceSampleMethod2Params deserialize(bindings.Message messag e) {
1559 var decoder = new bindings.Decoder(message); 1298 var decoder = new bindings.Decoder(message);
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
1598 String toString() { 1337 String toString() {
1599 return "_SampleInterfaceSampleMethod2Params("")"; 1338 return "_SampleInterfaceSampleMethod2Params("")";
1600 } 1339 }
1601 1340
1602 Map toJson() { 1341 Map toJson() {
1603 Map map = new Map(); 1342 Map map = new Map();
1604 return map; 1343 return map;
1605 } 1344 }
1606 } 1345 }
1607 1346
1608 mojom_types.MojomStruct _sampleInterfacesSampleInterfaceSampleMethod2Params() {
1609 return new mojom_types.MojomStruct()
1610 ..declData = (new mojom_types.DeclarationData()
1611 ..shortName = 'SampleInterfaceSampleMethod2Params'
1612 ..fullIdentifier = 'sample.SampleInterface_SampleMethod2_Params')
1613 ..fields = <mojom_types.StructField>[];
1614 }
1615
1616
1617 const int _Provider_echoStringName = 0; 1347 const int _Provider_echoStringName = 0;
1618 const int _Provider_echoStringsName = 1; 1348 const int _Provider_echoStringsName = 1;
1619 const int _Provider_echoMessagePipeHandleName = 2; 1349 const int _Provider_echoMessagePipeHandleName = 2;
1620 const int _Provider_echoEnumName = 3; 1350 const int _Provider_echoEnumName = 3;
1621 const int _Provider_echoIntName = 4; 1351 const int _Provider_echoIntName = 4;
1622 1352
1623 mojom_types.MojomInterface _sampleInterfacesProvider() {
1624 return new mojom_types.MojomInterface()
1625 ..declData = (new mojom_types.DeclarationData()
1626 ..shortName = 'Provider'
1627 ..fullIdentifier = 'sample.Provider')
1628 ..serviceName_ = 'Provider'
1629 ..methods = <int, mojom_types.MojomMethod>{
1630 _Provider_echoStringName: new mojom_types.MojomMethod()
1631 ..declData = (new mojom_types.DeclarationData()
1632 ..shortName = 'EchoString')
1633 ..ordinal = _Provider_echoStringName
1634 ..responseParams = _sampleInterfacesProviderEchoStringResponseParams()
1635 ..parameters = _sampleInterfacesProviderEchoStringParams(),
1636 _Provider_echoStringsName: new mojom_types.MojomMethod()
1637 ..declData = (new mojom_types.DeclarationData()
1638 ..shortName = 'EchoStrings')
1639 ..ordinal = _Provider_echoStringsName
1640 ..responseParams = _sampleInterfacesProviderEchoStringsResponseParams()
1641 ..parameters = _sampleInterfacesProviderEchoStringsParams(),
1642 _Provider_echoMessagePipeHandleName: new mojom_types.MojomMethod()
1643 ..declData = (new mojom_types.DeclarationData()
1644 ..shortName = 'EchoMessagePipeHandle')
1645 ..ordinal = _Provider_echoMessagePipeHandleName
1646 ..responseParams = _sampleInterfacesProviderEchoMessagePipeHandleRespons eParams()
1647 ..parameters = _sampleInterfacesProviderEchoMessagePipeHandleParams(),
1648 _Provider_echoEnumName: new mojom_types.MojomMethod()
1649 ..declData = (new mojom_types.DeclarationData()
1650 ..shortName = 'EchoEnum')
1651 ..ordinal = _Provider_echoEnumName
1652 ..responseParams = _sampleInterfacesProviderEchoEnumResponseParams()
1653 ..parameters = _sampleInterfacesProviderEchoEnumParams(),
1654 _Provider_echoIntName: new mojom_types.MojomMethod()
1655 ..declData = (new mojom_types.DeclarationData()
1656 ..shortName = 'EchoInt')
1657 ..ordinal = _Provider_echoIntName
1658 ..responseParams = _sampleInterfacesProviderEchoIntResponseParams()
1659 ..parameters = _sampleInterfacesProviderEchoIntParams(),
1660 };
1661 }
1662
1663 class _ProviderServiceDescription implements service_describer.ServiceDescriptio n { 1353 class _ProviderServiceDescription implements service_describer.ServiceDescriptio n {
1664 dynamic getTopLevelInterface([Function responseFactory]) => 1354 dynamic getTopLevelInterface([Function responseFactory]) =>
1665 responseFactory(_sampleInterfacesProvider()); 1355 responseFactory(null);
1666 1356
1667 dynamic getTypeDefinition(String typeKey, [Function responseFactory]) => 1357 dynamic getTypeDefinition(String typeKey, [Function responseFactory]) =>
1668 responseFactory(getAllMojomTypeDefinitions()[typeKey]); 1358 responseFactory(null);
1669 1359
1670 dynamic getAllTypeDefinitions([Function responseFactory]) => 1360 dynamic getAllTypeDefinitions([Function responseFactory]) =>
1671 responseFactory(getAllMojomTypeDefinitions()); 1361 responseFactory(null);
1672 } 1362 }
1673 1363
1674 abstract class Provider { 1364 abstract class Provider {
1675 static const String serviceName = null; 1365 static const String serviceName = null;
1676 dynamic echoString(String a,[Function responseFactory = null]); 1366 dynamic echoString(String a,[Function responseFactory = null]);
1677 dynamic echoStrings(String a,String b,[Function responseFactory = null]); 1367 dynamic echoStrings(String a,String b,[Function responseFactory = null]);
1678 dynamic echoMessagePipeHandle(core.MojoMessagePipeEndpoint a,[Function respons eFactory = null]); 1368 dynamic echoMessagePipeHandle(core.MojoMessagePipeEndpoint a,[Function respons eFactory = null]);
1679 dynamic echoEnum(Enum a,[Function responseFactory = null]); 1369 dynamic echoEnum(Enum a,[Function responseFactory = null]);
1680 dynamic echoInt(int a,[Function responseFactory = null]); 1370 dynamic echoInt(int a,[Function responseFactory = null]);
1681 } 1371 }
(...skipping 434 matching lines...) Expand 10 before | Expand all | Expand 10 after
2116 if (_cachedServiceDescription == null) { 1806 if (_cachedServiceDescription == null) {
2117 _cachedServiceDescription = new _ProviderServiceDescription(); 1807 _cachedServiceDescription = new _ProviderServiceDescription();
2118 } 1808 }
2119 return _cachedServiceDescription; 1809 return _cachedServiceDescription;
2120 } 1810 }
2121 } 1811 }
2122 1812
2123 const int _IntegerAccessor_getIntegerName = 0; 1813 const int _IntegerAccessor_getIntegerName = 0;
2124 const int _IntegerAccessor_setIntegerName = 1; 1814 const int _IntegerAccessor_setIntegerName = 1;
2125 1815
2126 mojom_types.MojomInterface _sampleInterfacesIntegerAccessor() {
2127 return new mojom_types.MojomInterface()
2128 ..declData = (new mojom_types.DeclarationData()
2129 ..shortName = 'IntegerAccessor'
2130 ..fullIdentifier = 'sample.IntegerAccessor')
2131 ..serviceName_ = 'IntegerAccessor'
2132 ..methods = <int, mojom_types.MojomMethod>{
2133 _IntegerAccessor_getIntegerName: new mojom_types.MojomMethod()
2134 ..declData = (new mojom_types.DeclarationData()
2135 ..shortName = 'GetInteger')
2136 ..ordinal = _IntegerAccessor_getIntegerName
2137 ..responseParams = _sampleInterfacesIntegerAccessorGetIntegerResponsePar ams()
2138 ..parameters = _sampleInterfacesIntegerAccessorGetIntegerParams(),
2139 _IntegerAccessor_setIntegerName: new mojom_types.MojomMethod()
2140 ..declData = (new mojom_types.DeclarationData()
2141 ..shortName = 'SetInteger')
2142 ..ordinal = _IntegerAccessor_setIntegerName
2143 ..parameters = _sampleInterfacesIntegerAccessorSetIntegerParams(),
2144 };
2145 }
2146
2147 class _IntegerAccessorServiceDescription implements service_describer.ServiceDes cription { 1816 class _IntegerAccessorServiceDescription implements service_describer.ServiceDes cription {
2148 dynamic getTopLevelInterface([Function responseFactory]) => 1817 dynamic getTopLevelInterface([Function responseFactory]) =>
2149 responseFactory(_sampleInterfacesIntegerAccessor()); 1818 responseFactory(null);
2150 1819
2151 dynamic getTypeDefinition(String typeKey, [Function responseFactory]) => 1820 dynamic getTypeDefinition(String typeKey, [Function responseFactory]) =>
2152 responseFactory(getAllMojomTypeDefinitions()[typeKey]); 1821 responseFactory(null);
2153 1822
2154 dynamic getAllTypeDefinitions([Function responseFactory]) => 1823 dynamic getAllTypeDefinitions([Function responseFactory]) =>
2155 responseFactory(getAllMojomTypeDefinitions()); 1824 responseFactory(null);
2156 } 1825 }
2157 1826
2158 abstract class IntegerAccessor { 1827 abstract class IntegerAccessor {
2159 static const String serviceName = null; 1828 static const String serviceName = null;
2160 dynamic getInteger([Function responseFactory = null]); 1829 dynamic getInteger([Function responseFactory = null]);
2161 void setInteger(int data, Enum type); 1830 void setInteger(int data, Enum type);
2162 } 1831 }
2163 1832
2164 1833
2165 class _IntegerAccessorProxyImpl extends bindings.Proxy { 1834 class _IntegerAccessorProxyImpl extends bindings.Proxy {
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
2385 _cachedServiceDescription = new _IntegerAccessorServiceDescription(); 2054 _cachedServiceDescription = new _IntegerAccessorServiceDescription();
2386 } 2055 }
2387 return _cachedServiceDescription; 2056 return _cachedServiceDescription;
2388 } 2057 }
2389 } 2058 }
2390 2059
2391 const int _SampleInterface_sampleMethod0Name = 0; 2060 const int _SampleInterface_sampleMethod0Name = 0;
2392 const int _SampleInterface_sampleMethod1Name = 1; 2061 const int _SampleInterface_sampleMethod1Name = 1;
2393 const int _SampleInterface_sampleMethod2Name = 2; 2062 const int _SampleInterface_sampleMethod2Name = 2;
2394 2063
2395 mojom_types.MojomInterface _sampleInterfacesSampleInterface() {
2396 return new mojom_types.MojomInterface()
2397 ..declData = (new mojom_types.DeclarationData()
2398 ..shortName = 'SampleInterface'
2399 ..fullIdentifier = 'sample.SampleInterface')
2400 ..serviceName_ = 'SampleInterface'
2401 ..methods = <int, mojom_types.MojomMethod>{
2402 _SampleInterface_sampleMethod0Name: new mojom_types.MojomMethod()
2403 ..declData = (new mojom_types.DeclarationData()
2404 ..shortName = 'SampleMethod0')
2405 ..ordinal = _SampleInterface_sampleMethod0Name
2406 ..parameters = _sampleInterfacesSampleInterfaceSampleMethod0Params(),
2407 _SampleInterface_sampleMethod1Name: new mojom_types.MojomMethod()
2408 ..declData = (new mojom_types.DeclarationData()
2409 ..shortName = 'SampleMethod1')
2410 ..ordinal = _SampleInterface_sampleMethod1Name
2411 ..responseParams = _sampleInterfacesSampleInterfaceSampleMethod1Response Params()
2412 ..parameters = _sampleInterfacesSampleInterfaceSampleMethod1Params(),
2413 _SampleInterface_sampleMethod2Name: new mojom_types.MojomMethod()
2414 ..declData = (new mojom_types.DeclarationData()
2415 ..shortName = 'SampleMethod2')
2416 ..ordinal = _SampleInterface_sampleMethod2Name
2417 ..parameters = _sampleInterfacesSampleInterfaceSampleMethod2Params(),
2418 };
2419 }
2420
2421 class _SampleInterfaceServiceDescription implements service_describer.ServiceDes cription { 2064 class _SampleInterfaceServiceDescription implements service_describer.ServiceDes cription {
2422 dynamic getTopLevelInterface([Function responseFactory]) => 2065 dynamic getTopLevelInterface([Function responseFactory]) =>
2423 responseFactory(_sampleInterfacesSampleInterface()); 2066 responseFactory(null);
2424 2067
2425 dynamic getTypeDefinition(String typeKey, [Function responseFactory]) => 2068 dynamic getTypeDefinition(String typeKey, [Function responseFactory]) =>
2426 responseFactory(getAllMojomTypeDefinitions()[typeKey]); 2069 responseFactory(null);
2427 2070
2428 dynamic getAllTypeDefinitions([Function responseFactory]) => 2071 dynamic getAllTypeDefinitions([Function responseFactory]) =>
2429 responseFactory(getAllMojomTypeDefinitions()); 2072 responseFactory(null);
2430 } 2073 }
2431 2074
2432 abstract class SampleInterface { 2075 abstract class SampleInterface {
2433 static const String serviceName = null; 2076 static const String serviceName = null;
2434 void sampleMethod0(); 2077 void sampleMethod0();
2435 dynamic sampleMethod1(int in1,String in2,[Function responseFactory = null]); 2078 dynamic sampleMethod1(int in1,String in2,[Function responseFactory = null]);
2436 void sampleMethod2(); 2079 void sampleMethod2();
2437 } 2080 }
2438 2081
2439 2082
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
2668 static service_describer.ServiceDescription _cachedServiceDescription; 2311 static service_describer.ServiceDescription _cachedServiceDescription;
2669 static service_describer.ServiceDescription get serviceDescription { 2312 static service_describer.ServiceDescription get serviceDescription {
2670 if (_cachedServiceDescription == null) { 2313 if (_cachedServiceDescription == null) {
2671 _cachedServiceDescription = new _SampleInterfaceServiceDescription(); 2314 _cachedServiceDescription = new _SampleInterfaceServiceDescription();
2672 } 2315 }
2673 return _cachedServiceDescription; 2316 return _cachedServiceDescription;
2674 } 2317 }
2675 } 2318 }
2676 2319
2677 2320
2678 Map<String, mojom_types.UserDefinedType> _initDescriptions() { 2321 mojom_types.RuntimeTypeInfo getRuntimeTypeInfo() => _runtimeTypeInfo ??
2679 var map = new HashMap<String, mojom_types.UserDefinedType>(); 2322 _initRuntimeTypeInfo();
2680 map["sample_interfaces_Enum__"] = 2323
2681 new mojom_types.UserDefinedType() 2324 Map<String, mojom_types.UserDefinedType> getAllMojomTypeDefinitions() {
2682 ..enumType = _sampleInterfacesEnum(); 2325 return getRuntimeTypeInfo().typeMap;
2683 map["sample_interfaces_Provider_EchoString_Params__"] =
2684 new mojom_types.UserDefinedType()
2685 ..structType = _sampleInterfacesProviderEchoStringParams();
2686 map["sample_interfaces_Provider_EchoString_ResponseParams__"] =
2687 new mojom_types.UserDefinedType()
2688 ..structType = _sampleInterfacesProviderEchoStringResponseParams();
2689 map["sample_interfaces_Provider_EchoStrings_Params__"] =
2690 new mojom_types.UserDefinedType()
2691 ..structType = _sampleInterfacesProviderEchoStringsParams();
2692 map["sample_interfaces_Provider_EchoStrings_ResponseParams__"] =
2693 new mojom_types.UserDefinedType()
2694 ..structType = _sampleInterfacesProviderEchoStringsResponseParams();
2695 map["sample_interfaces_Provider_EchoMessagePipeHandle_Params__"] =
2696 new mojom_types.UserDefinedType()
2697 ..structType = _sampleInterfacesProviderEchoMessagePipeHandleParams();
2698 map["sample_interfaces_Provider_EchoMessagePipeHandle_ResponseParams__"] =
2699 new mojom_types.UserDefinedType()
2700 ..structType = _sampleInterfacesProviderEchoMessagePipeHandleResponseParam s();
2701 map["sample_interfaces_Provider_EchoEnum_Params__"] =
2702 new mojom_types.UserDefinedType()
2703 ..structType = _sampleInterfacesProviderEchoEnumParams();
2704 map["sample_interfaces_Provider_EchoEnum_ResponseParams__"] =
2705 new mojom_types.UserDefinedType()
2706 ..structType = _sampleInterfacesProviderEchoEnumResponseParams();
2707 map["sample_interfaces_Provider_EchoInt_Params__"] =
2708 new mojom_types.UserDefinedType()
2709 ..structType = _sampleInterfacesProviderEchoIntParams();
2710 map["sample_interfaces_Provider_EchoInt_ResponseParams__"] =
2711 new mojom_types.UserDefinedType()
2712 ..structType = _sampleInterfacesProviderEchoIntResponseParams();
2713 map["sample_interfaces_IntegerAccessor_GetInteger_Params__"] =
2714 new mojom_types.UserDefinedType()
2715 ..structType = _sampleInterfacesIntegerAccessorGetIntegerParams();
2716 map["sample_interfaces_IntegerAccessor_GetInteger_ResponseParams__"] =
2717 new mojom_types.UserDefinedType()
2718 ..structType = _sampleInterfacesIntegerAccessorGetIntegerResponseParams();
2719 map["sample_interfaces_IntegerAccessor_SetInteger_Params__"] =
2720 new mojom_types.UserDefinedType()
2721 ..structType = _sampleInterfacesIntegerAccessorSetIntegerParams();
2722 map["sample_interfaces_SampleInterface_SampleMethod0_Params__"] =
2723 new mojom_types.UserDefinedType()
2724 ..structType = _sampleInterfacesSampleInterfaceSampleMethod0Params();
2725 map["sample_interfaces_SampleInterface_SampleMethod1_Params__"] =
2726 new mojom_types.UserDefinedType()
2727 ..structType = _sampleInterfacesSampleInterfaceSampleMethod1Params();
2728 map["sample_interfaces_SampleInterface_SampleMethod1_ResponseParams__"] =
2729 new mojom_types.UserDefinedType()
2730 ..structType = _sampleInterfacesSampleInterfaceSampleMethod1ResponseParams ();
2731 map["sample_interfaces_SampleInterface_SampleMethod2_Params__"] =
2732 new mojom_types.UserDefinedType()
2733 ..structType = _sampleInterfacesSampleInterfaceSampleMethod2Params();
2734 map["sample_interfaces_Provider__"] =
2735 new mojom_types.UserDefinedType()
2736 ..interfaceType = _sampleInterfacesProvider();
2737 map["sample_interfaces_IntegerAccessor__"] =
2738 new mojom_types.UserDefinedType()
2739 ..interfaceType = _sampleInterfacesIntegerAccessor();
2740 map["sample_interfaces_SampleInterface__"] =
2741 new mojom_types.UserDefinedType()
2742 ..interfaceType = _sampleInterfacesSampleInterface();
2743 return map;
2744 } 2326 }
2745 2327
2746 var _mojomDesc; 2328 var _runtimeTypeInfo;
2747 Map<String, mojom_types.UserDefinedType> getAllMojomTypeDefinitions() { 2329 mojom_types.RuntimeTypeInfo _initRuntimeTypeInfo() {
2748 if (_mojomDesc == null) { 2330 // serializedRuntimeTypeInfo contains the bytes of the Mojo serialization of
2749 _mojomDesc = _initDescriptions(); 2331 // a mojom_types.RuntimeTypeInfo struct describing the Mojom types in this
2750 } 2332 // file.
2751 return _mojomDesc; 2333 var serializedRuntimeTypeInfo = new Uint8List.fromList(const [24,0,0,0,0,0,0,0 ,16,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,16,0,0,0,0, 0,0,0,8,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,192,0,0, 0,0,0,0,0,40,0,0,0,4,0,0,0,32,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,11 2,0,0,0,0,0,0,0,28,0,0,0,20,0,0,0,84,89,80,69,95,75,69,89,58,115,97,109,112,108, 101,46,69,110,117,109,0,0,0,0,32,0,0,0,24,0,0,0,84,89,80,69,95,75,69,89,58,115,9 7,109,112,108,101,46,80,114,111,118,105,100,101,114,39,0,0,0,31,0,0,0,84,89,80,6 9,95,75,69,89,58,115,97,109,112,108,101,46,73,110,116,101,103,101,114,65,99,99,1 01,115,115,111,114,0,39,0,0,0,31,0,0,0,84,89,80,69,95,75,69,89,58,115,97,109,112 ,108,101,46,83,97,109,112,108,101,73,110,116,101,114,102,97,99,101,0,72,0,0,0,4, 0,0,0,16,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,16,0,0,0,3,0,0,0,120,2,0,0,0,0,0,0,16,0, 0,0,3,0,0,0,248,32,0,0,0,0,0,0,16,0,0,0,3,0,0,0,16,45,0,0,0,0,0,0,24,0,0,0,0,0,0 ,0,16,0,0,0,0,0,0,0,240,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2 55,255,255,255,48,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,64,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,4,0,0,0,69,110,117,109,0,0,0, 0,19,0,0,0,11,0,0,0,115,97,109,112,108,101,46,69,110,117,109,0,0,0,0,0,24,0,0,0, 0,0,0,0,16,0,0,0,0,0,0,0,12,0,0,0,5,0,0,0,94,0,0,0,86,0,0,0,47,104,111,109,101,4 7,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,11 1,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,9 8,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,9 5,105,110,116,101,114,102,97,99,101,115,46,109,111,106,111,109,0,0,16,0,0,0,1,0, 0,0,8,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,16,1,0,0,0,0,0,0,0,0,0,0,0 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 255,255,255,255,48,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,72,0,0 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,5,0,0,0,86,65,76,85,69,0,0,0 ,25,0,0,0,17,0,0,0,115,97,109,112,108,101,46,69,110,117,109,46,86,65,76,85,69,0, 0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,13,0,0,0,2,0,0,0,94,0,0,0,86,0,0,0 ,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47 ,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,1 02,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115 ,97,109,112,108,101,95,105,110,116,101,114,102,97,99,101,115,46,109,111,106,111, 109,0,0,28,0,0,0,20,0,0,0,84,89,80,69,95,75,69,89,58,115,97,109,112,108,101,46,6 9,110,117,109,0,0,0,0,32,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,240,0,0, 0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0, 0,0,
2334 56,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,16,0,0,0,8,0,0,0,80,114,111,118,105,100,101,114,23,0,0,0,15,0,0,0,115, 97,109,112,108,101,46,80,114,111,118,105,100,101,114,0,24,0,0,0,0,0,0,0,16,0,0,0 ,0,0,0,0,16,0,0,0,10,0,0,0,94,0,0,0,86,0,0,0,47,104,111,109,101,47,114,117,100,1 11,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,11 2,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,1 05,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,105,110,116,1 01,114,102,97,99,101,115,46,109,111,106,111,109,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0, 0,0,0,40,0,0,0,0,0,0,0,28,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,3,0,0,0,4,0,0,0, 0,0,0,0,48,0,0,0,5,0,0,0,40,0,0,0,0,0,0,0,112,5,0,0,0,0,0,0,248,12,0,0,0,0,0,0,8 8,18,0,0,0,0,0,0,16,24,0,0,0,0,0,0,40,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,240,0,0,0,0 ,0,0,0,16,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,48,0,0 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,10,0,0,0,69,99,104,111,83,11 6,114,105,110,103,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,17,0,0,0,2,0,0,0 ,94,0,0,0,86,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47, 109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105 ,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101, 115,116,115,47,115,97,109,112,108,101,95,105,110,116,101,114,102,97,99,101,115,4 6,109,111,106,111,109,0,0,32,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ,0,0,0,0,0,0,0,0,26,0,0,0,18,0,0,0,69,99,104,111,83,116,114,105,110,103,45,114,1 01,113,117,101,115,116,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0 ,0,0,94,0,0,0,86,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114 ,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47 ,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116, 101,115,116,115,47,115,97,109,112,108,101,95,105,110,116,101,114,102,97,99,101,1 15,46,109,111,106,111,109,0,0,16,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0, 48,0,0,0,0,0,0,0,16,0,0,0,1,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0 ,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,1,0,0,0,97,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0, 0,0,0,0,0,17,0,0,0,20,0,0,0,
2335 94,0,0,0,86,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,1 09,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105, 110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,1 15,116,115,47,115,97,109,112,108,101,95,105,110,116,101,114,102,97,99,101,115,46 ,109,111,106,111,109,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,24,0, 0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0, 56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,19,0,0,0,69,99,104,111 ,83,116,114,105,110,103,45,114,101,115,112,111,110,115,101,0,0,0,0,0,24,0,0,0,0, 0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,86,0,0,0,47,104,111,109,101,47,1 14,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,1 06,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,1 05,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,1 05,110,116,101,114,102,97,99,101,115,46,109,111,106,111,109,0,0,16,0,0,0,1,0,0,0 ,8,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,16,0,0,0,1,0,0,0,240,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0 ,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255, 0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,1,0,0,0,97,0,0, 0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,17,0,0,0,34,0,0,0,94,0,0,0,86,0,0,0, 47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47, 115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,10 2,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115, 97,109,112,108,101,95,105,110,116,101,114,102,97,99,101,115,46,109,111,106,111,1 09,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,240,0, 0,0,0,0,0,0,48,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,4 8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,11,0,0,0,69,99,104,111, 83,116,114,105,110,103,115,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,18,0,0,0, 2,0,0,0,94,0,0,0,86,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101, 114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99 ,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,1 16,101,115,116,115,47,115,97,109,112,108,101,95,105,110,116,101,114,102,97,99,10 1,115,46,109,111,106,111,109,0,0,32,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,240,0,0,0,0,0 ,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,
2336 56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,19,0,0,0,69,99,104,111 ,83,116,114,105,110,103,115,45,114,101,113,117,101,115,116,0,0,0,0,0,24,0,0,0,0, 0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,86,0,0,0,47,104,111,109,101,47,1 14,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,1 06,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,1 05,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,1 05,110,116,101,114,102,97,99,101,115,46,109,111,106,111,109,0,0,24,0,0,0,2,0,0,0 ,16,0,0,0,0,0,0,0,32,1,0,0,0,0,0,0,56,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,16,0,0,0,1, 0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,255,255,255,255,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0 ,0,1,0,0,0,97,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,18,0,0,0,21,0,0,0, 94,0,0,0,86,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,1 09,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105, 110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,1 15,116,115,47,115,97,109,112,108,101,95,105,110,116,101,114,102,97,99,101,115,46 ,109,111,106,111,109,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,48,0, 0,0,0,0,0,0,16,0,0,0,1,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0 ,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,9,0,0,0,1,0,0,0,98,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0 ,0,0,18,0,0,0,31,0,0,0,94,0,0,0,86,0,0,0,47,104,111,109,101,47,114,117,100,111,1 09,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,11 7,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,1 10,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,105,110,116,101,1 14,102,97,99,101,115,46,109,111,106,111,109,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ,32,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2 55,255,255,255,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0 ,20,0,0,0,69,99,104,111,83,116,114,105,110,103,115,45,114,101,115,112,111,110,11 5,101,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,86,0,0, 0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,4 7,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114, 102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,11 5,97,109,112,108,101,95,105,110,
2337 116,101,114,102,97,99,101,115,46,109,111,106,111,109,0,0,24,0,0,0,2,0,0,0,16,0,0 ,0,0,0,0,0,32,1,0,0,0,0,0,0,56,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,16,0,0,0,1,0,0,0,2 40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,2 55,255,255,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,1,0, 0,0,97,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,18,0,0,0,45,0,0,0,94,0,0, 0,86,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111, 106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116 ,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116, 115,47,115,97,109,112,108,101,95,105,110,116,101,114,102,97,99,101,115,46,109,11 1,106,111,109,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,48,0,0,0,0,0 ,0,0,16,0,0,0,1,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ,0,0,0,0,0,9,0,0,0,1,0,0,0,98,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,18 ,0,0,0,55,0,0,0,94,0,0,0,86,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105, 110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,10 8,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103, 115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,105,110,116,101,114,102, 97,99,101,115,46,109,111,106,111,109,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0 ,0,0,0,0,0,32,0,0,0,0,0,0,0,248,0,0,0,0,0,0,0,32,3,0,0,0,0,0,0,2,0,0,0,0,0,0,0,7 2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0 ,0,0,0,0,255,255,255,255,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,29,0,0,0,21,0,0,0,69,99,104,111,77,101,115,115,97,103,101,80,105,112,101,72,97 ,110,100,108,101,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,19,0,0,0,2,0,0,0,94,0,0 ,0,86,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111 ,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,11 6,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116 ,115,47,115,97,109,112,108,101,95,105,110,116,101,114,102,97,99,101,115,46,109,1 11,106,111,109,0,0,32,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0,0 ,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0 ,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,37,0,0,0,29,0,0,0,69,99,104,111,77,101,115,115,97,103,101,80,105,112,1 01,72,97,110,100,108,101,45,114,101,
2338 113,117,101,115,116,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0 ,0,0,86,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,1 11,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110, 116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,1 16,115,47,115,97,109,112,108,101,95,105,110,116,101,114,102,97,99,101,115,46,109 ,111,106,111,109,0,0,16,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,48,0,0,0, 0,0,0,0,16,0,0,0,4,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0 ,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,9,0,0,0,1,0,0,0,97,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0 ,19,0,0,0,45,0,0,0,94,0,0,0,86,0,0,0,47,104,111,109,101,47,114,117,100,111,109,1 05,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98 ,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,1 03,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,105,110,116,101,114,1 02,97,99,101,115,46,109,111,106,111,109,0,0,16,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,32, 0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,2 55,255,255,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,30, 0,0,0,69,99,104,111,77,101,115,115,97,103,101,80,105,112,101,72,97,110,100,108,1 01,45,114,101,115,112,111,110,115,101,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,94,0,0,0,86,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110, 101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,10 5,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115, 47,116,101,115,116,115,47,115,97,109,112,108,101,95,105,110,116,101,114,102,97,9 9,101,115,46,109,111,106,111,109,0,0,16,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,56,0,0,0,0 ,0,0,0,48,0,0,0,0,0,0,0,16,0,0,0,4,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255, 255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,40,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,1,0,0,0,97,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0, 16,0,0,0,0,0,0,0,19,0,0,0,73,0,0,0,94,0,0,0,86,0,0,0,47,104,111,109,101,47,114,1 17,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,1 11,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,1 10,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,105,1 10,116,101,114,102,97,99,101,115,46,109,111,106,111,109,0,0,16,0,0,0,0,0,0,0,0,0 ,0,0,1,0,0,0,40,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,
2339 232,0,0,0,0,0,0,0,64,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0 ,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,8,0,0,0,69,99,104 ,111,69,110,117,109,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,20,0,0,0,2,0,0,0,94,0,0,0, 86,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,10 6,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,1 01,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,11 5,47,115,97,109,112,108,101,95,105,110,116,101,114,102,97,99,101,115,46,109,111, 106,111,109,0,0,32,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ,0,0,0,24,0,0,0,16,0,0,0,69,99,104,111,69,110,117,109,45,114,101,113,117,101,115 ,116,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,86,0,0,0,47,104, 111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114 ,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99 ,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109, 112,108,101,95,105,110,116,101,114,102,97,99,101,115,46,109,111,106,111,109,0,0, 16,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,16,0,0,0,5,0, 0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 255,255,255,255,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0 ,1,0,0,0,97,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,20,0,0,0,16,0,0,0,94 ,0,0,0,86,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109 ,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,11 0,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115 ,116,115,47,115,97,109,112,108,101,95,105,110,116,101,114,102,97,99,101,115,46,1 09,111,106,111,109,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,24,0,0, 0,0,0,0,0,12,0,0,0,4,0,0,0,69,110,117,109,0,0,0,0,28,0,0,0,20,0,0,0,84,89,80,69, 95,75,69,89,58,115,97,109,112,108,101,46,69,110,117,109,0,0,0,0,32,0,0,0,0,0,0,0 ,24,0,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0 ,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0, 0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,17,0,0,0,69,99,1 04,111,69,110,117,109,45,114,101,115,112,111,110,115,101,0,0,0,0,0,0,0,24,0,0,0, 0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
2340 94,0,0,0,86,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,1 09,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105, 110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,1 15,116,115,47,115,97,109,112,108,101,95,105,110,116,101,114,102,97,99,101,115,46 ,109,111,106,111,109,0,0,16,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,48,0, 0,0,0,0,0,0,16,0,0,0,5,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0 ,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,9,0,0,0,1,0,0,0,97,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0 ,0,0,20,0,0,0,28,0,0,0,94,0,0,0,86,0,0,0,47,104,111,109,101,47,114,117,100,111,1 09,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,11 7,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,1 10,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,105,110,116,101,1 14,102,97,99,101,115,46,109,111,106,111,109,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ,16,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,12,0,0,0,4,0,0,0,69,110,117,109,0,0,0,0,28,0, 0,0,20,0,0,0,84,89,80,69,95,75,69,89,58,115,97,109,112,108,101,46,69,110,117,109 ,0,0,0,0,40,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,240,2,0,0,0,0,0,0,4 ,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0 ,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,15,0,0,0,7,0,0,0,69,99,104,111,73,110,116,0,24,0,0,0,0,0,0,0,1 6,0,0,0,0,0,0,0,21,0,0,0,2,0,0,0,94,0,0,0,86,0,0,0,47,104,111,109,101,47,114,117 ,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111 ,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110 ,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,105,110 ,116,101,114,102,97,99,101,115,46,109,111,106,111,109,0,0,32,0,0,0,0,0,0,0,24,0, 0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0, 48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,15,0,0,0,69,99,104,111 ,73,110,116,45,114,101,113,117,101,115,116,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0 ,0,0,0,0,0,0,0,94,0,0,0,86,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,1 10,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108 ,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,1 15,47,116,101,115,116,115,47,115,97,109,112,108,101,95,105,110,116,101,114,102,9 7,99,101,115,46,109,111,106,111,109,0,0,16,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,56,0,0, 0,0,0,0,0,48,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,
2341 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0, 0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,1,0,0,0,97,0,0,0,0,0, 0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,21,0,0,0,16,0,0,0,94,0,0,0,86,0,0,0,47,104 ,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,11 4,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,9 9,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109 ,112,108,101,95,105,110,116,101,114,102,97,99,101,115,46,109,111,106,111,109,0,0 ,32,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2 55,255,255,255,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0 ,16,0,0,0,69,99,104,111,73,110,116,45,114,101,115,112,111,110,115,101,24,0,0,0,0 ,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,86,0,0,0,47,104,111,109,101,47, 114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111, 106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98, 105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95, 105,110,116,101,114,102,97,99,101,115,46,109,111,106,111,109,0,0,16,0,0,0,1,0,0, 0,8,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,5,0,0,0,0,0 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0 ,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,1,0,0,0,97,0,0,0 ,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,21,0,0,0,29,0,0,0,94,0,0,0,86,0,0,0,4 7,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,1 15,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102 ,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,9 7,109,112,108,101,95,105,110,116,101,114,102,97,99,101,115,46,109,111,106,111,10 9,0,0,32,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,72,0,0,0 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,64,0,0,0,0,0,0 ,0,255,255,255,255,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0 ,0,0,15,0,0,0,73,110,116,101,103,101,114,65,99,99,101,115,115,111,114,0,30,0,0,0 ,22,0,0,0,115,97,109,112,108,101,46,73,110,116,101,103,101,114,65,99,99,101,115, 115,111,114,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,24,0,0,0,10,0,0,0,94,0,0,0,86, 0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,1 11,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101, 114,102,97,99,101,115,47,
2342 98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101, 95,105,110,116,101,114,102,97,99,101,115,46,109,111,106,111,109,0,0,24,0,0,0,0,0 ,0,0,16,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,24,0,0,0 ,2,0,0,0,16,0,0,0,0,0,0,0,208,5,0,0,0,0,0,0,40,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,24 0,0,0,0,0,0,0,0,240,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0, 0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,10,0,0,0,71,101,11 6,73,110,116,101,103,101,114,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,25,0, 0,0,2,0,0,0,94,0,0,0,86,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110, 101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,10 5,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115, 47,116,101,115,116,115,47,115,97,109,112,108,101,95,105,110,116,101,114,102,97,9 9,101,115,46,109,111,106,111,109,0,0,32,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,240,0,0,0 ,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,25 5,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,56,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,18,0,0,0,71,101,116,73,110,116,101,103,101, 114,45,114,101,113,117,101,115,116,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0 ,0,0,0,0,0,0,0,0,94,0,0,0,86,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105 ,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,1 08,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103 ,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,105,110,116,101,114,102 ,97,99,101,115,46,109,111,106,111,109,0,0,8,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,24,0, 0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0, 56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,19,0,0,0,71,101,116,73 ,110,116,101,103,101,114,45,114,101,115,112,111,110,115,101,0,0,0,0,0,24,0,0,0,0 ,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,86,0,0,0,47,104,111,109,101,47, 114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111, 106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98, 105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95, 105,110,116,101,114,102,97,99,101,115,46,109,111,106,111,109,0,0,24,0,0,0,2,0,0, 0,16,0,0,0,0,0,0,0,16,1,0,0,0,0,0,0,56,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,16,0,0,0,0 ,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ,
2343 255,255,255,255,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0, 0,4,0,0,0,100,97,116,97,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,25,0,0,0,25,0, 0,0,94,0,0,0,86,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114, 47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47, 105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,1 01,115,116,115,47,115,97,109,112,108,101,95,105,110,116,101,114,102,97,99,101,11 5,46,109,111,106,111,109,0,0,56,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,16,0,0,0,5,0,0,0, 56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0, 0,64,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255 ,255,255,255,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0, 1,0,0,0,8,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,3,0,0,0,2,0,0 ,0,0,0,0,0,18,0,0,0,10,0,0,0,77,105,110,86,101,114,115,105,111,110,0,0,0,0,0,0,1 2,0,0,0,4,0,0,0,116,121,112,101,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,25,0,0 ,0,51,0,0,0,94,0,0,0,86,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110, 101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,10 5,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115, 47,116,101,115,116,115,47,115,97,109,112,108,101,95,105,110,116,101,114,102,97,9 9,101,115,46,109,111,106,111,109,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0 ,0,0,0,24,0,0,0,0,0,0,0,12,0,0,0,4,0,0,0,69,110,117,109,0,0,0,0,28,0,0,0,20,0,0, 0,84,89,80,69,95,75,69,89,58,115,97,109,112,108,101,46,69,110,117,109,0,0,0,0,40 ,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 ,72,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,120,0,0,0,0,0,0,0,0,0 ,0,0,0,0,0,0,255,255,255,255,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ,0,0,0,16,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0 ,0,3,0,0,0,1,0,0,0,0,0,0,0,18,0,0,0,10,0,0,0,77,105,110,86,101,114,115,105,111,1 10,0,0,0,0,0,0,18,0,0,0,10,0,0,0,83,101,116,73,110,116,101,103,101,114,0,0,0,0,0 ,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,27,0,0,0,2,0,0,0,94,0,0,0,86,0,0,0,47,104,1 11,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114, 99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99, 101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,1 12,108,101,95,105,110,116,101,114,102,97,99,101,115,46,109,111,106,111,109,0,0,3 2,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255 ,255,255,255,0,0,0,0,56,0,0,0,0,0,0,0,
2344 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,18,0,0,0,83,101,116,73,110,116,101,103, 101,114,45,114,101,113,117,101,115,116,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0 ,0,0,0,0,0,0,0,0,0,0,94,0,0,0,86,0,0,0,47,104,111,109,101,47,114,117,100,111,109 ,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117, 98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110 ,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,105,110,116,101,114 ,102,97,99,101,115,46,109,111,106,111,109,0,0,24,0,0,0,2,0,0,0,16,0,0,0,0,0,0,0, 16,1,0,0,0,0,0,0,56,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,6,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0 ,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0, 0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,4,0,0,0,100,97,1 16,97,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,27,0,0,0,19,0,0,0,94,0,0,0,86,0, 0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111 ,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,11 4,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47, 115,97,109,112,108,101,95,105,110,116,101,114,102,97,99,101,115,46,109,111,106,1 11,109,0,0,56,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,16,0,0,0,5,0,0,0,56,1,0,0,0,0,0,0,0 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0 ,0,0,0,0,255,255,255,255,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0 ,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,1,0,0,0,8,0,0,0,0, 0,0,0,32,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,18,0,0, 0,10,0,0,0,77,105,110,86,101,114,115,105,111,110,0,0,0,0,0,0,12,0,0,0,4,0,0,0,11 6,121,112,101,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,27,0,0,0,45,0,0,0,94,0,0 ,0,86,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111 ,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,11 6,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116 ,115,47,115,97,109,112,108,101,95,105,110,116,101,114,102,97,99,101,115,46,109,1 11,106,111,109,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,24,0,0,0,0, 0,0,0,12,0,0,0,4,0,0,0,69,110,117,109,0,0,0,0,28,0,0,0,20,0,0,0,84,89,80,69,95,7 5,69,89,58,115,97,109,112,108,101,46,69,110,117,109,0,0,0,0,32,0,0,0,0,0,0,0,24, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0 ,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,15,0,0,0,83,97,109,11 2,108,101,73,110,116,101,114,102,97,99,101,0,
2345 30,0,0,0,22,0,0,0,115,97,109,112,108,101,46,83,97,109,112,108,101,73,110,116,101 ,114,102,97,99,101,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,32,0,0,0,10,0,0,0,94,0, 0,0,86,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,11 1,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,1 16,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,11 6,115,47,115,97,109,112,108,101,95,105,110,116,101,114,102,97,99,101,115,46,109, 111,106,111,109,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,20,0,0,0, 3,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,32,0,0,0,3,0,0,0,24,0,0,0,0,0,0,0,208,7, 0,0,0,0,0,0,208,9,0,0,0,0,0,0,40,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,240,0,0,0,0,0,0, 0,32,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0, 0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,48,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,13,0,0,0,83,97,109,112,108,101,77,101,116 ,104,111,100,49,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,33,0,0,0,2,0,0,0,94,0,0, 0,86,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111, 106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116 ,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116, 115,47,115,97,109,112,108,101,95,105,110,116,101,114,102,97,99,101,115,46,109,11 1,106,111,109,0,0,32,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ,0,0,0,0,29,0,0,0,21,0,0,0,83,97,109,112,108,101,77,101,116,104,111,100,49,45,11 4,101,113,117,101,115,116,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,94,0,0,0,86,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47 ,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,10 5,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101 ,115,116,115,47,115,97,109,112,108,101,95,105,110,116,101,114,102,97,99,101,115, 46,109,111,106,111,109,0,0,24,0,0,0,2,0,0,0,16,0,0,0,0,0,0,0,16,1,0,0,0,0,0,0,56 ,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,25 5,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,40,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,3,0,0,0,105,110,49,0,0,0,0,0,24,0,0 ,0,0,0,0,0,16,0,0,0,0,0,0,0,33,0,0,0,24,0,0,0,94,0,0,0,86,0,0,0,47,104,111,109,1 01,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,10 9,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115, 47,98,105,110,100,105,110,103,115,
2346 47,116,101,115,116,115,47,115,97,109,112,108,101,95,105,110,116,101,114,102,97,9 9,101,115,46,109,111,106,111,109,0,0,56,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,16,0,0,0, 1,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,255,255,255,255,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11, 0,0,0,3,0,0,0,105,110,50,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,33,0,0,0,37 ,0,0,0,94,0,0,0,86,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,1 14,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99, 47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,11 6,101,115,116,115,47,115,97,109,112,108,101,95,105,110,116,101,114,102,97,99,101 ,115,46,109,111,106,111,109,0,0,16,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,32,0,0,0,0,0,0, 0,24,0,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0 ,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,22,0,0,0,83,97, 109,112,108,101,77,101,116,104,111,100,49,45,114,101,115,112,111,110,115,101,0,0 ,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,86,0,0,0,47,104,111, 109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99, 47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101 ,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112, 108,101,95,105,110,116,101,114,102,97,99,101,115,46,109,111,106,111,109,0,0,24,0 ,0,0,2,0,0,0,16,0,0,0,0,0,0,0,32,1,0,0,0,0,0,0,56,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0 ,16,0,0,0,1,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ,0,0,0,12,0,0,0,4,0,0,0,111,117,116,49,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0 ,33,0,0,0,54,0,0,0,94,0,0,0,86,0,0,0,47,104,111,109,101,47,114,117,100,111,109,1 05,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98 ,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,1 03,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,105,110,116,101,114,1 02,97,99,101,115,46,109,111,106,111,109,0,0,16,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,56, 0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,16,0,0,0,5,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,2 55,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,40,0,0,0,0,0 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
2347 12,0,0,0,4,0,0,0,111,117,116,50,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,33,0,0 ,0,65,0,0,0,94,0,0,0,86,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110, 101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,10 5,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115, 47,116,101,115,116,115,47,115,97,109,112,108,101,95,105,110,116,101,114,102,97,9 9,101,115,46,109,111,106,111,109,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0 ,0,0,0,24,0,0,0,0,0,0,0,12,0,0,0,4,0,0,0,69,110,117,109,0,0,0,0,28,0,0,0,20,0,0, 0,84,89,80,69,95,75,69,89,58,115,97,109,112,108,101,46,69,110,117,109,0,0,0,0,40 ,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,255,255,255,255,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21, 0,0,0,13,0,0,0,83,97,109,112,108,101,77,101,116,104,111,100,48,0,0,0,24,0,0,0,0, 0,0,0,16,0,0,0,0,0,0,0,34,0,0,0,2,0,0,0,94,0,0,0,86,0,0,0,47,104,111,109,101,47, 114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111, 106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98, 105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95, 105,110,116,101,114,102,97,99,101,115,46,109,111,106,111,109,0,0,32,0,0,0,0,0,0, 0,24,0,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0 ,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,21,0,0,0,83,97, 109,112,108,101,77,101,116,104,111,100,48,45,114,101,113,117,101,115,116,0,0,0,2 4,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,86,0,0,0,47,104,111,10 9,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47 ,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,1 15,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,10 8,101,95,105,110,116,101,114,102,97,99,101,115,46,109,111,106,111,109,0,0,8,0,0, 0,0,0,0,0,40,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2, 0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,48,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ,0,0,0,0,21,0,0,0,13,0,0,0,83,97,109,112,108,101,77,101,116,104,111,100,50,0,0,0 ,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,35,0,0,0,2,0,0,0,94,0,0,0,86,0,0,0,47,104,111 ,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99 ,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,10 1,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112 ,108,101,95,105,110,116,101,114,102,97,99,101,115,46,109,111,106,111,109,0,0,32, 0,0,0,0,0,0,0,
2348 24,0,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0 ,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,21,0,0,0,83,97,10 9,112,108,101,77,101,116,104,111,100,50,45,114,101,113,117,101,115,116,0,0,0,24, 0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,86,0,0,0,47,104,111,109, 101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,1 09,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115 ,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108, 101,95,105,110,116,101,114,102,97,99,101,115,46,109,111,106,111,109,0,0,8,0,0,0, 0,0,0,0]);
2349
2350 // Deserialize RuntimeTypeInfo
2351 var bdata = new ByteData.view(serializedRuntimeTypeInfo.buffer);
2352 var message = new bindings.Message(bdata, null, serializedRuntimeTypeInfo.leng th, 0);
2353 _runtimeTypeInfo = mojom_types.RuntimeTypeInfo.deserialize(message);
2354 return _runtimeTypeInfo;
2752 } 2355 }
2753
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698